1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 11:50:51 -08:00

* lisp/imenu.el (imenu--index-alist): Add missing dot to the docstring.

Fixes: debbugs:14029
This commit is contained in:
Andreas Politz 2013-11-29 16:31:20 +02:00 committed by Dmitry Gutov
parent 88ec1a4af7
commit 7efb806d46
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-11-29 Andreas Politz <politza@hochschule-trier.de>
* imenu.el (imenu--index-alist): Add missing dot to the docstring
(Bug#14029).
2013-11-29 Andreas Politz <politza@fh-trier.de> 2013-11-29 Andreas Politz <politza@fh-trier.de>
* imenu.el (imenu--subalist-p): Don't error on non-conses and * imenu.el (imenu--subalist-p): Don't error on non-conses and
allow non-lambda lists as functions. allow non-lambda lists as functions.

View file

@ -463,7 +463,7 @@ Special elements look like (INDEX-NAME POSITION FUNCTION ARGUMENTS...).
To \"go to\" a special element means applying FUNCTION To \"go to\" a special element means applying FUNCTION
to INDEX-NAME, POSITION, and the ARGUMENTS. to INDEX-NAME, POSITION, and the ARGUMENTS.
A nested sub-alist element looks like (INDEX-NAME SUB-ALIST). A nested sub-alist element looks like (INDEX-NAME . SUB-ALIST).
The function `imenu--subalist-p' tests an element and returns t The function `imenu--subalist-p' tests an element and returns t
if it is a sub-alist. if it is a sub-alist.