From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Teemu Likonen Newsgroups: gmane.emacs.help Subject: Re: switch to previous buffer Date: Sun, 31 Mar 2013 16:17:47 +0300 Message-ID: <87wqsn1zes.fsf@imladris.arda> References: <382a2375-aed1-4deb-ad29-21952926c809@googlegroups.com> <0746b716-e454-402f-a46d-dafa483bdb03@googlegroups.com> <20130330065118.GA21113@hysteria.proulx.com> <6b6e3269-8a0a-4777-abe8-f2ec4596b4a8@googlegroups.com> <87hajr67v9.fsf@gavenkoa.example.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1364735893 21171 80.91.229.3 (31 Mar 2013 13:18:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 31 Mar 2013 13:18:13 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Oleksandr Gavenko Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Mar 31 15:18:41 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UMI9f-0004Rn-Dh for geh-help-gnu-emacs@m.gmane.org; Sun, 31 Mar 2013 15:18:39 +0200 Original-Received: from localhost ([::1]:59675 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMI9G-0000nF-Ue for geh-help-gnu-emacs@m.gmane.org; Sun, 31 Mar 2013 09:18:14 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:36157) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMI93-0000n2-WB for help-gnu-emacs@gnu.org; Sun, 31 Mar 2013 09:18:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UMI91-00084f-7o for help-gnu-emacs@gnu.org; Sun, 31 Mar 2013 09:18:01 -0400 Original-Received: from mta-out.inet.fi ([195.156.147.13]:46858 helo=jenni2.inet.fi) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMI90-00083I-UL for help-gnu-emacs@gnu.org; Sun, 31 Mar 2013 09:17:59 -0400 Original-Received: from imladris.arda (188.238.87.237) by jenni2.inet.fi (8.5.140.03) (authenticated as likote-3) id 508713990A52DB4F; Sun, 31 Mar 2013 16:17:50 +0300 Original-Received: from dtw by imladris.arda with local (Exim 4.72) (envelope-from ) id 1UMI8p-0001Tk-QT; Sun, 31 Mar 2013 16:17:47 +0300 In-Reply-To: <87hajr67v9.fsf@gavenkoa.example.com> (Oleksandr Gavenko's message of "Sun, 31 Mar 2013 16:01:30 +0300") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 195.156.147.13 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:89833 Archived-At: Oleksandr Gavenko [2013-03-31 16:01:30 +0300] wrote: > (setq iswitchb-buffer-ignore > '("^ " > "^\*Buffer" > "^\*Completions\*" > "^\*tramp" > "^\*Dired log\*" > "^\*Quail Completions\*" > "^\*Disabled Command\*" > "^TAGS" > )) You must have double backslashes for regexp because they have special meaning in Lisp strings too. Try evaluating the strings below with C-x C-e. The latter will return "^*Buffer". "^\\*Buffer" "^\*Buffer"