diff options
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/buffer.h b/src/buffer.h index 19faa844e02..135eaf72d30 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -561,9 +561,6 @@ struct buffer in the display of this buffer. */ Lisp_Object extra_line_spacing_; - /* Narrowing state when auto-narrow mode is in effect. */ - Lisp_Object auto_narrow__narrowing_state_; - /* Cursor type to display in non-selected windows. t means to use hollow box cursor. See `cursor-type' for other values. */ @@ -835,11 +832,6 @@ bset_width_table (struct buffer *b, Lisp_Object val) { b->width_table_ = val; } -INLINE void -bset_auto_narrow__narrowing_state (struct buffer *b, Lisp_Object val) -{ - b->auto_narrow__narrowing_state_ = val; -} /* BUFFER_CEILING_OF (resp. BUFFER_FLOOR_OF), when applied to n, return the max (resp. min) p such that @@ -1120,12 +1112,6 @@ BUFFER_CHECK_INDIRECTION (struct buffer *b) } } -INLINE bool -BUFFER_AUTO_NARROWED_P (struct buffer *b) -{ - return EQ (BVAR (b, auto_narrow__narrowing_state), Qauto); -} - /* This structure holds the default values of the buffer-local variables that have special slots in each buffer. The default value occupies the same slot in this structure |