diff options
| author | Paul Eggert | 2015-09-01 06:21:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-01 06:23:21 -0700 |
| commit | a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce (patch) | |
| tree | 03058460c897b868eaf281bcf984a3a687667ae3 /src/print.c | |
| parent | 447e5890a81f098881aecc099852ace466ef5925 (diff) | |
| download | emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.tar.gz emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.zip | |
Docstring fixes re quotes in C code
Fix some docstring quoting problems, mostly by escaping apostrophe.
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index d3b1a927b22..94f3fcd7db1 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -2212,7 +2212,7 @@ This affects only `prin1'. */); | |||
| 2212 | 2212 | ||
| 2213 | DEFVAR_BOOL ("print-quoted", print_quoted, | 2213 | DEFVAR_BOOL ("print-quoted", print_quoted, |
| 2214 | doc: /* Non-nil means print quoted forms with reader syntax. | 2214 | doc: /* Non-nil means print quoted forms with reader syntax. |
| 2215 | I.e., (quote foo) prints as 'foo, (function foo) as #'foo. */); | 2215 | I.e., (quote foo) prints as \\='foo, (function foo) as #\\='foo. */); |
| 2216 | print_quoted = 0; | 2216 | print_quoted = 0; |
| 2217 | 2217 | ||
| 2218 | DEFVAR_LISP ("print-gensym", Vprint_gensym, | 2218 | DEFVAR_LISP ("print-gensym", Vprint_gensym, |