all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: phillip.lord@newcastle.ac.uk (Phillip Lord)
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: Emacs-Devel devel <emacs-devel@gnu.org>
Subject: Re: disabling undo boundaries
Date: Tue, 12 May 2015 12:52:25 +0100	[thread overview]
Message-ID: <87ioby3tdy.fsf@newcastle.ac.uk> (raw)
In-Reply-To: <jwvd226wyj3.fsf-monnier+emacs@gnu.org> (Stefan Monnier's message of "Mon, 11 May 2015 18:23:59 -0400")

Stefan Monnier <monnier@iro.umontreal.ca> writes:
> Shouldn't it be sufficient to keep track of the lower bound of the
> changes, the higher bound of the changes, and the number of chars
> added/removed?
> Oh, wait I think I now remember that your two buffers aren't necessarily
> identical, in which case indeed it's ...hmm... difficult.


Yes, that's the problem. Also, it's not ideal for large changes which
span the buffer.

>
>> It's rather more sinister than that. The code is this:
>
>>   if ((current_buffer != last_undo_buffer)
>>          && (MODIFF > SAVE_MODIFF))
>>      Fundo_boundary ();
>
>>   last_undo_buffer = current_buffer;
>
>> So, when the after-change-function runs the buffer-undo-list has
>> *already* been modified. But if the a-c-f function makes an undoable
>> change, then last_undo_buffer gets reset to the other buffer (*scratch*
>> in my case).
>
>> Now, the *next* change happens, and current_buffer != last_undo_buffer
>> is true, so we add a boundary BEFORE, we add the next undo. So, the
>> buffer change in a-c-f adds a boundary before the next change not after
>> the one that has just been added.
>
> Hmm... so, IIUC the changes in *scratch* done from a-f-c cause the next
> modification in the main buffer to have an undo-boundary prepended
> because when the new command is run, last_undo_buffer is *scratch*.

Yep, that's how I read it.


> Then maybe you could try a hack like:
>
>    (with-current-buffer "*scratch*"
>      <doyourthing>)
>    (let ((buffer-undo-list))
>      (undo-boundary))           ; Set last_undo_buffer.


It doesn't unfortunately. An undo-boundary is not actually an undoable
action in that sense. I tried:

(save-excursion (goto-char (point-min)))

but AFAICT that fails also. I guess save-excursion is clever enough to
remove last_undo_buffer also.


>> I haven't used this for my daily emacs yet, so perhaps there are demons
>> lurking, but my question would be, why should a undoable change in
>> *that* buffer cause a marker boundary in *this*? What is the point of
>> these undo-boundaries that are causing me all this grief?
>
> It's a heuristic,


It is, and one that has been in Emacs for a long time. How wedded to
keeping it are you? Would it be possible to optionalize?

Phil



  reply	other threads:[~2015-05-12 11:52 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-10 21:43 disabling undo boundaries Phillip Lord
2015-05-11  1:42 ` Stefan Monnier
2015-05-11 11:46   ` Phillip Lord
2015-05-11 14:45     ` Stefan Monnier
2015-05-11 16:31       ` Phillip Lord
2015-05-11 19:30         ` Stefan Monnier
2015-05-11 20:42           ` Phillip Lord
2015-05-11 22:23             ` Stefan Monnier
2015-05-12 11:52               ` Phillip Lord [this message]
2015-05-12 20:15                 ` Stefan Monnier
2015-05-12 20:59                   ` Phillip Lord
2015-05-13 12:32                     ` Stefan Monnier
2015-05-13 15:40                       ` Phillip Lord
2015-05-14 15:28                         ` Stefan Monnier
2015-05-15 12:27                           ` Phillip Lord
2015-05-15 18:08                             ` Stefan Monnier
2015-05-15 19:49                               ` Phillip Lord
2015-05-15 23:45                                 ` Stefan Monnier
2015-05-16 13:31                                   ` Phillip Lord
2015-05-19 11:59                                     ` Phillip Lord
2015-05-19 19:42                                       ` Stefan Monnier
2015-05-19 21:48                                         ` Phillip Lord
2015-05-20  2:00                                           ` Stefan Monnier
2015-05-20  7:45                                             ` Phillip Lord
2015-05-20 12:53                                               ` Stefan Monnier
2015-05-21 11:15                                                 ` Phillip Lord
2015-05-21 15:44                                                   ` Stefan Monnier
2015-05-21 17:03                                                     ` Phillip Lord
2015-05-27 11:46                                                       ` Phillip Lord
2015-06-29  0:46                                                         ` Stefan Monnier
2015-08-04 14:18                                                           ` Phillip Lord
2015-08-06 21:02                                                             ` Phillip Lord
2015-08-06 22:20                                                             ` Stefan Monnier
2015-08-07 13:40                                                               ` Phillip Lord
2015-08-07 13:59                                                                 ` David Kastrup
2015-08-07 21:10                                                                   ` Phillip Lord
2015-08-08  5:39                                                                     ` David Kastrup
2015-08-08  9:58                                                                       ` Phillip Lord
2015-08-07 17:10                                                                 ` Stefan Monnier
2015-08-08 21:28                                                                   ` Stefan Monnier
2015-08-09 15:39                                                                     ` Phillip Lord
2015-08-09 16:30                                                                       ` Stefan Monnier
2015-08-09 16:50                                                                         ` Phillip Lord
2015-08-09 17:40                                                                           ` Stefan Monnier
2015-08-10  9:27                                                                             ` Phillip Lord
2015-08-10 21:21                                                                               ` Phillip Lord
2015-08-12 21:15                                                                               ` Stefan Monnier
2015-08-12 22:34                                                                                 ` Phillip Lord
2015-08-13  2:23                                                                                   ` Stefan Monnier
2015-08-21  9:40                                                                                     ` Phillip Lord
2015-08-07 23:49                                                     ` Davis Herring
2015-08-08 10:01                                                       ` Phillip Lord

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=87ioby3tdy.fsf@newcastle.ac.uk \
    --to=phillip.lord@newcastle.ac.uk \
    --cc=emacs-devel@gnu.org \
    --cc=monnier@iro.umontreal.ca \
    /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.