aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStephen Leake2015-11-14 16:44:58 -0600
committerStephen Leake2015-11-15 13:44:41 -0600
commita6843cce90b5041adc456815ca0f7a3fdda6db1f (patch)
tree24da50ff37feed1b2ff3e20ae6674853629c0dfa /src
parentae16894d1e19601e19b1e70461dc0f69ae1f1059 (diff)
downloademacs-a6843cce90b5041adc456815ca0f7a3fdda6db1f.tar.gz
emacs-a6843cce90b5041adc456815ca0f7a3fdda6db1f.zip
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 'src')
-rw-r--r--src/fns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 46956668777..efc319e721f 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1580,7 +1580,8 @@ sublist by modifying its list structure, then returns the resulting
1580list. 1580list.
1581 1581
1582Write `(setq foo (delq element foo))' to be sure of correctly changing 1582Write `(setq foo (delq element foo))' to be sure of correctly changing
1583the value of a list `foo'. */) 1583the value of a list `foo'. See also `remq', which does not modify the
1584argument. */)
1584 (register Lisp_Object elt, Lisp_Object list) 1585 (register Lisp_Object elt, Lisp_Object list)
1585{ 1586{
1586 Lisp_Object tail, tortoise, prev = Qnil; 1587 Lisp_Object tail, tortoise, prev = Qnil;