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/cedet/srecode/document.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/cedet/srecode/document.el')
-rw-r--r-- | lisp/cedet/srecode/document.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/srecode/document.el b/lisp/cedet/srecode/document.el index ad15b3ef6fd..21acc61fef2 100644 --- a/lisp/cedet/srecode/document.el +++ b/lisp/cedet/srecode/document.el @@ -385,7 +385,7 @@ It is assumed that the comment occurs just in front of FCN-IN." (when (or (not fcn-in) (not (semantic-tag-of-class-p fcn-in 'function))) - (error "No tag of class 'function to insert comment for")) + (error "No tag of class `function' to insert comment for")) (if (not (eq (current-buffer) (semantic-tag-buffer fcn-in))) (error "Only insert comments for tags in the current buffer")) @@ -496,7 +496,7 @@ It is assumed that the comment occurs just after VAR-IN." (when (or (not var-in) (not (semantic-tag-of-class-p var-in 'variable))) - (error "No tag of class 'variable to insert comment for")) + (error "No tag of class `variable' to insert comment for")) (if (not (eq (current-buffer) (semantic-tag-buffer var-in))) (error "Only insert comments for tags in the current buffer")) |