diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index f06a2a5ea0c..b8c81a10d54 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -705,7 +705,7 @@ reset_buffer (register struct buffer *b) | |||
| 705 | BVAR (b, filename) = Qnil; | 705 | BVAR (b, filename) = Qnil; |
| 706 | BVAR (b, file_truename) = Qnil; | 706 | BVAR (b, file_truename) = Qnil; |
| 707 | BVAR (b, directory) = (current_buffer) ? BVAR (current_buffer, directory) : Qnil; | 707 | BVAR (b, directory) = (current_buffer) ? BVAR (current_buffer, directory) : Qnil; |
| 708 | EMACS_SET_SECS_NSECS (b->modtime, 0, UNKNOWN_MODTIME_NSECS); | 708 | b->modtime = make_emacs_time (0, UNKNOWN_MODTIME_NSECS); |
| 709 | b->modtime_size = -1; | 709 | b->modtime_size = -1; |
| 710 | XSETFASTINT (BVAR (b, save_length), 0); | 710 | XSETFASTINT (BVAR (b, save_length), 0); |
| 711 | b->last_window_start = 1; | 711 | b->last_window_start = 1; |