diff options
| author | Stephen Leake | 2015-11-14 16:44:58 -0600 |
|---|---|---|
| committer | Stephen Leake | 2015-11-15 13:44:41 -0600 |
| commit | a6843cce90b5041adc456815ca0f7a3fdda6db1f (patch) | |
| tree | 24da50ff37feed1b2ff3e20ae6674853629c0dfa /src | |
| parent | ae16894d1e19601e19b1e70461dc0f69ae1f1059 (diff) | |
| download | emacs-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -1580,7 +1580,8 @@ sublist by modifying its list structure, then returns the resulting | |||
| 1580 | list. | 1580 | list. |
| 1581 | 1581 | ||
| 1582 | Write `(setq foo (delq element foo))' to be sure of correctly changing | 1582 | Write `(setq foo (delq element foo))' to be sure of correctly changing |
| 1583 | the value of a list `foo'. */) | 1583 | the value of a list `foo'. See also `remq', which does not modify the |
| 1584 | argument. */) | ||
| 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; |