diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:30:13 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:32:53 -0800 |
commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/cedet/cedet-idutils.el | |
parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.bz2 emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/cedet/cedet-idutils.el')
-rw-r--r-- | lisp/cedet/cedet-idutils.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/cedet-idutils.el b/lisp/cedet/cedet-idutils.el index f2fbe193621..57f522bf5b4 100644 --- a/lisp/cedet/cedet-idutils.el +++ b/lisp/cedet/cedet-idutils.el @@ -52,12 +52,12 @@ (defun cedet-idutils-search (searchtext texttype type scope) "Perform a search with ID Utils, return the created buffer. SEARCHTEXT is text to find. -TEXTTYPE is the type of text, such as 'regexp, 'string, 'tagname, -'tagregexp, or 'tagcompletions. +TEXTTYPE is the type of text, such as `regexp', `string', `tagname', +`tagregexp', or `tagcompletions'. TYPE is the type of search, meaning that SEARCHTEXT is compared to filename, tagname (tags table), references (uses of a tag) , or symbol (uses of something not in the tag table.) -SCOPE is the scope of the search, such as 'project or 'subdirs. +SCOPE is the scope of the search, such as `project' or `subdirs'. Note: Scope is not yet supported." (if (eq type 'file) ;; Calls for file stuff is very simple. |