diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-08-21 19:29:47 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-08-21 19:29:47 +0000 |
commit | 4f13cc9959c1a786da94bbb1fef1a633619e3066 (patch) | |
tree | 999e06fdda0325331f795750329e8ea5483cfd87 /src/buffer.h | |
parent | 32347cf4deb76073e688fe14f0875e0366c981be (diff) | |
download | emacs-4f13cc9959c1a786da94bbb1fef1a633619e3066.tar.gz |
Remove conditional compilation on NO_PROMPT_IN_BUFFER.
Diffstat (limited to 'src/buffer.h')
-rw-r--r-- | src/buffer.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/buffer.h b/src/buffer.h index 4928333cd43..99a1f60a296 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -488,11 +488,9 @@ struct buffer /* The name of this buffer. */ Lisp_Object name; -#if !NO_PROMPT_IN_BUFFER - /* Amount at the start of the buffer used by a minibuffer prompt, - or nil if this buffer is not a mini-buffer. */ + /* Length in characters of the prompt in a mini-buffer, or nil if + this buffer is not a mini-buffer. */ Lisp_Object minibuffer_prompt_length; -#endif /* The name of the file visited in this buffer, or nil. */ Lisp_Object filename; |