From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tassilo Horn Subject: Re: [PATCH] Fix iswitchb completion when virtual buffers are enabled Date: Thu, 17 Sep 2009 08:25:43 +0200 Message-ID: <87ws3y140o.fsf@thinkpad.tsdh.de> References: <87ljke1zkc.fsf@thinkpad.tsdh.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MoARD-0000q0-NN for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 02:25:51 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MoAR8-0000pi-1m for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 02:25:50 -0400 Received: from [199.232.76.173] (port=41132 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MoAR7-0000pf-Rd for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 02:25:45 -0400 Received: from deliver.uni-koblenz.de ([141.26.64.15]:10889) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MoAR7-0004Zb-Fb for emacs-orgmode@gnu.org; Thu, 17 Sep 2009 02:25:45 -0400 In-Reply-To: (Carsten Dominik's message of "Wed, 16 Sep 2009 21:36:53 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: emacs-orgmode@gnu.org Carsten Dominik writes: > Applied, thanks. But at least not committed or pushed. > On Sep 16, 2009, at 8:04 PM, Tassilo Horn wrote: > >> 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 >> >> >> >> _______________________________________________ >> Emacs-orgmode mailing list >> Remember: use `Reply All' to send replies to the list. >> Emacs-orgmode@gnu.org >> http://lists.gnu.org/mailman/listinfo/emacs-orgmode