emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: "Piotr Mieszkowski" <pfmieszkowski@gmail.com>
To: Emacs Org-Mode <emacs-orgmode@gnu.org>
Subject: [PATCH] Imenu Integration
Date: Wed, 16 Jul 2008 12:36:08 +0200	[thread overview]
Message-ID: <b3855f490807160336n79d2d967x63be0bc5a5a0453a@mail.gmail.com> (raw)

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

             reply	other threads:[~2008-07-16 10:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-16 10:36 Piotr Mieszkowski [this message]
2008-07-16 14:06 ` [PATCH] Imenu Integration Carsten Dominik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b3855f490807160336n79d2d967x63be0bc5a5a0453a@mail.gmail.com \
    --to=pfmieszkowski@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).