all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: David Kastrup <dak@gnu.org>
Subject: Re: match-data confusion...
Date: 18 Jun 2004 13:42:54 +0200	[thread overview]
Message-ID: <x5n031qegx.fsf@lola.goethe.zz> (raw)
In-Reply-To: <x5zn71qiql.fsf@lola.goethe.zz>

David Kastrup <dak@gnu.org> writes:

> I am having a problem with getting stuff right in replace.el.
> 
> The problem is that
> 
> (match-data t) is basically dangerous since it is lacking the
> information to restore last_thing_searched.  But that means that
> (set-match-data (match-data t)) is not a noop, even if the buffer is
> not changed in between since the restored match-data stops being
> adjusted when buffer changes occur before it.

Well, ok, so this adjustment would not happen anyway as I see from the
code, since last_thing_searched is only accessed in search.c.  Let's
put it differently:

(match-data) is not equivalent to
(progn (set-match-data (match-data t)) (match-data))

This means that I can't convert something fetched with (match-data t)
into some set of markers in the simple way.  Anyway, I see several
ways round the problem I have in replace.el:

a) ignore the problem.  That means that if people edit before point
and then perform this or a previous replacement, it will happen at
the wrong point.
b) set a read-only overlay on everything that could affect
recorded buffer positions where replacements might still occur.
c) set a modification-hook overlay on everything that could affect
such buffer positions.  When it triggers, convert all possibly
affected match-data sets into markers manually.
d) use markers in the first place for everything, but make sure to
invalidate them as soon as they are not needed anymore.

I think I tend to option d).  The reason is that the only case where
we get pending markers is that where a replacement was voted "n" by
the user, in interactive use.  But in that case, I don't think we are
being overly time-critical, anyway.

But I still think that a possibility for restoring last_thing_matched
with set-match-data even in the case that the data was extracted
using (match-data t) is warranted.
 
-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum

  reply	other threads:[~2004-06-18 11:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-06-18 10:10 match-data confusion David Kastrup
2004-06-18 11:42 ` David Kastrup [this message]
2004-06-19  3:19 ` Richard Stallman

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=x5n031qegx.fsf@lola.goethe.zz \
    --to=dak@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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.