aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-12-21 01:45:08 +0000
committerRichard M. Stallman1997-12-21 01:45:08 +0000
commit6c95fd390b43fe8bc9635cc332e9f00547e780ca (patch)
tree85c6cd06e5c9c2a7176a2a9cc3abb7a99c7b7d6f
parent7c8d99310322ea51b51cd3ee81e53378022cbe4a (diff)
downloademacs-6c95fd390b43fe8bc9635cc332e9f00547e780ca.tar.gz
emacs-6c95fd390b43fe8bc9635cc332e9f00547e780ca.zip
(standard-display-european): Doc fix.
-rw-r--r--lisp/disp-table.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el
index 19187b07628..f023c42f638 100644
--- a/lisp/disp-table.el
+++ b/lisp/disp-table.el
@@ -187,11 +187,13 @@ With prefix argument, enable European character display iff arg is positive.
187 187
188Normally, this function turns off `enable-multibyte-characters' 188Normally, this function turns off `enable-multibyte-characters'
189for all Emacs buffers, because users who call this function 189for all Emacs buffers, because users who call this function
190probably want to edit European characters in single-byte mode. 190probably want to edit European characters in single-byte mode."
191 191
192However, if the optional argument AUTO is non-nil, this function 192 ;; If the optional argument AUTO is non-nil, this function
193does not alter `enable-multibyte-characters'. 193 ;; does not alter `enable-multibyte-characters'.
194AUTO also specifies, in this case, the coding system for terminal output." 194 ;; AUTO also specifies, in this case, the coding system for terminal output.
195 ;; The AUTO argument is meant for use by startup.el only.
196 ;; which is why it is not in the doc string.
195 (interactive "P") 197 (interactive "P")
196 (if (or (<= (prefix-numeric-value arg) 0) 198 (if (or (<= (prefix-numeric-value arg) 0)
197 (and (null arg) 199 (and (null arg)