diff options
| author | Richard M. Stallman | 2003-05-28 11:47:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-05-28 11:47:41 +0000 |
| commit | 249c0f71656b128eb0a2b7290ce7408b1368e396 (patch) | |
| tree | a13ba0668d36ecb109c910f65524982c56056262 /src | |
| parent | 5ba75c80540b09d4149487e24ef097b03492741d (diff) | |
| download | emacs-249c0f71656b128eb0a2b7290ce7408b1368e396.tar.gz emacs-249c0f71656b128eb0a2b7290ce7408b1368e396.zip | |
(syms_of_print) <print-escape-nonascii>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index dc72539f7f5..76be38265bb 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -2085,7 +2085,9 @@ Also print formfeeds as `\\f'. */); | |||
| 2085 | DEFVAR_BOOL ("print-escape-nonascii", &print_escape_nonascii, | 2085 | DEFVAR_BOOL ("print-escape-nonascii", &print_escape_nonascii, |
| 2086 | doc: /* Non-nil means print unibyte non-ASCII chars in strings as \\OOO. | 2086 | doc: /* Non-nil means print unibyte non-ASCII chars in strings as \\OOO. |
| 2087 | \(OOO is the octal representation of the character code.) | 2087 | \(OOO is the octal representation of the character code.) |
| 2088 | Only single-byte characters are affected, and only in `prin1'. */); | 2088 | Only single-byte characters are affected, and only in `prin1'. |
| 2089 | When the output goes in a multibyte buffer, this feature is | ||
| 2090 | enabled regardless of the value of the variable. */); | ||
| 2089 | print_escape_nonascii = 0; | 2091 | print_escape_nonascii = 0; |
| 2090 | 2092 | ||
| 2091 | DEFVAR_BOOL ("print-escape-multibyte", &print_escape_multibyte, | 2093 | DEFVAR_BOOL ("print-escape-multibyte", &print_escape_multibyte, |