diff options
Diffstat (limited to 'lisp/progmodes/which-func.el')
-rw-r--r-- | lisp/progmodes/which-func.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/progmodes/which-func.el b/lisp/progmodes/which-func.el index 6262e1c1958..e06dbf46a9a 100644 --- a/lisp/progmodes/which-func.el +++ b/lisp/progmodes/which-func.el @@ -283,8 +283,7 @@ If no function name is found, return nil." (null which-function-imenu-failed)) (imenu--make-index-alist t) (unless imenu--index-alist - (make-local-variable 'which-function-imenu-failed) - (setq which-function-imenu-failed t))) + (set (make-local-variable 'which-function-imenu-failed) t))) ;; If we have an index alist, use it. (when (and (null name) (boundp 'imenu--index-alist) imenu--index-alist) |