aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorRichard M. Stallman2002-10-14 01:24:15 +0000
committerRichard M. Stallman2002-10-14 01:24:15 +0000
commit517e7945c77222e5fc396b763d62105ed375c583 (patch)
treea9e198159995867773c2cb8b957a018955889d4a /src/buffer.h
parent95dc5eeb172792562a4efbcccc3b5f504e6ec3cb (diff)
downloademacs-517e7945c77222e5fc396b763d62105ed375c583.tar.gz
emacs-517e7945c77222e5fc396b763d62105ed375c583.zip
(struct buffer): Move `undo_list' down below `name'.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/buffer.h b/src/buffer.h
index ecd2e742153..890cabe24ec 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -531,15 +531,6 @@ struct buffer
531 displaying this buffer. */ 531 displaying this buffer. */
532 unsigned prevent_redisplay_optimizations_p : 1; 532 unsigned prevent_redisplay_optimizations_p : 1;
533 533
534 /* Changes in the buffer are recorded here for undo.
535 t means don't record anything.
536 This information belongs to the base buffer of an indirect buffer,
537 But we can't store it in the struct buffer_text
538 because local variables have to be right in the struct buffer.
539 So we copy it around in set_buffer_internal.
540 This comes before `name' because it is marked in a special way. */
541 Lisp_Object undo_list;
542
543 /* Everything from here down must be a Lisp_Object. */ 534 /* Everything from here down must be a Lisp_Object. */
544 535
545 /* The name of this buffer. */ 536 /* The name of this buffer. */
@@ -579,6 +570,15 @@ struct buffer
579 Lisp_Object mode_name; 570 Lisp_Object mode_name;
580 /* Mode line element that controls format of mode line. */ 571 /* Mode line element that controls format of mode line. */
581 Lisp_Object mode_line_format; 572 Lisp_Object mode_line_format;
573
574 /* Changes in the buffer are recorded here for undo.
575 t means don't record anything.
576 This information belongs to the base buffer of an indirect buffer,
577 But we can't store it in the struct buffer_text
578 because local variables have to be right in the struct buffer.
579 So we copy it around in set_buffer_internal.
580 This comes before `name' because it is marked in a special way. */
581 Lisp_Object undo_list;
582 582
583 /* Analogous to mode_line_format for the line displayed at the top 583 /* Analogous to mode_line_format for the line displayed at the top
584 of windows. Nil means don't display that line. */ 584 of windows. Nil means don't display that line. */