diff options
Diffstat (limited to 'lisp/cedet/semantic/find.el')
-rw-r--r-- | lisp/cedet/semantic/find.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/semantic/find.el b/lisp/cedet/semantic/find.el index ec38a37295f..8b01b25d99e 100644 --- a/lisp/cedet/semantic/find.el +++ b/lisp/cedet/semantic/find.el @@ -307,7 +307,7 @@ attempting to do completions." (defmacro semantic-find-tags-by-class (class &optional table) "Find all tags of class CLASS in TABLE. CLASS is a symbol representing the class of the token, such as -'variable, of 'function.. +`variable' or `function'. TABLE is a tag table. See `semantic-something-to-tag-table'." `(semantic--find-tags-by-macro (eq ,class (semantic-tag-class (car tags))) @@ -316,7 +316,7 @@ TABLE is a tag table. See `semantic-something-to-tag-table'." (defmacro semantic-filter-tags-by-class (class &optional table) "Find all tags of class not in the list CLASS in TABLE. CLASS is a list of symbols representing the class of the token, -such as 'variable, of 'function.. +such as `variable' or `function'. TABLE is a tag table. See `semantic-something-to-tag-table'." `(semantic--find-tags-by-macro (not (memq (semantic-tag-class (car tags)) ,class)) |