diff options
| author | Bill Wohler | 2012-12-08 17:19:00 -0800 |
|---|---|---|
| committer | Bill Wohler | 2012-12-08 17:19:00 -0800 |
| commit | e1b489df7af8f7034f8c2ef275b786e93a39df31 (patch) | |
| tree | 2edc9307185e2c77b98fe75f6d7eb0476c58c7e3 /src/buffer.h | |
| parent | ce974958f93ffa2e1bd01b4dd85dcb8ec1395787 (diff) | |
| parent | c6c08d3f8fe4d2c9e588189e46d60a30ef3e8d20 (diff) | |
| download | emacs-e1b489df7af8f7034f8c2ef275b786e93a39df31.tar.gz emacs-e1b489df7af8f7034f8c2ef275b786e93a39df31.zip | |
Merge from trunk; up to 2012-12-09T01:04:43Z!rgm@gnu.org.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h index fbbbf1b8434..1129840bd47 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -982,6 +982,11 @@ bset_width_table (struct buffer *b, Lisp_Object val) | |||
| 982 | 982 | ||
| 983 | #define BUFFER_LIVE_P(b) (!NILP (BVAR (b, name))) | 983 | #define BUFFER_LIVE_P(b) (!NILP (BVAR (b, name))) |
| 984 | 984 | ||
| 985 | /* Convenient check whether buffer B is hidden (i.e. its name | ||
| 986 | starts with a space). Caller must ensure that B is live. */ | ||
| 987 | |||
| 988 | #define BUFFER_HIDDEN_P(b) (SREF (BVAR (b, name), 0) == ' ') | ||
| 989 | |||
| 985 | /* Verify indirection counters. */ | 990 | /* Verify indirection counters. */ |
| 986 | 991 | ||
| 987 | #define BUFFER_CHECK_INDIRECTION(b) \ | 992 | #define BUFFER_CHECK_INDIRECTION(b) \ |