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