diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:30:13 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:32:53 -0800 |
commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/progmodes/cc-bytecomp.el | |
parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.bz2 emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/progmodes/cc-bytecomp.el')
-rw-r--r-- | lisp/progmodes/cc-bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-bytecomp.el b/lisp/progmodes/cc-bytecomp.el index 0cbff579d20..cbffbf47118 100644 --- a/lisp/progmodes/cc-bytecomp.el +++ b/lisp/progmodes/cc-bytecomp.el @@ -307,7 +307,7 @@ somewhat intentional." file CC-PART.el in the current directory to be loaded at compile time, (ii) generate code to load the file at load time. -CC-PART will normally be a quoted name such as 'cc-fix. +CC-PART will normally be a quoted name such as \\='cc-fix. CONDITION should not be quoted." (if (eval condition) (progn @@ -321,7 +321,7 @@ file CC-PART.el in the current directory to be loaded at compile time, (ii) generate an `eval-after-load' form to load CC-PART.el after the loading of FILE. -CC-PART will normally be a quoted name such as 'cc-fix. FILE +CC-PART will normally be a quoted name such as \\='cc-fix. FILE should be a string. CONDITION should not be quoted." (if (eval condition) (progn |