diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-01-02 06:26:46 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-01-02 06:26:46 +0000 |
commit | f541577af48f03cc6ed7f18c2174a9b1f1aac220 (patch) | |
tree | e2b035f237bfe060e8016c9b01d59bbe3e50506e /src | |
parent | 6addb8fe6c1a06a64752af115544292fba38f775 (diff) | |
download | emacs-f541577af48f03cc6ed7f18c2174a9b1f1aac220.tar.gz |
(Fprimitive_undo): Use base buffer's modtime field.
Use SAVE_MODIFF and BUF_SAVE_MODIFF
instead of direct access to the save_modiff field.
Diffstat (limited to 'src')
-rw-r--r-- | src/undo.c | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/src/undo.c b/src/undo.c index 9fdba2f1d8f..86c30c5d226 100644 --- a/src/undo.c +++ b/src/undo.c @@ -57,7 +57,7 @@ record_insert (beg, length) Fundo_boundary (); XSETBUFFER (last_undo_buffer, current_buffer); - if (MODIFF <= current_buffer->save_modified) + if (MODIFF <= SAVE_MODIFF) record_first_change (); /* If this is following another insertion and consecutive with it @@ -105,7 +105,7 @@ record_delete (beg, length) at_boundary = (CONSP (current_buffer->undo_list) && NILP (XCONS (current_buffer->undo_list)->car)); - if (MODIFF <= current_buffer->save_modified) + if (MODIFF <= SAVE_MODIFF) record_first_change (); if (point == beg + length) @@ -146,6 +146,7 @@ record_change (beg, length) record_first_change () { Lisp_Object high, low; + struct buffer *base_buffer = current_buffer; if (EQ (current_buffer->undo_list, Qt)) return; @@ -154,8 +155,11 @@ record_first_change () Fundo_boundary (); XSETBUFFER (last_undo_buffer, current_buffer); - XSETFASTINT (high, (current_buffer->modtime >> 16) & 0xffff); - XSETFASTINT (low, current_buffer->modtime & 0xffff); + if (base_buffer->base_buffer) + base_buffer = base_buffer->base_buffer; + + XSETFASTINT (high, (base_buffer->modtime >> 16) & 0xffff); + XSETFASTINT (low, base_buffer->modtime & 0xffff); current_buffer->undo_list = Fcons (Fcons (Qt, Fcons (high, low)), current_buffer->undo_list); } @@ -187,7 +191,7 @@ record_property_change (beg, length, prop, value, buffer) if (boundary) Fundo_boundary (); - if (MODIFF <= current_buffer->save_modified) + if (MODIFF <= SAVE_MODIFF) record_first_change (); XSETINT (lbeg, beg); @@ -380,14 +384,19 @@ Return what remains of the list.") /* Element (t high . low) records previous modtime. */ Lisp_Object high, low; int mod_time; + struct buffer *base_buffer = current_buffer; high = Fcar (cdr); low = Fcdr (cdr); mod_time = (XFASTINT (high) << 16) + XFASTINT (low); + + if (current_buffer->base_buffer) + base_buffer = current_buffer->base_buffer; + /* If this records an obsolete save (not matching the actual disk file) then don't mark unmodified. */ - if (mod_time != current_buffer->modtime) + if (mod_time != base_buffer->modtime) break; #ifdef CLASH_DETECTION Funlock_buffer (); |