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/obsolete/mantemp.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/obsolete/mantemp.el')
-rw-r--r-- | lisp/obsolete/mantemp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/obsolete/mantemp.el b/lisp/obsolete/mantemp.el index ad638422c2b..af4a27bb7e2 100644 --- a/lisp/obsolete/mantemp.el +++ b/lisp/obsolete/mantemp.el @@ -148,7 +148,7 @@ the lines." ;; subsequently remove 'class' for functions so we don't need to ;; both scan for classes and functions. (goto-char (point-min)) - (message "Inserting 'template class' for classes") + (message "Inserting `template class' for classes") (while (re-search-forward "^.+" nil t) (progn (beginning-of-line) @@ -156,7 +156,7 @@ the lines." (insert "template ") (insert "template class ")))) (goto-char (point-min)) - (message "Inserting 'template' for functions") + (message "Inserting `template' for functions") (while (re-search-forward "^template class [a-zA-Z :&*<>~=,0-9+!]*(" nil t nil) (progn |