comparison src/buffer.h @ 26057:0816bcaebc8c

(struct buffer): Remove prompt_end_charpos field.
author Gerd Moellmann <gerd@gnu.org>
date Sun, 17 Oct 1999 12:53:48 +0000
parents 20d4d2a42062
children c3c9cc1c2379
comparison
equal deleted inserted replaced
26056:9c4556ef15de 26057:0816bcaebc8c
1 /* Header file for the buffer manipulation primitives. 1 /* Header file for the buffer manipulation primitives.
2 Copyright (C) 1985, 86, 93, 94, 95, 97, 1998 Free Software Foundation, Inc. 2 Copyright (C) 1985, 86, 93, 94, 95, 97, 1998, 1999 Free Software Foundation, Inc.
3 3
4 This file is part of GNU Emacs. 4 This file is part of GNU Emacs.
5 5
6 GNU Emacs is free software; you can redistribute it and/or modify 6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
543 543
544 /* Everything from here down must be a Lisp_Object */ 544 /* Everything from here down must be a Lisp_Object */
545 545
546 /* The name of this buffer. */ 546 /* The name of this buffer. */
547 Lisp_Object name; 547 Lisp_Object name;
548
549 /* Character position at the end of a mini-buffer prompt, or or
550 nil if this buffer is not a mini-buffer. */
551 Lisp_Object prompt_end_charpos;
552 548
553 /* The name of the file visited in this buffer, or nil. */ 549 /* The name of the file visited in this buffer, or nil. */
554 Lisp_Object filename; 550 Lisp_Object filename;
555 /* Dir for expanding relative file names. */ 551 /* Dir for expanding relative file names. */
556 Lisp_Object directory; 552 Lisp_Object directory;