# HG changeset patch # User Richard M. Stallman # Date 844394332 0 # Node ID 509a48e81eaa88b87dd346976783a1d491fbaa7e # Parent badca394f9792f5b3a736a39ca611203e9738e43 (imenu-default-create-index-function): Fix error message. diff -r badca394f979 -r 509a48e81eaa lisp/imenu.el --- a/lisp/imenu.el Thu Oct 03 21:51:39 1996 +0000 +++ b/lisp/imenu.el Fri Oct 04 01:58:52 1996 +0000 @@ -576,8 +576,7 @@ ((and imenu-generic-expression) (imenu--generic-function imenu-generic-expression)) (t - (error "The mode \"%s\" does not take full advantage of imenu.el yet." - mode-name)))) + (error "The mode `%s' does not support Imenu" mode-name)))) (defun imenu--replace-spaces (name replacement) ;; Replace all spaces in NAME with REPLACEMENT.