From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Barry Margolin Newsgroups: gmane.emacs.help Subject: Re: Mark multiple points Date: Thu, 07 Jul 2005 00:23:54 -0400 Organization: Symantec Message-ID: References: <1120704987.179223.105070@g47g2000cwa.googlegroups.com> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1120710355 28755 80.91.229.2 (7 Jul 2005 04:25:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 7 Jul 2005 04:25:55 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jul 07 06:25:47 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DqNxD-0006O6-7a for geh-help-gnu-emacs@m.gmane.org; Thu, 07 Jul 2005 06:25:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DqNyY-00023a-JY for geh-help-gnu-emacs@m.gmane.org; Thu, 07 Jul 2005 00:27:02 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news4.google.com!news.glorb.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail Original-NNTP-Posting-Date: Wed, 06 Jul 2005 23:23:55 -0500 Original-Newsgroups: gnu.emacs.help Mail-Copies-To: nobody User-Agent: MT-NewsWatcher/3.4 (PPC Mac OS X) X-Copies-To: never Original-Lines: 33 Original-NNTP-Posting-Host: 24.128.234.87 Original-X-Trace: sv3-cvrReKvUefDoEYohf2Wtux0/1qPRr3Yb/ifcHD7yphIiZ9EG4ppnQOecZ5pHSKAasf1HGYRsyZaz1wi!aiP0bM+q/N7hnfzJELi5fm8nZA9of9C5tDo51dsiI6uteVQQ5I4qr4fjng2HooRyR+wviLAz6yTp!qYElpa8eIDbC5PvsUkqNA2sq5lPRQlHGdg== Original-X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.31 Original-Xref: shelby.stanford.edu gnu.emacs.help:132343 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:27821 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:27821 In article <1120704987.179223.105070@g47g2000cwa.googlegroups.com>, "mirror" wrote: > C-x / and C-x j does good work for many individual markers, naming with > characters. > > I am looking for pushing the markers into stack. So, I can go forward > or backward, without naming with characters. That's what C-Space does normally. C-SPC runs the command set-mark-command which is an interactive compiled Lisp function in `simple'. It is bound to C-@, C-SPC. (set-mark-command ARG) Set mark at where point is, or jump to mark. With no prefix argument, set mark, and push old mark position on local ^^^^^^^^^^^^^ mark ring; also push mark on global mark ring if last mark was set in another buffer. Immediately repeating the command activates `transient-mark-mode' temporarily. With argument, e.g. C-u C-@, jump to mark, and pop a new position ^^^^^^^^^^^^^^^^^^ for mark off the local mark ring (this does not affect the global mark ring). Use C-x C-@ to jump to a mark off the global mark ring (see `pop-global-mark'). -- Barry Margolin, barmar@alum.mit.edu Arlington, MA *** PLEASE post questions in newsgroups, not directly to me ***