aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorEli Zaretskii2013-12-07 19:21:57 +0200
committerEli Zaretskii2013-12-07 19:21:57 +0200
commitce1d7b61f12dcc1b67535b68d9b0655b45fcadb6 (patch)
tree881d03f4f486933482cd2e3851184cd3b172ef1b /src/buffer.h
parent6630df25238c5a1efa2bc6a0fa7889782e8c91b5 (diff)
parentfa6fa1a1773f255b5efbe52a743b017f4908a6cb (diff)
downloademacs-ce1d7b61f12dcc1b67535b68d9b0655b45fcadb6.tar.gz
emacs-ce1d7b61f12dcc1b67535b68d9b0655b45fcadb6.zip
Merge from trunk.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h
index d1a3e50d7cf..10d5fdc23e0 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -475,7 +475,10 @@ struct buffer_text
475 /* Usually 0. Temporarily set to 1 in decode_coding_gap to 475 /* Usually 0. Temporarily set to 1 in decode_coding_gap to
476 prevent Fgarbage_collect from shrinking the gap and losing 476 prevent Fgarbage_collect from shrinking the gap and losing
477 not-yet-decoded bytes. */ 477 not-yet-decoded bytes. */
478 bool inhibit_shrinking; 478 unsigned inhibit_shrinking : 1;
479
480 /* True if it needs to be redisplayed. */
481 unsigned redisplay : 1;
479 }; 482 };
480 483
481/* Most code should use this macro to access Lisp fields in struct buffer. */ 484/* Most code should use this macro to access Lisp fields in struct buffer. */
@@ -738,7 +741,7 @@ struct buffer
738 Lisp_Object INTERNAL_FIELD (cursor_in_non_selected_windows); 741 Lisp_Object INTERNAL_FIELD (cursor_in_non_selected_windows);
739 742
740 /* No more Lisp_Object beyond this point. Except undo_list, 743 /* No more Lisp_Object beyond this point. Except undo_list,
741 which is handled specially in Fgarbage_collect . */ 744 which is handled specially in Fgarbage_collect. */
742 745
743 /* This structure holds the coordinates of the buffer contents 746 /* This structure holds the coordinates of the buffer contents
744 in ordinary buffers. In indirect buffers, this is not used. */ 747 in ordinary buffers. In indirect buffers, this is not used. */