Correct doc/install.txt to refer to INSTALL_OPTIONS instead of PREFIX.
authorW. Trevor King <wking@drexel.edu>
Tue, 8 Nov 2011 12:14:43 +0000 (07:14 -0500)
committerW. Trevor King <wking@drexel.edu>
Tue, 8 Nov 2011 12:14:43 +0000 (07:14 -0500)
This catches the docs up with the changes made in:
  commit a7ad89a6ad7da55089e6f9a4cdd645b7079ee04e
  Author: W. Trevor King <wking@drexel.edu>
  Date:   Sat Apr 16 21:26:02 2011 -0400

doc/install.txt
libbe/util/encoding.py

index fd2bcaf497544b7114c086bf02e3800248b94c0a..bd82ee6a0dc87dc4aa320596a2607d26392600ff 100644 (file)
@@ -41,8 +41,8 @@ to build some auto-generated files (e.g. :mod:`libbe._version`), and::
     $ make install
 
 to install BE.  By default BE will install into your home directory,
-but you can tweak the ``PREFIX`` variable in ``Makefile`` to install
-to another location.
+but you can tweak the ``INSTALL_OPTIONS`` variable in ``Makefile`` to
+install to another location.
 
 By default, ``make`` builds both a man page for ``be`` and the HTML
 Sphinx documentation (:doc:`doc`).  You can customize the
index 77d62fc87997bda2ee36f17aaf18970fc88efcad..8663744da2e373fb3c7b6f2599eeeaeada094ab1 100644 (file)
@@ -51,14 +51,10 @@ def get_input_encoding():
 def get_output_encoding():
     return sys.__stdout__.encoding or get_encoding()
 
-def get_filesystem_encoding():
+def get_text_file_encoding():
     """Return the encoding that should be used for file contents
-
-    Note that `sys.getfilesystemencoding` returns the prefered
-    encoding for file *names*, and we're assuming that this is also
-    the prefered encoding for their contents.
     """
-    return sys.getfilesystemencoding() or get_encoding()
+    return 'utf-8'
 
 def get_argv_encoding():
     return get_encoding()