emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] Imenu Integration
@ 2008-07-16 10:36 Piotr Mieszkowski
  2008-07-16 14:06 ` Carsten Dominik
  0 siblings, 1 reply; 2+ messages in thread
From: Piotr Mieszkowski @ 2008-07-16 10:36 UTC (permalink / raw)
  To: Emacs Org-Mode

Dear Org-Mode Developers and Users,

In the Imenu-integration code, there is a hook (imenu-after-jump-hook)
that doesn't check whether we are in org-mode or not. Speedbar seems
to use a similar hook, so it may need a fix too.

===== PATCH BLOCK BEGIN =====
--- org.el.orig	2008-07-16 12:14:46.000000000 +0200
+++ org.el	2008-07-16 12:15:05.000000000 +0200
@@ -14212,7 +14212,9 @@
 (eval-after-load "imenu"
   '(progn
      (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

===== PATCH BLOCK END =====

Regards,
pfm

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-07-16 14:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-16 10:36 [PATCH] Imenu Integration Piotr Mieszkowski
2008-07-16 14:06 ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).