diff options
| author | Andreas Politz | 2013-11-29 16:31:20 +0200 |
|---|---|---|
| committer | Dmitry Gutov | 2013-11-29 16:31:20 +0200 |
| commit | 7efb806d46b13b5efbfe04f94000535949ca8dff (patch) | |
| tree | 9d148db5477198da44985bd5b4d3ba2e207d1e49 | |
| parent | 88ec1a4af728414936427bdac5dd07c91d4ce6ca (diff) | |
| download | emacs-7efb806d46b13b5efbfe04f94000535949ca8dff.tar.gz emacs-7efb806d46b13b5efbfe04f94000535949ca8dff.zip | |
* lisp/imenu.el (imenu--index-alist): Add missing dot to the docstring.
Fixes: debbugs:14029
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/imenu.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ab72f160670..ac425d76154 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-11-29 Andreas Politz <politza@hochschule-trier.de> | ||
| 2 | |||
| 3 | * imenu.el (imenu--index-alist): Add missing dot to the docstring | ||
| 4 | (Bug#14029). | ||
| 5 | |||
| 1 | 2013-11-29 Andreas Politz <politza@fh-trier.de> | 6 | 2013-11-29 Andreas Politz <politza@fh-trier.de> |
| 2 | * imenu.el (imenu--subalist-p): Don't error on non-conses and | 7 | * imenu.el (imenu--subalist-p): Don't error on non-conses and |
| 3 | allow non-lambda lists as functions. | 8 | allow non-lambda lists as functions. |
diff --git a/lisp/imenu.el b/lisp/imenu.el index 5e03a3a9081..e4b92cf24d6 100644 --- a/lisp/imenu.el +++ b/lisp/imenu.el | |||
| @@ -463,7 +463,7 @@ Special elements look like (INDEX-NAME POSITION FUNCTION ARGUMENTS...). | |||
| 463 | To \"go to\" a special element means applying FUNCTION | 463 | To \"go to\" a special element means applying FUNCTION |
| 464 | to INDEX-NAME, POSITION, and the ARGUMENTS. | 464 | to INDEX-NAME, POSITION, and the ARGUMENTS. |
| 465 | 465 | ||
| 466 | A nested sub-alist element looks like (INDEX-NAME SUB-ALIST). | 466 | A nested sub-alist element looks like (INDEX-NAME . SUB-ALIST). |
| 467 | The function `imenu--subalist-p' tests an element and returns t | 467 | The function `imenu--subalist-p' tests an element and returns t |
| 468 | if it is a sub-alist. | 468 | if it is a sub-alist. |
| 469 | 469 | ||