From: Richard M. Stallman Date: Sun, 31 Jan 1999 07:20:12 +0000 (+0000) Subject: (imenu-sort-function): Fix custom type. X-Git-Tag: emacs-20.4~716 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=df90db135904c570967c641be53bc27a7ee5ffe4;p=emacs.git (imenu-sort-function): Fix custom type. --- 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)