diff options
Diffstat (limited to 'lisp/cedet')
-rw-r--r-- | lisp/cedet/data-debug.el | 2 | ||||
-rw-r--r-- | lisp/cedet/ede/proj-prog.el | 2 | ||||
-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 | ||||
-rw-r--r-- | lisp/cedet/srecode/el.el | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/lisp/cedet/data-debug.el b/lisp/cedet/data-debug.el index 8a8af4e184d..300bd04600b 100644 --- a/lisp/cedet/data-debug.el +++ b/lisp/cedet/data-debug.el @@ -55,7 +55,7 @@ (defalias 'data-debug-overlay-p 'extentp) (if (not (fboundp 'propertize)) (defun dd-propertize (string &rest properties) - "Mimic 'propertize' in from Emacs 23." + "Mimic `propertize' in from Emacs 23." (add-text-properties 0 (length string) properties string) string ) diff --git a/lisp/cedet/ede/proj-prog.el b/lisp/cedet/ede/proj-prog.el index b1b26d4d1f4..a59317cf99a 100644 --- a/lisp/cedet/ede/proj-prog.el +++ b/lisp/cedet/ede/proj-prog.el @@ -62,7 +62,7 @@ specified with ldlibs.") "Libraries, such as \"m\" or \"Xt\" which this program depends on. The linker flag \"-l\" is automatically prepended. Do not include a \"lib\" prefix, or a \".so\" suffix. -Use the 'ldflags' slot to specify where in-project libraries might be. +Use the `ldflags' slot to specify where in-project libraries might be. Note: Currently only used for Automake projects." ) 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. diff --git a/lisp/cedet/srecode/el.el b/lisp/cedet/srecode/el.el index 2bdf804d858..7e91a612638 100644 --- a/lisp/cedet/srecode/el.el +++ b/lisp/cedet/srecode/el.el @@ -50,7 +50,7 @@ Adds the following: (defun srecode-semantic-handle-:el-custom (dict) "Add macros into the dictionary DICT based on the current Emacs Lisp file. Adds the following: - GROUP - The 'defgroup' name we guess you want for variables. + GROUP - The `defgroup' name we guess you want for variables. FACEGROUP - The `defgroup' name you might want for faces." (require 'semantic/db-find) (let ((groups (semanticdb-strip-find-results |