diff options
| author | Richard M. Stallman | 1999-01-31 07:20:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-01-31 07:20:12 +0000 |
| commit | df90db135904c570967c641be53bc27a7ee5ffe4 (patch) | |
| tree | a96cd41163c3198ac0a38ed9ab8e2ac876374de3 | |
| parent | 8e49673d5e62a9ab5aa89945babf7e25796198b6 (diff) | |
| download | emacs-df90db135904c570967c641be53bc27a7ee5ffe4.tar.gz emacs-df90db135904c570967c641be53bc27a7ee5ffe4.zip | |
(imenu-sort-function): Fix custom type.
| -rw-r--r-- | lisp/imenu.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/imenu.el b/lisp/imenu.el index 2f353e111ec..f9b33b80b47 100644 --- a/lisp/imenu.el +++ b/lisp/imenu.el | |||
| @@ -132,7 +132,7 @@ The function should take two arguments and return t if the first | |||
| 132 | element should come before the second. The arguments are cons cells; | 132 | element should come before the second. The arguments are cons cells; |
| 133 | \(NAME . POSITION). Look at `imenu--sort-by-name' for an example." | 133 | \(NAME . POSITION). Look at `imenu--sort-by-name' for an example." |
| 134 | :type '(choice (const :tag "No sorting" nil) | 134 | :type '(choice (const :tag "No sorting" nil) |
| 135 | (const :tag "Sort by name" 'imenu--sort-by-name) | 135 | (const :tag "Sort by name" imenu--sort-by-name) |
| 136 | (function :tag "Another function")) | 136 | (function :tag "Another function")) |
| 137 | :group 'imenu) | 137 | :group 'imenu) |
| 138 | 138 | ||