summaryrefslogtreecommitdiff
path: root/lisp/cedet/semantic/find.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-11-18 09:17:20 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2015-11-18 09:17:55 -0800
commitbb4303c536a2ac5fe683a711ef8072074f77670e (patch)
treeb2d254f657728f61262d3b6fe58d972756fcc292 /lisp/cedet/semantic/find.el
parent3e309ad86c8f11765d28a875bb2299d0e214d16d (diff)
downloademacs-bb4303c536a2ac5fe683a711ef8072074f77670e.tar.gz
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/cedet/semantic/find.el')
-rw-r--r--lisp/cedet/semantic/find.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/semantic/find.el b/lisp/cedet/semantic/find.el
index fdd5f5290f1..5450ac953f6 100644
--- a/lisp/cedet/semantic/find.el
+++ b/lisp/cedet/semantic/find.el
@@ -378,11 +378,11 @@ See `semantic-tag-protected-p' for details on which tags are returned."
;;;###autoload
(define-overloadable-function semantic-find-tags-included (&optional table)
- "Find all tags in TABLE that are of the 'include class.
+ "Find all tags in TABLE that are of the `include' class.
TABLE is a tag table. See `semantic-something-to-tag-table'.")
(defun semantic-find-tags-included-default (&optional table)
- "Find all tags in TABLE that are of the 'include class.
+ "Find all tags in TABLE that are of the `include' class.
TABLE is a tag table. See `semantic-something-to-tag-table'.
By default, just call `semantic-find-tags-by-class'."
(semantic-find-tags-by-class 'include table))