annotate src/buffer.h @ 16191:7397d7d0ed17

Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Sun, 15 Sep 1996 01:49:08 +0000
parents 45a956359a95
children e07564b5ca82
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.
11235
e6bdaaa6ce1b Update copyright.
Karl Heuer <kwzh@gnu.org>
parents: 11051
diff changeset
2 Copyright (C) 1985, 1986, 1993, 1994, 1995 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
14186
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 13763
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 13763
diff changeset
19 Boston, MA 02111-1307, USA. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21
1286
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
22 #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
23 #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
24 #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
25
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_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
27 #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
28
fbd402838d8d * buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents: 998
diff changeset
29 #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
30
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
31 #define SET_PT(position) (current_buffer->pt = (position))
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
32 #define TEMP_SET_PT(position) (current_buffer->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
33
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
34 #define BUF_SET_PT(buffer, position) (buffer->pt = (position))
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
35 #define BUF_TEMP_SET_PT(buffer, position) (buffer->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
36 #endif /* don't support text properties */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
37
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
38 /* Character position of beginning of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
39 #define BEG (1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
40
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
41 /* Character position of beginning of accessible range of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
42 #define BEGV (current_buffer->begv)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
43
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
44 /* Character position of point in buffer. The "+ 0" makes this
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
45 not an l-value, so you can't assign to it. Use SET_PT instead. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
46 #define PT (current_buffer->pt + 0)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
47
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
48 /* Character position of gap in buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
49 #define GPT (current_buffer->text->gpt)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
50
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
51 /* Character position of end of accessible range of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
52 #define ZV (current_buffer->zv)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
53
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
54 /* Character position of end of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
55 #define Z (current_buffer->text->z)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
56
2564
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
57 /* 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
58 #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
59
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
60 /* Modification count. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
61 #define MODIFF (current_buffer->text->modiff)
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
62
16190
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
63 /* Overlay modification count. */
16191
7397d7d0ed17 Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16190
diff changeset
64 #define OVERLAY_MODIFF (current_buffer->text->overlay_modiff)
16190
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
65
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
66 /* Modification count as of last visit or save. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
67 #define SAVE_MODIFF (current_buffer->text->save_modiff)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
68
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
69 /* Address of beginning of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
70 #define BEG_ADDR (current_buffer->text->beg)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
71
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
72 /* Address of beginning of accessible range of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
73 #define BEGV_ADDR (&FETCH_CHAR (current_buffer->begv))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
74
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
75 /* Address of point in buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
76 #define PT_ADDR (&FETCH_CHAR (current_buffer->pt))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
77
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
78 /* Address of beginning of gap in buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
79 #define GPT_ADDR (current_buffer->text->beg + current_buffer->text->gpt - 1)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
80
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
81 /* Address of end of gap in buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
82 #define GAP_END_ADDR (current_buffer->text->beg + current_buffer->text->gpt + current_buffer->text->gap_size - 1)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
83
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
84 /* Address of end of accessible range of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
85 #define ZV_ADDR (&FETCH_CHAR (current_buffer->zv))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
86
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
87 /* Size of gap. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
88 #define GAP_SIZE (current_buffer->text->gap_size)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
89
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
90 /* Now similar macros for a specified buffer.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
91 Note that many of these evaluate the buffer argument more than once. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
92
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
93 /* Character position of beginning of buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
94 #define BUF_BEG(buf) (1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
95
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
96 /* Character position of beginning of accessible range of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
97 #define BUF_BEGV(buf) ((buf)->begv)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
98
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
99 /* Character position of point in buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
100 #define BUF_PT(buf) ((buf)->pt)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
101
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
102 /* Character position of gap in buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
103 #define BUF_GPT(buf) ((buf)->text->gpt)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
104
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
105 /* Character position of end of accessible range of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
106 #define BUF_ZV(buf) ((buf)->zv)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
107
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
108 /* Character position of end of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
109 #define BUF_Z(buf) ((buf)->text->z)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
110
2564
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
111 /* Is this buffer narrowed? */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
112 #define BUF_NARROWED(buf) ((BUF_BEGV (buf) != BUF_BEG (buf)) \
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
113 || (BUF_ZV (buf) != BUF_Z (buf)))
2564
6fee7500fabd (BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 2390
diff changeset
114
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
115 /* Modification count. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
116 #define BUF_MODIFF(buf) ((buf)->text->modiff)
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
117
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
118 /* Modification count as of last visit or save. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
119 #define BUF_SAVE_MODIFF(buf) ((buf)->text->save_modiff)
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
120
16190
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
121 /* Overlay modification count. */
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
122 #define BUF_OVERLAY_MODIFF(buf) ((buf)->text->overlay_modiff)
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
123
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
124 /* Interval tree of buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
125 #define BUF_INTERVALS(buf) ((buf)->text->intervals)
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
126
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
127 /* Marker chain of buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
128 #define BUF_MARKERS(buf) ((buf)->text->markers)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
129
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
130 /* Address of beginning of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
131 #define BUF_BEG_ADDR(buf) ((buf)->text->beg)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
132
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
133 /* Macro for setting the value of BUF_ZV (BUF) to VALUE,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
134 by varying the end of the accessible region. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
135 #define SET_BUF_ZV(buf, value) ((buf)->zv = (value))
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
136 #define SET_BUF_PT(buf, value) ((buf)->pt = (value))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
137
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
138 /* Size of gap. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
139 #define BUF_GAP_SIZE(buf) ((buf)->text->gap_size)
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 /* Return the address of character at position POS in buffer BUF.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
142 Note that both arguments can be computed more than once. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
143 #define BUF_CHAR_ADDRESS(buf, pos) \
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
144 ((buf)->text->beg + (pos) - 1 \
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
145 + ((pos) >= (buf)->text->gpt ? (buf)->text->gap_size : 0))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
146
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
147 /* Convert the address of a char in the buffer into a character position. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
148 #define PTR_CHAR_POS(ptr) \
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
149 ((ptr) - (current_buffer)->text->beg \
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
150 - (ptr - (current_buffer)->text->beg < (unsigned) GPT ? 0 : GAP_SIZE) \
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
151 + 1)
8061
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
152
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
153 /* 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
154 #define BUF_PTR_CHAR_POS(buf, ptr) \
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
155 ((ptr) - (buf)->text->beg \
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
156 - (ptr - (buf)->text->beg < (unsigned) BUF_GPT ((buf)) \
8061
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
157 ? 0 : BUF_GAP_SIZE ((buf))) \
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
158 + 1)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
159
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
160 struct buffer_text
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
161 {
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
162 unsigned char *beg; /* Actual address of buffer contents. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
163 int gpt; /* Index of gap in buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
164 int z; /* Index of end of buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
165 int gap_size; /* Size of buffer's gap. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
166 int modiff; /* This counts buffer-modification events
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
167 for this buffer. It is incremented for
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
168 each such event, and never otherwise
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
169 changed. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
170 int save_modiff; /* Previous value of modiff, as of last
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
171 time buffer visited or saved a file. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
172
16190
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
173 int overlay_modiff; /* Counts modifications to overlays. */
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
174
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
175 /* Properties of this buffer's text -- conditionally compiled. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
176 DECLARE_INTERVALS
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
177
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
178 /* The markers that refer to this buffer.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
179 This is actually a single marker ---
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
180 successive elements in its marker `chain'
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
181 are the other markers referring to this buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
182 Lisp_Object markers;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
183 };
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
184
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
185 struct buffer
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
186 {
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
187 /* Everything before the `name' slot must be of a non-Lisp_Object type,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
188 and every slot after `name' must be a Lisp_Object.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
189
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
190 Check out mark_buffer (alloc.c) to see why. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
191
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
192 EMACS_INT size;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
193
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194 /* Next buffer, in chain of all buffers including killed buffers.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
195 This chain is used only for garbage collection, in order to
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
196 collect killed buffers properly.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
197 Note that vectors and most pseudovectors are all on one chain,
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
198 but buffers are on a separate chain of their own. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
199 struct buffer *next;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
200
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
201 /* This structure holds the coordinates of the buffer contents
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
202 in ordinary buffers. In indirect buffers, this is not used. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
203 struct buffer_text own_text;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
204
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
205 /* This points to the `struct buffer_text' that used for this buffer.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
206 In an ordinary buffer, this is the own_text field above.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
207 In an indirect buffer, this is the own_text field of another buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
208 struct buffer_text *text;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
209
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
210 /* Position of point in buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
211 int pt;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
212 /* Index of beginning of accessible range. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
213 int begv;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
214 /* Index of end of accessible range. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
215 int zv;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
216
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
217 /* In an indirect buffer, this points to the base buffer.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
218 In an ordinary buffer, it is 0. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
219 struct buffer *base_buffer;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
220
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
221 /* Flags saying which DEFVAR_PER_BUFFER variables
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
222 are local to this buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
223 int local_var_flags;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
224 /* Set to the modtime of the visited file when read or written.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
225 -1 means visited file was nonexistent.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
226 0 means visited file modtime unknown; in no case complain
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
227 about any mismatch on next save attempt. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
228 int modtime;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
229 /* the value of text->modiff at the last auto-save. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
230 int auto_save_modified;
5557
d3c064f0062e (struct buffer): New field auto_save_failure_time.
Richard M. Stallman <rms@gnu.org>
parents: 5502
diff changeset
231 /* 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
232 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
233 int auto_save_failure_time;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
234 /* Position in buffer at which display started
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
235 the last time this buffer was displayed. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
236 int last_window_start;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
237
12471
a188da6410e4 (struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents: 11681
diff changeset
238 /* Set nonzero whenever the narrowing is changed in this buffer. */
a188da6410e4 (struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents: 11681
diff changeset
239 int clip_changed;
a188da6410e4 (struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents: 11681
diff changeset
240
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
241 /* 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
242 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
243 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
244 width run cache.
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
245
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
246 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
247 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
248 quickly when we search for newlines.
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
249
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
250 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
251 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
252 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
253 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
254 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
255 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
256 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
257 struct region_cache *newline_cache;
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
258 struct region_cache *width_run_cache;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
259
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
260 /* Everything from here down must be a Lisp_Object */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
261
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
262
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
263 /* The name of this buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
264 Lisp_Object name;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
265 /* The name of the file visited in this buffer, or nil. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
266 Lisp_Object filename;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
267 /* Dir for expanding relative file names. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
268 Lisp_Object directory;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
269 /* True iff this buffer has been backed up (if you write to the
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
270 visited file and it hasn't been backed up, then a backup will
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
271 be made). */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
272 /* This isn't really used by the C code, so could be deleted. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
273 Lisp_Object backed_up;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
274 /* Length of file when last read or saved.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
275 This is not in the struct buffer_text
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
276 because it's not used in indirect buffers at all. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
277 Lisp_Object save_length;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
278 /* File name used for auto-saving this buffer.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
279 This is not in the struct buffer_text
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
280 because it's not used in indirect buffers at all. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
281 Lisp_Object auto_save_file_name;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
282
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
283 /* Non-nil if buffer read-only. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
284 Lisp_Object read_only;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
285 /* "The mark". This is a marker which may
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
286 point into this buffer or may point nowhere. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
287 Lisp_Object mark;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
288
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
289 /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
290 for all per-buffer variables of this buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
291 Lisp_Object local_var_alist;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
292
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
293 /* Symbol naming major mode (eg, lisp-mode). */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
294 Lisp_Object major_mode;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
295 /* Pretty name of major mode (eg, "Lisp"). */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
296 Lisp_Object mode_name;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
297 /* Mode line element that controls format of mode line. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
298 Lisp_Object mode_line_format;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
299
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
300 /* Keys that are bound local to this buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
301 Lisp_Object keymap;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
302 /* This buffer's local abbrev table. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
303 Lisp_Object abbrev_table;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
304 /* This buffer's syntax table. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
305 Lisp_Object syntax_table;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
306
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
307 /* Values of several buffer-local variables */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
308 /* tab-width is buffer-local so that redisplay can find it
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
309 in buffers that are not current */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
310 Lisp_Object case_fold_search;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
311 Lisp_Object tab_width;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
312 Lisp_Object fill_column;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
313 Lisp_Object left_margin;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
314 /* Function to call when insert space past fill column. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
315 Lisp_Object auto_fill_function;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
316 /* nil: text, t: binary.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
317 This value is meaningful only on certain operating systems. */
5502
2b48fd9bc80e [MSDOS]: New buffer-local variable:
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
318 Lisp_Object buffer_file_type;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
319
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
320 /* Case table for case-conversion in this buffer.
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
321 This char-table maps each char into its lower-case version. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
322 Lisp_Object downcase_table;
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
323 /* Char-table mapping each char to its upper-case version. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324 Lisp_Object upcase_table;
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
325 /* Char-table for conversion for case-folding search. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
326 Lisp_Object case_canon_table;
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
327 /* Char-table of equivalences for case-folding search. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
328 Lisp_Object case_eqv_table;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
329
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
330 /* Non-nil means do not display continuation lines. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
331 Lisp_Object truncate_lines;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
332 /* Non-nil means display ctl chars with uparrow. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
333 Lisp_Object ctl_arrow;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
334 /* Non-nil means do selective display;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
335 see doc string in syms_of_buffer (buffer.c) for details. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
336 Lisp_Object selective_display;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
337 #ifndef old
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
338 /* Non-nil means show ... at end of line followed by invisible lines. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
339 Lisp_Object selective_display_ellipses;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
340 #endif
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
341 /* Alist of (FUNCTION . STRING) for each minor mode enabled in buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
342 Lisp_Object minor_modes;
2214
e5928bec8d5d * cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents: 2051
diff changeset
343 /* 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
344 overwrite newlines and tabs - for editing executables and the like. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
345 Lisp_Object overwrite_mode;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
346 /* non-nil means abbrev mode is on. Expand abbrevs automatically. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
347 Lisp_Object abbrev_mode;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
348 /* Display table to use for text in this buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
349 Lisp_Object display_table;
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
350 /* 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
351 Lisp_Object mark_active;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
352
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
353 /* Changes in the buffer are recorded here for undo.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
354 t means don't record anything.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
355 This information belongs to the base buffer of an indirect buffer,
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
356 But we can't store it in the struct buffer_text
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
357 because local variables have to be right in the struct buffer.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
358 So we copy it around in set_buffer_internal. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
359 Lisp_Object undo_list;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
360
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
361 /* 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
362 in order of end-position. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
363 Lisp_Object overlays_before;
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
364
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
365 /* 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
366 in order of start-position. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
367 Lisp_Object overlays_after;
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
368
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
369 /* Position where the overlay lists are centered. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
370 Lisp_Object overlay_center;
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
371
11051
e1e834b78a79 (struct buffer): Add file_format member.
Boris Goldowsky <boris@gnu.org>
parents: 10966
diff changeset
372 /* Lisp of symbols naming the file format used for visited file. */
e1e834b78a79 (struct buffer): Add file_format member.
Boris Goldowsky <boris@gnu.org>
parents: 10966
diff changeset
373 Lisp_Object file_format;
e1e834b78a79 (struct buffer): Add file_format member.
Boris Goldowsky <boris@gnu.org>
parents: 10966
diff changeset
374
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
375 /* 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
376 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
377 Lisp_Object cache_long_line_scans;
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
378
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
379 /* 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
380 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
381 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
382 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
383 affected the widths of any characters. If it has, we
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
384 invalidate the width run cache, and re-initialize width_table. */
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
385 Lisp_Object width_table;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
386
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
387 /* In an indirect buffer, or a buffer that is the base of an
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
388 indirect buffer, this holds a marker that records
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
389 PT for this buffer when the buffer is not current. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
390 Lisp_Object pt_marker;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
391
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
392 /* In an indirect buffer, or a buffer that is the base of an
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
393 indirect buffer, this holds a marker that records
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
394 BEGV for this buffer when the buffer is not current. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
395 Lisp_Object begv_marker;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
396
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
397 /* In an indirect buffer, or a buffer that is the base of an
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
398 indirect buffer, this holds a marker that records
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
399 ZV for this buffer when the buffer is not current. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
400 Lisp_Object zv_marker;
10562
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
401
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
402 /* This holds the point value before the last scroll operation.
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
403 Explicitly setting point sets this to nil. */
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
404 Lisp_Object point_before_scroll;
10750
7bf07f10bed3 (struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents: 10562
diff changeset
405
7bf07f10bed3 (struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents: 10562
diff changeset
406 /* Truename of the visited file, or nil. */
7bf07f10bed3 (struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents: 10562
diff changeset
407 Lisp_Object file_truename;
10966
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
408
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
409 /* Invisibility spec of this buffer.
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
410 t => any non-nil `invisible' property means invisible.
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
411 A list => `invisible' property means invisible
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
412 if it is memq in that list. */
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
413 Lisp_Object invisibility_spec;
13264
4e7bb697c847 (struct buffer): New slot redisplay_end_trigger.
Richard M. Stallman <rms@gnu.org>
parents: 13239
diff changeset
414
16066
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
415 /* This is the last window that was selected with this buffer in it,
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
416 or nil if that window no longer displays this buffer. */
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
417 Lisp_Object last_selected_window;
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
418
13264
4e7bb697c847 (struct buffer): New slot redisplay_end_trigger.
Richard M. Stallman <rms@gnu.org>
parents: 13239
diff changeset
419 /* These are so we don't have to recompile everything
4e7bb697c847 (struct buffer): New slot redisplay_end_trigger.
Richard M. Stallman <rms@gnu.org>
parents: 13239
diff changeset
420 the next few times we add a new slot. */
16066
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
421 Lisp_Object extra2, extra3;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
422 };
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
423
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
424 /* This points to the current buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
425
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
426 extern struct buffer *current_buffer;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
427
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
428 /* 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
429 that have special slots in each buffer.
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
430 The default value occupies the same slot in this structure
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
431 as an individual buffer's value occupies in that buffer.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
432 Setting the default value also goes through the alist of buffers
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
433 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
434
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
435 extern struct buffer buffer_defaults;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
436
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
437 /* This structure marks which slots in a buffer have corresponding
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
438 default values in buffer_defaults.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
439 Each such slot has a nonzero value in this structure.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
440 The value has only one nonzero bit.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
441
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
442 When a buffer has its own local value for a slot,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
443 the bit for that slot (found in the same slot in this structure)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
444 is turned on in the buffer's local_var_flags slot.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
445
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
446 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
447 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
448 and the corresponding slot in buffer_defaults is not used. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
449
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
450 extern struct buffer buffer_local_flags;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
451
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
452 /* For each buffer slot, this points to the Lisp symbol name
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
453 for that slot in the current buffer. It is 0 for slots
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
454 that don't have such names. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
455
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
456 extern struct buffer buffer_local_symbols;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
457
998
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
458 /* This structure holds the required types for the values in the
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
459 buffer-local slots. If a slot contains Qnil, then the
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
460 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
461 slot contains an integer, then prospective values' tags must be
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
462 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
463 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
464 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
465 extern struct buffer buffer_local_types;
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
466
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
467 /* 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
468 and should be eliminated. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
469 #define point (current_buffer->pt + 0)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
470
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
471 /* Return character at position n. No range checking. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
472 #define FETCH_CHAR(n) *(((n)>= GPT ? GAP_SIZE : 0) + (n) + BEG_ADDR - 1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
473
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
474 /* BUFFER_CEILING_OF (resp. BUFFER_FLOOR_OF), when applied to n, return
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
475 the max (resp. min) p such that
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
476
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
477 &FETCH_CHAR (p) - &FETCH_CHAR (n) == p - n */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
478
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
479 #define BUFFER_CEILING_OF(n) (((n) < GPT && GPT < ZV ? GPT : ZV) - 1)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
480 #define BUFFER_FLOOR_OF(n) (BEGV <= GPT && GPT <= (n) ? GPT : BEGV)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
481
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
482 extern void reset_buffer ();
8841
ccc781ef6e3a Declare evaporate_overlays.
Karl Heuer <kwzh@gnu.org>
parents: 8061
diff changeset
483 extern void evaporate_overlays ();
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
484
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
485 extern Lisp_Object Fbuffer_name ();
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
486 extern Lisp_Object Fget_file_buffer ();
8847
7327513b377b Declare some functions.
Karl Heuer <kwzh@gnu.org>
parents: 8841
diff changeset
487 extern Lisp_Object Fnext_overlay_change ();
11681
a5b15cd1b5ec (Fdelete_overlay): Was mistakenly called Fdelete_overlays.
Richard M. Stallman <rms@gnu.org>
parents: 11261
diff changeset
488 extern Lisp_Object Fdelete_overlay ();
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
489
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
490 /* Functions to call before and after each text change. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
491 extern Lisp_Object Vbefore_change_function;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
492 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
493 extern Lisp_Object Vbefore_change_functions;
25280492d514 (Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 6654
diff changeset
494 extern Lisp_Object Vafter_change_functions;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1596
diff changeset
495 extern Lisp_Object Vfirst_change_hook;
12786
d12f56be7f87 (Qbefore_change_functions, Qafter_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 12471
diff changeset
496 extern Lisp_Object Qbefore_change_functions;
d12f56be7f87 (Qbefore_change_functions, Qafter_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 12471
diff changeset
497 extern Lisp_Object Qafter_change_functions;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1596
diff changeset
498 extern Lisp_Object Qfirst_change_hook;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
500 extern Lisp_Object Vdeactivate_mark;
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
501 extern Lisp_Object Vtransient_mark_mode;
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
502
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
503 /* Overlays */
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
504
6098
b91e19be1513 (OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents: 5557
diff changeset
505 /* 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
506 #define OVERLAY_VALID(OV) (OVERLAYP (OV))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
507
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
508 /* 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
509 #define OVERLAY_START(OV) (XOVERLAY (OV)->start)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
510
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
511 /* 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
512 #define OVERLAY_END(OV) (XOVERLAY (OV)->end)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
513
6098
b91e19be1513 (OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents: 5557
diff changeset
514 /* 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
515 We assume you know which buffer it's pointing into. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
516
9951
586bb1122715 (OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents: 9925
diff changeset
517 #define OVERLAY_POSITION(P) \
586bb1122715 (OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents: 9925
diff changeset
518 (GC_MARKERP (P) ? marker_position (P) : (abort (), 0))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
519
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
520 /* Allocation of buffer text. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
521
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
522 #ifdef REL_ALLOC
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
523 #define BUFFER_ALLOC(data,size) ((unsigned char *) r_alloc (&data, (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
524 #define BUFFER_REALLOC(data,size) ((unsigned char *) r_re_alloc (&data, (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
525 #define BUFFER_FREE(data) (r_alloc_free (&data))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
526 #define R_ALLOC_DECLARE(var,data) (r_alloc_declare (&var, (data)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
527 #else
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
528 #define BUFFER_ALLOC(data,size) (data = (unsigned char *) malloc ((size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
529 #define BUFFER_REALLOC(data,size) ((unsigned char *) realloc ((data), (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
530 #define BUFFER_FREE(data) (free ((data)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
531 #define R_ALLOC_DECLARE(var,data)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
532 #endif