Fix bug in imenu-after-jump-hook.
This commit is contained in:
parent
9560d4468b
commit
30e5143fd2
|
@ -14445,7 +14445,9 @@ Show the heading too, if it is currently invisible."
|
||||||
(eval-after-load "imenu"
|
(eval-after-load "imenu"
|
||||||
'(progn
|
'(progn
|
||||||
(add-hook 'imenu-after-jump-hook
|
(add-hook 'imenu-after-jump-hook
|
||||||
(lambda () (org-show-context 'org-goto)))))
|
(lambda ()
|
||||||
|
(if (eq major-mode 'org-mode)
|
||||||
|
(org-show-context 'org-goto))))))
|
||||||
|
|
||||||
;; Speedbar support
|
;; Speedbar support
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue