From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: [PATCH] Fix iswitchb completion when virtual buffers are enabled Date: Wed, 16 Sep 2009 21:36:53 +0100 Message-ID: References: <87ljke1zkc.fsf@thinkpad.tsdh.de> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mo1FP-00024V-CA for emacs-orgmode@gnu.org; Wed, 16 Sep 2009 16:37:03 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mo1FK-00022M-P4 for emacs-orgmode@gnu.org; Wed, 16 Sep 2009 16:37:03 -0400 Received: from [199.232.76.173] (port=41553 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mo1FK-00022G-K3 for emacs-orgmode@gnu.org; Wed, 16 Sep 2009 16:36:58 -0400 Received: from mail-ew0-f211.google.com ([209.85.219.211]:38306) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mo1FK-0002z2-87 for emacs-orgmode@gnu.org; Wed, 16 Sep 2009 16:36:58 -0400 Received: by ewy7 with SMTP id 7so3682185ewy.31 for ; Wed, 16 Sep 2009 13:36:57 -0700 (PDT) In-Reply-To: <87ljke1zkc.fsf@thinkpad.tsdh.de> 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: Tassilo Horn Cc: emacs-orgmode@gnu.org Applied, thanks. - Carsten 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