diff options
| author | Paul Eggert | 2012-06-22 14:17:42 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-06-22 14:17:42 -0700 |
| commit | d35af63cd671563fd188c3b0a1ef30067027c7aa (patch) | |
| tree | c9e01847ccf788e23794684da9331c3e0defd0d3 /src/buffer.c | |
| parent | f143bfe38b43ad0a9d817f05c25e418982dca06f (diff) | |
| download | emacs-d35af63cd671563fd188c3b0a1ef30067027c7aa.tar.gz emacs-d35af63cd671563fd188c3b0a1ef30067027c7aa.zip | |
Support higher-resolution time stamps.
Fixes: debbugs:9000
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 8 |
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 | |||
| 5834 | from (abs POSITION). If POSITION is positive, point was at the front | 5834 | from (abs POSITION). If POSITION is positive, point was at the front |
| 5835 | of the text being deleted; if negative, point was at the end. | 5835 | of the text being deleted; if negative, point was at the end. |
| 5836 | 5836 | ||
| 5837 | An entry (t HIGH . LOW) indicates that the buffer previously had | 5837 | An 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 | 5838 | unmodified; (HIGH LOW USEC PSEC) is in the same style as (current-time) |
| 5839 | of the visited file's modification time, as of that time. If the | 5839 | and is the visited file's modification time, as of that time. If the |
| 5840 | modification time of the most recent save is different, this entry is | 5840 | modification time of the most recent save is different, this entry is |
| 5841 | obsolete. | 5841 | obsolete. |
| 5842 | 5842 | ||