From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Rami A Newsgroups: gmane.emacs.help Subject: Re: switch to previous buffer Date: Fri, 29 Mar 2013 16:20:17 -0700 (PDT) Message-ID: References: <382a2375-aed1-4deb-ad29-21952926c809@googlegroups.com> <0746b716-e454-402f-a46d-dafa483bdb03@googlegroups.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1364625968 22554 80.91.229.3 (30 Mar 2013 06:46:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 30 Mar 2013 06:46:08 +0000 (UTC) Cc: cfajohnson@gmail.com To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Mar 30 07:46:33 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 1ULpXk-0000MD-Hq for geh-help-gnu-emacs@m.gmane.org; Sat, 30 Mar 2013 07:45:36 +0100 Original-Received: from localhost ([::1]:34695 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ULpXM-0007Mu-A3 for geh-help-gnu-emacs@m.gmane.org; Sat, 30 Mar 2013 02:45:12 -0400 X-Received: by 10.224.219.146 with SMTP id hu18mr3099654qab.3.1364599217844; Fri, 29 Mar 2013 16:20:17 -0700 (PDT) X-Received: by 10.50.6.135 with SMTP id b7mr54951iga.9.1364599217763; Fri, 29 Mar 2013 16:20:17 -0700 (PDT) Original-Path: usenet.stanford.edu!t2no26352511qal.0!news-out.google.com!v17ni9qad.0!nntp.google.com!ca1no16919326qab.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help In-Reply-To: <0746b716-e454-402f-a46d-dafa483bdb03@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=148.87.19.198; posting-account=HZ4YzgoAAABkTSCruZ7Bs4hufjlOUmBF Original-NNTP-Posting-Host: 148.87.19.198 User-Agent: G2/1.0 Injection-Date: Fri, 29 Mar 2013 23:20:17 +0000 Original-Xref: usenet.stanford.edu gnu.emacs.help:197532 X-Mailman-Approved-At: Sat, 30 Mar 2013 02:43:40 -0400 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:89808 Archived-At: I should add that I have switch-to-previous-buffer() defined as: (defun switch-to-previous-buffer () (interactive) (switch-to-buffer (other-buffer (current-buffer) 1))) (global-set-key "\M-a" 'switch-to-previous-buffer)