diff options
author | Stephen Leake <stephen_leake@stephe-leake.org> | 2015-11-14 16:44:58 -0600 |
---|---|---|
committer | Stephen Leake <stephen_leake@stephe-leake.org> | 2015-11-15 13:44:41 -0600 |
commit | a6843cce90b5041adc456815ca0f7a3fdda6db1f (patch) | |
tree | 24da50ff37feed1b2ff3e20ae6674853629c0dfa /lisp/cedet/semantic/symref.el | |
parent | ae16894d1e19601e19b1e70461dc0f69ae1f1059 (diff) | |
download | emacs-a6843cce90b5041adc456815ca0f7a3fdda6db1f.tar.gz |
Improve a few doc strings, comments
* lisp/cedet/cedet-global.el (cedet-gnu-global-expand-filename):
* lisp/cedet/ede/locate.el (ede-locate-base):
* lisp/cedet/semantic/symref.el (semantic-symref-calculate-rootdir):
* src/fns.c (Fdelq): Improve doc string.
* lisp/progmodes/elisp-mode.el (elisp--xref-find-definitions): Add FIXME.
Diffstat (limited to 'lisp/cedet/semantic/symref.el')
-rw-r--r-- | lisp/cedet/semantic/symref.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/semantic/symref.el b/lisp/cedet/semantic/symref.el index 89e8b40632d..15070dc0558 100644 --- a/lisp/cedet/semantic/symref.el +++ b/lisp/cedet/semantic/symref.el @@ -101,7 +101,7 @@ If no tools are supported, then 'grep is assumed.") (defun semantic-symref-calculate-rootdir () "Calculate the root directory for a symref search. -Start with and EDE project, or use the default directory." +Start with an EDE project, or use the default directory." (let* ((rootproj (when (and (featurep 'ede) ede-minor-mode) (ede-toplevel))) (rootdirbase (if rootproj |