aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index e501c9b73cc..89a4e26fb73 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -709,7 +709,7 @@ reset_buffer (register struct buffer *b)
709 BVAR (b, filename) = Qnil; 709 BVAR (b, filename) = Qnil;
710 BVAR (b, file_truename) = Qnil; 710 BVAR (b, file_truename) = Qnil;
711 BVAR (b, directory) = (current_buffer) ? BVAR (current_buffer, directory) : Qnil; 711 BVAR (b, directory) = (current_buffer) ? BVAR (current_buffer, directory) : Qnil;
712 b->modtime = 0; 712 EMACS_SET_SECS_NSECS (b->modtime, 0, UNKNOWN_MODTIME_NSECS);
713 b->modtime_size = -1; 713 b->modtime_size = -1;
714 XSETFASTINT (BVAR (b, save_length), 0); 714 XSETFASTINT (BVAR (b, save_length), 0);
715 b->last_window_start = 1; 715 b->last_window_start = 1;
@@ -5834,9 +5834,9 @@ An entry (TEXT . POSITION) represents the deletion of the string TEXT
5834from (abs POSITION). If POSITION is positive, point was at the front 5834from (abs POSITION). If POSITION is positive, point was at the front
5835of the text being deleted; if negative, point was at the end. 5835of the text being deleted; if negative, point was at the end.
5836 5836
5837An entry (t HIGH . LOW) indicates that the buffer previously had 5837An entry (t HIGH LOW USEC PSEC) indicates that the buffer was previously
5838\"unmodified\" status. HIGH and LOW are the high and low 16-bit portions 5838unmodified; (HIGH LOW USEC PSEC) is in the same style as (current-time)
5839of the visited file's modification time, as of that time. If the 5839and is the visited file's modification time, as of that time. If the
5840modification time of the most recent save is different, this entry is 5840modification time of the most recent save is different, this entry is
5841obsolete. 5841obsolete.
5842 5842