summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2002-10-14 01:24:15 +0000
committerRichard M. Stallman <rms@gnu.org>2002-10-14 01:24:15 +0000
commit517e7945c77222e5fc396b763d62105ed375c583 (patch)
treea9e198159995867773c2cb8b957a018955889d4a
parent95dc5eeb172792562a4efbcccc3b5f504e6ec3cb (diff)
downloademacs-517e7945c77222e5fc396b763d62105ed375c583.tar.gz
(struct buffer): Move `undo_list' down below `name'.
-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
displaying this buffer. */
unsigned prevent_redisplay_optimizations_p : 1;
- /* Changes in the buffer are recorded here for undo.
- t means don't record anything.
- This information belongs to the base buffer of an indirect buffer,
- But we can't store it in the struct buffer_text
- because local variables have to be right in the struct buffer.
- So we copy it around in set_buffer_internal.
- This comes before `name' because it is marked in a special way. */
- Lisp_Object undo_list;
-
/* Everything from here down must be a Lisp_Object. */
/* The name of this buffer. */
@@ -579,6 +570,15 @@ struct buffer
Lisp_Object mode_name;
/* Mode line element that controls format of mode line. */
Lisp_Object mode_line_format;
+
+ /* Changes in the buffer are recorded here for undo.
+ t means don't record anything.
+ This information belongs to the base buffer of an indirect buffer,
+ But we can't store it in the struct buffer_text
+ because local variables have to be right in the struct buffer.
+ So we copy it around in set_buffer_internal.
+ This comes before `name' because it is marked in a special way. */
+ Lisp_Object undo_list;
/* Analogous to mode_line_format for the line displayed at the top
of windows. Nil means don't display that line. */