diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-11-18 09:17:20 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-11-18 09:17:55 -0800 |
commit | bb4303c536a2ac5fe683a711ef8072074f77670e (patch) | |
tree | b2d254f657728f61262d3b6fe58d972756fcc292 /lisp/progmodes/mantemp.el | |
parent | 3e309ad86c8f11765d28a875bb2299d0e214d16d (diff) | |
download | emacs-bb4303c536a2ac5fe683a711ef8072074f77670e.tar.gz emacs-bb4303c536a2ac5fe683a711ef8072074f77670e.tar.bz2 emacs-bb4303c536a2ac5fe683a711ef8072074f77670e.zip |
Quote symbols in docstrings using `'
Be more systematic about quoting symbols `like-this' rather than
`like-this or 'like-this' in docstrings. This follows up Artur
Malabarba's email in:
http://lists.gnu.org/archive/html/emacs-devel/2015-11/msg01647.html
Diffstat (limited to 'lisp/progmodes/mantemp.el')
-rw-r--r-- | lisp/progmodes/mantemp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/mantemp.el b/lisp/progmodes/mantemp.el index 6c89a518049..79a60400eed 100644 --- a/lisp/progmodes/mantemp.el +++ b/lisp/progmodes/mantemp.el @@ -128,7 +128,7 @@ (defun mantemp-insert-cxx-syntax () "Insert C++ syntax around each template class and function. -Insert `template class' for classes, 'template' for +Insert `template class' for classes, `template' for functions and add the statement delimiter `;' at the end of the lines." (save-excursion |