diff options
Diffstat (limited to 'lisp/cedet/semantic')
-rw-r--r-- | lisp/cedet/semantic/analyze/debug.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/complete.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/lex-spp.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/symref.el | 2 | ||||
-rw-r--r-- | lisp/cedet/semantic/tag.el | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/lisp/cedet/semantic/analyze/debug.el b/lisp/cedet/semantic/analyze/debug.el index 9f9270f8543..d0ab7c82c13 100644 --- a/lisp/cedet/semantic/analyze/debug.el +++ b/lisp/cedet/semantic/analyze/debug.el @@ -512,7 +512,7 @@ Optional argument CLASSCONSTRAINT says to output to tags of that class." ) (defun semantic-analyzer-debug-global-miss-text (name-in) - "Use 'princ' to show text describing not finding symbol NAME-IN. + "Use `princ' to show text describing not finding symbol NAME-IN. NAME is the name of the unfound symbol." (let ((name (cond ((stringp name-in) name-in) diff --git a/lisp/cedet/semantic/complete.el b/lisp/cedet/semantic/complete.el index 1e121906a04..509f8020c2a 100644 --- a/lisp/cedet/semantic/complete.el +++ b/lisp/cedet/semantic/complete.el @@ -1665,7 +1665,7 @@ Display mechanism using tooltip for a list of possible completions.") (when (>= (oref obj typing-count) 5) (oset obj mode 'standard) (setq mode 'standard) - (message "Resetting inline-mode to 'standard'.")) + (message "Resetting inline-mode to ‘standard’.")) (when (and (> numcompl max-tags) (< (oref obj typing-count) 2)) ;; Discretely hint at completion availability. diff --git a/lisp/cedet/semantic/lex-spp.el b/lisp/cedet/semantic/lex-spp.el index 0aa2f9504d9..761cc1af5ed 100644 --- a/lisp/cedet/semantic/lex-spp.el +++ b/lisp/cedet/semantic/lex-spp.el @@ -919,7 +919,7 @@ STR occurs in the current buffer between BEG and END." )) (define-lex-regex-analyzer semantic-lex-spp-replace-or-symbol-or-keyword - "Like 'semantic-lex-symbol-or-keyword' plus preprocessor macro replacement." + "Like `semantic-lex-symbol-or-keyword' plus preprocessor macro replacement." "\\(\\sw\\|\\s_\\)+" (let ((str (match-string 0)) (beg (match-beginning 0)) diff --git a/lisp/cedet/semantic/symref.el b/lisp/cedet/semantic/symref.el index ca5dd7dd073..89e8b40632d 100644 --- a/lisp/cedet/semantic/symref.el +++ b/lisp/cedet/semantic/symref.el @@ -337,7 +337,7 @@ Use the `semantic-symref-hit-tags' method to get this list.") "List of buffers opened by `semantic-symref-result-get-tags'.") (defun semantic-symref-cleanup-recent-buffers-fcn () - "Hook function to be used in 'post-command-hook' to cleanup buffers. + "Hook function to be used in `post-command-hook' to cleanup buffers. Buffers collected during symref can result in some files being opened multiple times for one operation. This will keep buffers open until the next command is executed." diff --git a/lisp/cedet/semantic/tag.el b/lisp/cedet/semantic/tag.el index 545ca914d19..6c6616d7009 100644 --- a/lisp/cedet/semantic/tag.el +++ b/lisp/cedet/semantic/tag.el @@ -95,7 +95,7 @@ print statement." (defsubst semantic-tag-class (tag) "Return the class of TAG. -That is, the symbol 'variable, 'function, 'type, or other. +This is a symbol like `variable', `function', or `type'. There is no limit to the symbols that may represent the class of a tag. Each parser generates tags with classes defined by it. |