summaryrefslogtreecommitdiff
path: root/lisp/imenu.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1999-01-31 07:20:12 +0000
committerRichard M. Stallman <rms@gnu.org>1999-01-31 07:20:12 +0000
commit17f04b2f42871794302cc49002e140c7b4220d76 (patch)
tree8c59d99381ee14a0a147c6ad4f9dc9f2d6714abc /lisp/imenu.el
parentfa0193579df1a1d4d9aac8735fc0b740abb899fe (diff)
downloademacs-17f04b2f42871794302cc49002e140c7b4220d76.tar.gz
(imenu-sort-function): Fix custom type.
Diffstat (limited to 'lisp/imenu.el')
-rw-r--r--lisp/imenu.el2
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
element should come before the second. The arguments are cons cells;
\(NAME . POSITION). Look at `imenu--sort-by-name' for an example."
:type '(choice (const :tag "No sorting" nil)
- (const :tag "Sort by name" 'imenu--sort-by-name)
+ (const :tag "Sort by name" imenu--sort-by-name)
(function :tag "Another function"))
:group 'imenu)