emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] [PATCH] Fix iswitchb completion when virtual buffers are enabl


From: Tassilo Horn
Subject: [Orgmode] [PATCH] Fix iswitchb completion when virtual buffers are enabled
Date: Wed, 16 Sep 2009 21:04:19 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)

Hi Carsten,

there's a typo in org.el which prevents deactivation of virtual buffers
when the iswitchb completion is used in org.  Here's a patch.

--8<---------------cut here---------------start------------->8---
diff --git a/lisp/org.el b/lisp/org.el
index 4ef4a09..c364f1d 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -7724,7 +7724,7 @@ Use TAB to complete link prefixes, then RET for 
type-specific completion support
   "Use iswitch as a completing-read replacement to choose from choices.
 PROMPT is a string to prompt with.  CHOICES is a list of strings to choose
 from."
-  (let* ((switchb-use-virtual-buffers nil)
+  (let* ((iswitchb-use-virtual-buffers nil)
         (iswitchb-make-buflist-hook
          (lambda ()
            (setq iswitchb-temp-buflist choices))))
--8<---------------cut here---------------end--------------->8---

Bye,
Tassilo





reply via email to

[Prev in Thread] Current Thread [Next in Thread]