]> git.eshelyaron.com Git - emacs.git/commitdiff
(woman-preserve-ascii): Default value changed to t and
authorEli Zaretskii <eliz@gnu.org>
Sat, 13 Mar 2004 13:06:48 +0000 (13:06 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 13 Mar 2004 13:06:48 +0000 (13:06 +0000)
doc string revised.

lisp/ChangeLog
lisp/woman.el

index 93035f666b4df1d6e4995c7634823101c38fc230..517f2d756cce44d0de82e9a38078ab6dc5d156f4 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-12  Francis J. Wright  <F.J.Wright@qmul.ac.uk>
+
+       * woman.el (woman-preserve-ascii): Default value changed to t and
+       doc string revised.
+
 2004-03-12  Richard M. Stallman  <rms@gnu.org>
 
        * pcvs.el (cvs-mode-add-change-log-entry-other-window):
index cce6d4ca5e11298ca94424bfdb2c5e254b0fc0f6..ed04ae4c83f8ee778ec90a251447166d60044d55 100644 (file)
@@ -832,10 +832,15 @@ the buffer, which may aid debugging."
   :type 'boolean
   :group 'woman-formatting)
 
-(defcustom woman-preserve-ascii nil
-  "*If non-nil then preserve ASCII characters in the WoMan buffer.
-Otherwise, non-ASCII characters (that display as ASCII) may remain.
-This is irrelevant unless the buffer is to be saved to a file."
+(defcustom woman-preserve-ascii t
+  "*If non-nil, preserve ASCII characters in the WoMan buffer.
+Otherwise, to save time, some backslashes and spaces may be
+represented differently (as the values of the variables
+`woman-escaped-escape-char' and `woman-unpadded-space-char'
+respectively) so that the buffer content is strictly wrong even though
+it should display correctly.  This should be irrelevant unless the
+buffer text is searched, copied or saved to a file."
+  ;; This option should probably be removed!
   :type 'boolean
   :group 'woman-formatting)