comparison src/buffer.h @ 25351:c7247eabc834

Remove conditional compilation on NO_PROMPT_IN_BUFFER.
author Gerd Moellmann <gerd@gnu.org>
date Sat, 21 Aug 1999 19:29:47 +0000
parents c5eb87f3571e
children 7b65011c5136
comparison
equal deleted inserted replaced
25350:f964a1e5b29c 25351:c7247eabc834
486 /* Everything from here down must be a Lisp_Object */ 486 /* Everything from here down must be a Lisp_Object */
487 487
488 /* The name of this buffer. */ 488 /* The name of this buffer. */
489 Lisp_Object name; 489 Lisp_Object name;
490 490
491 #if !NO_PROMPT_IN_BUFFER 491 /* Length in characters of the prompt in a mini-buffer, or nil if
492 /* Amount at the start of the buffer used by a minibuffer prompt, 492 this buffer is not a mini-buffer. */
493 or nil if this buffer is not a mini-buffer. */
494 Lisp_Object minibuffer_prompt_length; 493 Lisp_Object minibuffer_prompt_length;
495 #endif
496 494
497 /* The name of the file visited in this buffer, or nil. */ 495 /* The name of the file visited in this buffer, or nil. */
498 Lisp_Object filename; 496 Lisp_Object filename;
499 /* Dir for expanding relative file names. */ 497 /* Dir for expanding relative file names. */
500 Lisp_Object directory; 498 Lisp_Object directory;