From: Stefan Monnier <monnier@iro.umontreal.ca>
To: help-gnu-emacs@gnu.org
Subject: Re: Operate on each line in region
Date: Wed, 23 Apr 2014 14:05:18 -0400 [thread overview]
Message-ID: <jwvr44ox6yi.fsf-monnier+gmane.emacs.help@gnu.org> (raw)
In-Reply-To: 787a28ce-2ab1-4b11-92fd-ca4506447baa@googlegroups.com
> (defun my-justify (start end)
> (interactive 'r')
> (while (< (point) end))
> ...body...
> (forward-line 1)))
Just beware that as you go modify the buffer, the position that you
consider as "the end" will move as well. You can solve this problem in
a few different ways:
- loop from end to start.
- make sure `end' is a marker rather than an integer so it will be
automatically adjusted to keep pointing to the same logical position in
the text.
- use narrowing (which uses similar machinery as a marker).
I personally recommend against using narrowing, unless it's *really*
much simpler. The reason for it is that narrowing affects "everything",
so it's kind of a sledgehammer which can have unintended consequences.
> I'm wondering if there is a more straightforward way to accomplish this.
Not sure what "more straightforward" would look like.
Stefan
next prev parent reply other threads:[~2014-04-23 18:05 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-23 17:45 Operate on each line in region Jacob Gerlach
2014-04-23 18:03 ` Doug Lewan
2014-04-23 18:05 ` Stefan Monnier [this message]
2014-04-23 18:15 ` Pascal J. Bourguignon
[not found] ` <mailman.20129.1398276348.10748.help-gnu-emacs@gnu.org>
2014-04-23 19:06 ` Barry Margolin
2014-04-23 19:18 ` Jacob Gerlach
2014-04-23 23:23 ` Jacob Gerlach
2014-04-23 23:44 ` Barry Margolin
2014-04-26 3:02 ` Jacob Gerlach
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=jwvr44ox6yi.fsf-monnier+gmane.emacs.help@gnu.org \
--to=monnier@iro.umontreal.ca \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).