diff options
author | Eli Zaretskii <eliz@gnu.org> | 2004-03-13 13:06:48 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2004-03-13 13:06:48 +0000 |
commit | 1239851cdd4cf7a75e98a850b1420d2cc7440455 (patch) | |
tree | d166f194d25df208d46b8d8d2e5bc1ff74dcf689 /lisp | |
parent | c8e35ff02037011ea0a31c93c6a172148a71660b (diff) | |
download | emacs-1239851cdd4cf7a75e98a850b1420d2cc7440455.tar.gz emacs-1239851cdd4cf7a75e98a850b1420d2cc7440455.tar.bz2 emacs-1239851cdd4cf7a75e98a850b1420d2cc7440455.zip |
(woman-preserve-ascii): Default value changed to t and
doc string revised.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/woman.el | 13 |
2 files changed, 14 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 93035f666b4..517f2d756cc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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): diff --git a/lisp/woman.el b/lisp/woman.el index cce6d4ca5e1..ed04ae4c83f 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -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) |