diff options
| author | Richard M. Stallman | 1997-12-21 01:45:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-12-21 01:45:08 +0000 |
| commit | 6c95fd390b43fe8bc9635cc332e9f00547e780ca (patch) | |
| tree | 85c6cd06e5c9c2a7176a2a9cc3abb7a99c7b7d6f | |
| parent | 7c8d99310322ea51b51cd3ee81e53378022cbe4a (diff) | |
| download | emacs-6c95fd390b43fe8bc9635cc332e9f00547e780ca.tar.gz emacs-6c95fd390b43fe8bc9635cc332e9f00547e780ca.zip | |
(standard-display-european): Doc fix.
| -rw-r--r-- | lisp/disp-table.el | 10 |
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 | ||
| 188 | Normally, this function turns off `enable-multibyte-characters' | 188 | Normally, this function turns off `enable-multibyte-characters' |
| 189 | for all Emacs buffers, because users who call this function | 189 | for all Emacs buffers, because users who call this function |
| 190 | probably want to edit European characters in single-byte mode. | 190 | probably want to edit European characters in single-byte mode." |
| 191 | 191 | ||
| 192 | However, if the optional argument AUTO is non-nil, this function | 192 | ;; If the optional argument AUTO is non-nil, this function |
| 193 | does not alter `enable-multibyte-characters'. | 193 | ;; does not alter `enable-multibyte-characters'. |
| 194 | AUTO 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) |