diff options
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 |