aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorJoakim Verona2012-12-24 12:50:52 +0100
committerJoakim Verona2012-12-24 12:50:52 +0100
commit372d5821e9a846a6ac5ba66519dd6bd14e401d94 (patch)
tree9dafc68019508da0711050c4b392126d513045f2 /src/buffer.h
parent277acaa340e6f4ddffe1901aa5a018879363f507 (diff)
parentf9e7c67e4ccdaf160c0506748f776d628a38eeba (diff)
downloademacs-372d5821e9a846a6ac5ba66519dd6bd14e401d94.tar.gz
emacs-372d5821e9a846a6ac5ba66519dd6bd14e401d94.zip
auto upstream
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index d838d3767ef..a8769fd3397 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -193,6 +193,9 @@ INLINE_HEADER_BEGIN
193/* FIXME: should we move this into ->text->auto_save_modiff? */ 193/* FIXME: should we move this into ->text->auto_save_modiff? */
194#define BUF_AUTOSAVE_MODIFF(buf) ((buf)->auto_save_modified) 194#define BUF_AUTOSAVE_MODIFF(buf) ((buf)->auto_save_modified)
195 195
196/* Compaction count. */
197#define BUF_COMPACT(buf) ((buf)->text->compact)
198
196/* Marker chain of buffer. */ 199/* Marker chain of buffer. */
197#define BUF_MARKERS(buf) ((buf)->text->markers) 200#define BUF_MARKERS(buf) ((buf)->text->markers)
198 201