diff options
| author | Joakim Verona | 2012-09-11 17:18:45 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-09-11 17:18:45 +0200 |
| commit | 0cc36550df4f355a1b46e944fc65e533ff0df90e (patch) | |
| tree | 100e4130dffa88423b6430c2814f740007b72269 /src/buffer.h | |
| parent | b035a30e5cd2f34fedc04c253eeb5a11afed8145 (diff) | |
| parent | 96d0357142bf277e6eb4d957a59b2c655034e2b7 (diff) | |
| download | emacs-0cc36550df4f355a1b46e944fc65e533ff0df90e.tar.gz emacs-0cc36550df4f355a1b46e944fc65e533ff0df90e.zip | |
upstream
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index da40a7ce3d8..d18ef30ea38 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -959,7 +959,10 @@ bset_width_table (struct buffer *b, Lisp_Object val) | |||
| 959 | b->INTERNAL_FIELD (width_table) = val; | 959 | b->INTERNAL_FIELD (width_table) = val; |
| 960 | } | 960 | } |
| 961 | 961 | ||
| 962 | 962 | /* Convenient check whether buffer B is live. */ | |
| 963 | |||
| 964 | #define BUFFER_LIVE_P(b) (!NILP (BVAR (b, name))) | ||
| 965 | |||
| 963 | /* Chain of all buffers, including killed ones. */ | 966 | /* Chain of all buffers, including killed ones. */ |
| 964 | 967 | ||
| 965 | extern struct buffer *all_buffers; | 968 | extern struct buffer *all_buffers; |