annotate src/buffer.h @ 9951:586bb1122715

(OVERLAY_POSITION): Use the new type-test macros.
author Karl Heuer <kwzh@gnu.org>
date Tue, 15 Nov 1994 23:55:03 +0000
parents b039e4156d74
children b0f6fc3f80b1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 /* Header file for the buffer manipulation primitives.
7307
cd81dba38a49 Update copyright.
Karl Heuer <kwzh@gnu.org>
parents: 6786
diff changeset
2 Copyright (C) 1985, 1986, 1993, 1994 Free Software Foundation, Inc.
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4 This file is part of GNU Emacs.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
998
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 any later version.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 GNU General Public License for more details.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 along with GNU Emacs; see the file COPYING. If not, write to
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20
1286
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
21 #ifdef USE_TEXT_PROPERTIES
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
22 #define SET_PT(position) (set_point ((position), current_buffer))
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
23 #define TEMP_SET_PT(position) (temp_set_point ((position), current_buffer))
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
24
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
25 #define BUF_SET_PT(buffer, position) (set_point ((position), (buffer)))
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
26 #define BUF_TEMP_SET_PT(buffer, position) (temp_set_point ((position), (buffer)))
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
27
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
28 #else /* don't support text properties */
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
29
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
30 #define SET_PT(position) (current_buffer->text.pt = (position))
1286
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
31 #define TEMP_SET_PT(position) (current_buffer->text.pt = (position))
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
32
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
33 #define BUF_SET_PT(buffer, position) (buffer->text.pt = (position))
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
34 #define BUF_TEMP_SET_PT(buffer, position) (buffer->text.pt = (position))
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
35 #endif /* don't support text properties */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
36
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
37 /* Character position of beginning of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
38 #define BEG (1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
39
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
40 /* Character position of beginning of accessible range of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
41 #define BEGV (current_buffer->text.begv)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
42
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
43 /* Character position of point in buffer. The "+ 0" makes this
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
44 not an l-value, so you can't assign to it. Use SET_PT instead. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
45 #define PT (current_buffer->text.pt + 0)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
46
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
47 /* Character position of gap in buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
48 #define GPT (current_buffer->text.gpt)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
49
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
50 /* Character position of end of accessible range of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
51 #define ZV (current_buffer->text.zv)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
52
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
53 /* Character position of end of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
54 #define Z (current_buffer->text.z)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
55
2564
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
56 /* Is the current buffer narrowed? */
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
57 #define NARROWED ((BEGV != BEG) || (ZV != Z))
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
58
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
59 /* Modification count. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
60 #define MODIFF (current_buffer->text.modiff)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
61
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
62 /* Address of beginning of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
63 #define BEG_ADDR (current_buffer->text.beg)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
64
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
65 /* Address of beginning of accessible range of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
66 #define BEGV_ADDR (&FETCH_CHAR (current_buffer->text.begv))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
67
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
68 /* Address of point in buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
69 #define PT_ADDR (&FETCH_CHAR (current_buffer->text.pt))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
70
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
71 /* Address of beginning of gap in buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
72 #define GPT_ADDR (current_buffer->text.beg + current_buffer->text.gpt - 1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
73
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
74 /* Address of end of gap in buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
75 #define GAP_END_ADDR (current_buffer->text.beg + current_buffer->text.gpt + current_buffer->text.gap_size - 1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
76
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
77 /* Address of end of accessible range of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
78 #define ZV_ADDR (&FETCH_CHAR (current_buffer->text.zv))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
79
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
80 /* Size of gap. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
81 #define GAP_SIZE (current_buffer->text.gap_size)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
82
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
83 /* Now similar macros for a specified buffer.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
84 Note that many of these evaluate the buffer argument more than once. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
85
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
86 /* Character position of beginning of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
87 #define BUF_BEG(buf) (1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
88
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
89 /* Character position of beginning of accessible range of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
90 #define BUF_BEGV(buf) ((buf)->text.begv)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
91
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
92 /* Character position of point in buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
93 #define BUF_PT(buf) ((buf)->text.pt)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
94
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
95 /* Character position of gap in buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
96 #define BUF_GPT(buf) ((buf)->text.gpt)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
97
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
98 /* Character position of end of accessible range of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
99 #define BUF_ZV(buf) ((buf)->text.zv)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
100
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
101 /* Character position of end of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
102 #define BUF_Z(buf) ((buf)->text.z)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
103
2564
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
104 /* Is this buffer narrowed? */
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
105 #define BUF_NARROWED(buf) ((BUF_BEGV(buf) != BUF_BEG(buf)) \
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
106 || (BUF_ZV(buf) != BUF_Z(buf)))
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
107
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
108 /* Modification count. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
109 #define BUF_MODIFF(buf) ((buf)->text.modiff)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
110
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
111 /* Address of beginning of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
112 #define BUF_BEG_ADDR(buf) ((buf)->text.beg)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
113
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
114 /* Macro for setting the value of BUF_ZV (BUF) to VALUE,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
115 by varying the end of the accessible region. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
116 #define SET_BUF_ZV(buf, value) ((buf)->text.zv = (value))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
117 #define SET_BUF_PT(buf, value) ((buf)->text.pt = (value))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
118
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
119 /* Size of gap. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
120 #define BUF_GAP_SIZE(buf) ((buf)->text.gap_size)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
121
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
122 /* Return the address of character at position POS in buffer BUF.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
123 Note that both arguments can be computed more than once. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
124 #define BUF_CHAR_ADDRESS(buf, pos) \
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
125 ((buf)->text.beg + (pos) - 1 \
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
126 + ((pos) >= (buf)->text.gpt ? (buf)->text.gap_size : 0))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
127
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
128 /* Convert the address of a char in the buffer into a character position. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
129 #define PTR_CHAR_POS(ptr) \
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
130 ((ptr) - (current_buffer)->text.beg \
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
131 - (ptr - (current_buffer)->text.beg < (unsigned) GPT ? 0 : GAP_SIZE) \
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
132 + 1)
8061
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
133
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
134 /* Convert the address of a char in the buffer into a character position. */
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
135 #define BUF_PTR_CHAR_POS(buf, ptr) \
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
136 ((ptr) - (buf)->text.beg \
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
137 - (ptr - (buf)->text.beg < (unsigned) BUF_GPT ((buf)) \
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
138 ? 0 : BUF_GAP_SIZE ((buf))) \
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
139 + 1)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
140
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
141 struct buffer_text
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
142 {
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
143 unsigned char *beg; /* Actual address of buffer contents. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
144 int begv; /* Index of beginning of accessible range. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
145 int pt; /* Position of point in buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
146 int gpt; /* Index of gap in buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
147 int zv; /* Index of end of accessible range. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
148 int z; /* Index of end of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
149 int gap_size; /* Size of buffer's gap */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
150 int modiff; /* This counts buffer-modification events
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
151 for this buffer. It is incremented for
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
152 each such event, and never otherwise
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
153 changed. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
154 };
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
155
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
156 struct buffer
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
157 {
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
158 /* Everything before the `name' slot must be of a non-Lisp_Object type,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
159 and every slot after `name' must be a Lisp_Object.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
160
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
161 Check out mark_buffer (alloc.c) to see why.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
162 */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
163
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
164 /* This structure holds the coordinates of the buffer contents. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
165 struct buffer_text text;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
166 /* Next buffer, in chain of all buffers including killed buffers.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
167 This chain is used only for garbage collection, in order to
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
168 collect killed buffers properly. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
169 struct buffer *next;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
170 /* Flags saying which DEFVAR_PER_BUFFER variables
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
171 are local to this buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
172 int local_var_flags;
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 193
diff changeset
173 /* Value of text.modiff as of when visited file was read or written. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
174 int save_modified;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
175 /* Set to the modtime of the visited file when read or written.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
176 -1 means visited file was nonexistent.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
177 0 means visited file modtime unknown; in no case complain
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
178 about any mismatch on next save attempt. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
179 int modtime;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
180 /* the value of text.modiff at the last auto-save. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
181 int auto_save_modified;
5557
d3c064f0062e (struct buffer): New field auto_save_failure_time.
Richard M. Stallman <rms@gnu.org>
parents: 5502
diff changeset
182 /* The time at which we detected a failure to auto-save,
d3c064f0062e (struct buffer): New field auto_save_failure_time.
Richard M. Stallman <rms@gnu.org>
parents: 5502
diff changeset
183 Or -1 if we didn't have a failure. */
d3c064f0062e (struct buffer): New field auto_save_failure_time.
Richard M. Stallman <rms@gnu.org>
parents: 5502
diff changeset
184 int auto_save_failure_time;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
185 /* Position in buffer at which display started
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
186 the last time this buffer was displayed */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
187 int last_window_start;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
188
1286
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
189 /* Properties of this buffer's text -- conditionally compiled. */
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
190 DECLARE_INTERVALS
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
191
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
192 /* This is a special exception -- as this slot should not be
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
193 marked by gc_sweep, and as it is not lisp-accessible as
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194 a local variable -- so we regard it as not really being of type
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
195 Lisp_Object */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
196 /* the markers that refer to this buffer.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
197 This is actually a single marker ---
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
198 successive elements in its marker `chain'
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
199 are the other markers referring to this
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
200 buffer */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
201 Lisp_Object markers;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
202
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
203 /* If the long line scan cache is enabled (i.e. the buffer-local
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
204 variable cache-long-line-scans is non-nil), newline_cache
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
205 points to the newline cache, and width_run_cache points to the
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
206 width run cache.
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
207
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
208 The newline cache records which stretches of the buffer are
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
209 known *not* to contain newlines, so that they can be skipped
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
210 quickly when we search for newlines.
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
211
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
212 The width run cache records which stretches of the buffer are
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
213 known to contain characters whose widths are all the same. If
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
214 the width run cache maps a character to a value > 0, that value is
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
215 the character's width; if it maps a character to zero, we don't
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
216 know what its width is. This allows compute_motion to process
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
217 such regions very quickly, using algebra instead of inspecting
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
218 each character. See also width_table, below. */
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
219 struct region_cache *newline_cache;
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
220 struct region_cache *width_run_cache;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
221
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
222 /* Everything from here down must be a Lisp_Object */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
223
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
224
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
225 /* the name of this buffer */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
226 Lisp_Object name;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
227 /* Nuked: buffer number, assigned when buffer made Lisp_Object number;*/
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
228 /* the name of the file associated with this buffer */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
229 Lisp_Object filename;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
230 /* Dir for expanding relative pathnames */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
231 Lisp_Object directory;
6571
ef864f9fd3cc Fix typo in comment.
Karl Heuer <kwzh@gnu.org>
parents: 6098
diff changeset
232 /* true iff this buffer has been backed
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
233 up (if you write to its associated file
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
234 and it hasn't been backed up, then a
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
235 backup will be made) */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
236 /* This isn't really used by the C code, so could be deleted. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
237 Lisp_Object backed_up;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
238 /* Length of file when last read or saved. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
239 Lisp_Object save_length;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
240 /* file name used for auto-saving this buffer */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
241 Lisp_Object auto_save_file_name;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
242 /* Non-nil if buffer read-only */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
243 Lisp_Object read_only;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
244 /* "The mark"; no longer allowed to be nil */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
245 Lisp_Object mark;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
246
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
247 /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
248 for all per-buffer variables of this buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
249 Lisp_Object local_var_alist;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
250
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
251
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
252 /* Symbol naming major mode (eg lisp-mode) */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
253 Lisp_Object major_mode;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
254 /* Pretty name of major mode (eg "Lisp") */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
255 Lisp_Object mode_name;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
256 /* Format string for mode line */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
257 Lisp_Object mode_line_format;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
258
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
259 /* Keys that are bound local to this buffer */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
260 Lisp_Object keymap;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
261 /* This buffer's local abbrev table */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
262 Lisp_Object abbrev_table;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
263 /* This buffer's syntax table. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
264 Lisp_Object syntax_table;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
265
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
266 /* Values of several buffer-local variables */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
267 /* tab-width is buffer-local so that redisplay can find it
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
268 in buffers that are not current */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
269 Lisp_Object case_fold_search;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
270 Lisp_Object tab_width;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
271 Lisp_Object fill_column;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
272 Lisp_Object left_margin;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
273 /* Function to call when insert space past fill column */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
274 Lisp_Object auto_fill_function;
9784
93977a321baa (struct buffer): Test DOS_MT, not MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 9436
diff changeset
275 #ifdef DOS_NT
5502
2b48fd9bc80e [MSDOS]: New buffer-local variable:
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
276 /* nil: text, t: binary. */
2b48fd9bc80e [MSDOS]: New buffer-local variable:
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
277 Lisp_Object buffer_file_type;
9784
93977a321baa (struct buffer): Test DOS_MT, not MSDOS.
Richard M. Stallman <rms@gnu.org>
parents: 9436
diff changeset
278 #endif /* DOS_NT */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
279
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
280 /* String of length 256 mapping each char to its lower-case version. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
281 Lisp_Object downcase_table;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
282 /* String of length 256 mapping each char to its upper-case version. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
283 Lisp_Object upcase_table;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
284
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
285 /* Non-nil means do not display continuation lines */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
286 Lisp_Object truncate_lines;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
287 /* Non-nil means display ctl chars with uparrow */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
288 Lisp_Object ctl_arrow;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
289 /* Non-nil means do selective display;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
290 See doc string in syms_of_buffer (buffer.c) for details. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
291 Lisp_Object selective_display;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
292 #ifndef old
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
293 /* Non-nil means show ... at end of line followed by invisible lines. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
294 Lisp_Object selective_display_ellipses;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
295 #endif
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
296 /* Alist of (FUNCTION . STRING) for each minor mode enabled in buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
297 Lisp_Object minor_modes;
2214
e5928bec8d5d * cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents: 2051
diff changeset
298 /* t if "self-insertion" should overwrite; `binary' if it should also
e5928bec8d5d * cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents: 2051
diff changeset
299 overwrite newlines and tabs - for editing executables and the like. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
300 Lisp_Object overwrite_mode;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
301 /* non-nil means abbrev mode is on. Expand abbrevs automatically. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
302 Lisp_Object abbrev_mode;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
303 /* Display table to use for text in this buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
304 Lisp_Object display_table;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
305 /* Translate table for case-folding search. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
306 Lisp_Object case_canon_table;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
307 /* Inverse translate (equivalence class) table for case-folding search. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
308 Lisp_Object case_eqv_table;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
309 /* Changes in the buffer are recorded here for undo.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
310 t means don't record anything. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
311 Lisp_Object undo_list;
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
312 /* t means the mark and region are currently active. */
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
313 Lisp_Object mark_active;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
314
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
315 /* List of overlays that end at or before the current center,
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
316 in order of end-position. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
317 Lisp_Object overlays_before;
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
318
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
319 /* List of overlays that end after the current center,
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
320 in order of start-position. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
321 Lisp_Object overlays_after;
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
322
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
323 /* Position where the overlay lists are centered. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
324 Lisp_Object overlay_center;
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
325
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
326 /* True if the newline position cache and width run cache are
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
327 enabled. See search.c and indent.c. */
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
328 Lisp_Object cache_long_line_scans;
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
329
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
330 /* If the width run cache is enabled, this table contains the
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
331 character widths width_run_cache (see above) assumes. When we
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
332 do a thorough redisplay, we compare this against the buffer's
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
333 current display table to see whether the display table has
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
334 affected the widths of any characters. If it has, we
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
335 invalidate the width run cache, and re-initialize width_table. */
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
336 Lisp_Object width_table;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
337 };
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
338
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
339 /* This points to the current buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
340
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
341 extern struct buffer *current_buffer;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
342
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
343 /* This structure holds the default values of the buffer-local variables
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
344 that have special slots in each buffer.
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
345 The default value occupies the same slot in this structure
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
346 as an individual buffer's value occupies in that buffer.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
347 Setting the default value also goes through the alist of buffers
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
348 and stores into each buffer that does not say it has a local value. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
349
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
350 extern struct buffer buffer_defaults;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
351
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
352 /* This structure marks which slots in a buffer have corresponding
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
353 default values in buffer_defaults.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
354 Each such slot has a nonzero value in this structure.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
355 The value has only one nonzero bit.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
356
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
357 When a buffer has its own local value for a slot,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
358 the bit for that slot (found in the same slot in this structure)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
359 is turned on in the buffer's local_var_flags slot.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
360
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
361 If a slot in this structure is zero, then even though there may
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
362 be a Lisp-level local variable for the slot, it has no default value,
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363 and the corresponding slot in buffer_defaults is not used. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
364
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
365 extern struct buffer buffer_local_flags;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
366
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
367 /* For each buffer slot, this points to the Lisp symbol name
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
368 for that slot in the current buffer. It is 0 for slots
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
369 that don't have such names. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
370
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
371 extern struct buffer buffer_local_symbols;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
372
998
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
373 /* This structure holds the required types for the values in the
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
374 buffer-local slots. If a slot contains Qnil, then the
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
375 corresponding buffer slot may contain a value of any type. If a
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
376 slot contains an integer, then prospective values' tags must be
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
377 equal to that integer. When a tag does not match, the function
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
378 buffer_slot_type_mismatch will signal an error. The value Qnil may
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
379 always be safely stored in any slot. */
1502
fa4c1f1c744d * buffer.h (Fbuffer_name, Fget_file_buffer): Added external
Jim Blandy <jimb@redhat.com>
parents: 1286
diff changeset
380 extern struct buffer buffer_local_types;
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
381
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
382 /* Point in the current buffer. This is an obsolete alias
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
383 and should be eliminated. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
384 #define point (current_buffer->text.pt + 0)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
385
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
386 /* Return character at position n. No range checking. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
387 #define FETCH_CHAR(n) *(((n)>= GPT ? GAP_SIZE : 0) + (n) + BEG_ADDR - 1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
388
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
389 /* BUFFER_CEILING_OF (resp. BUFFER_FLOOR_OF), when applied to n, return
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
390 the max (resp. min) p such that
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
391
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
392 &FETCH_CHAR (p) - &FETCH_CHAR (n) == p - n */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
393
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
394 #define BUFFER_CEILING_OF(n) (((n) < GPT && GPT < ZV ? GPT : ZV) - 1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
395 #define BUFFER_FLOOR_OF(n) (BEGV <= GPT && GPT <= (n) ? GPT : BEGV)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
396
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
397 extern void reset_buffer ();
8841
ccc781ef6e3a Declare evaporate_overlays.
Karl Heuer <kwzh@gnu.org>
parents: 8061
diff changeset
398 extern void evaporate_overlays ();
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
399
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
400 extern Lisp_Object Fbuffer_name ();
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
401 extern Lisp_Object Fget_file_buffer ();
8847
7327513b377b Declare some functions.
Karl Heuer <kwzh@gnu.org>
parents: 8841
diff changeset
402 extern Lisp_Object Fnext_overlay_change ();
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
403
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
404 /* Functions to call before and after each text change. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
405 extern Lisp_Object Vbefore_change_function;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
406 extern Lisp_Object Vafter_change_function;
6786
25280492d514 (Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 6654
diff changeset
407 extern Lisp_Object Vbefore_change_functions;
25280492d514 (Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 6654
diff changeset
408 extern Lisp_Object Vafter_change_functions;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1596
diff changeset
409 extern Lisp_Object Vfirst_change_hook;
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1596
diff changeset
410 extern Lisp_Object Qfirst_change_hook;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
411
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
412 extern Lisp_Object Vdeactivate_mark;
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
413 extern Lisp_Object Vtransient_mark_mode;
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
414
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
415 /* Overlays */
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
416
6098
b91e19be1513 (OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents: 5557
diff changeset
417 /* 1 if the OV is an overlay object. */
2782
683f4472f1c8 * lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents: 2564
diff changeset
418 #define OVERLAY_VALID(OV) (OVERLAYP (OV))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
419
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
420 /* Return the marker that stands for where OV starts in the buffer. */
9925
b039e4156d74 (OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents: 9784
diff changeset
421 #define OVERLAY_START(OV) (XOVERLAY (OV)->start)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
422
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
423 /* Return the marker that stands for where OV ends in the buffer. */
9925
b039e4156d74 (OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents: 9784
diff changeset
424 #define OVERLAY_END(OV) (XOVERLAY (OV)->end)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
425
6098
b91e19be1513 (OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents: 5557
diff changeset
426 /* Return the actual buffer position for the marker P.
b91e19be1513 (OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents: 5557
diff changeset
427 We assume you know which buffer it's pointing into. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
428
9951
586bb1122715 (OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents: 9925
diff changeset
429 #define OVERLAY_POSITION(P) \
586bb1122715 (OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents: 9925
diff changeset
430 (GC_MARKERP (P) ? marker_position (P) : (abort (), 0))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
431
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
432 /* Allocation of buffer text. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
433
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
434 #ifdef REL_ALLOC
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
435 #define BUFFER_ALLOC(data,size) ((unsigned char *) r_alloc (&data, (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
436 #define BUFFER_REALLOC(data,size) ((unsigned char *) r_re_alloc (&data, (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
437 #define BUFFER_FREE(data) (r_alloc_free (&data))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
438 #define R_ALLOC_DECLARE(var,data) (r_alloc_declare (&var, (data)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
439 #else
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
440 #define BUFFER_ALLOC(data,size) (data = (unsigned char *) malloc ((size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
441 #define BUFFER_REALLOC(data,size) ((unsigned char *) realloc ((data), (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
442 #define BUFFER_FREE(data) (free ((data)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
443 #define R_ALLOC_DECLARE(var,data)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
444 #endif