Mercurial > emacs
annotate src/buffer.h @ 39771:a43d7c40a1b2
Byte compiler messages.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Thu, 11 Oct 2001 12:58:24 +0000 |
parents | 4a21ecd55278 |
children | f2d03d1dc242 |
rev | line source |
---|---|
193 | 1 /* Header file for the buffer manipulation primitives. |
37753
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
2 Copyright (C) 1985, 86, 93, 94, 95, 97, 1998, 1999, 2000, 2001 |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
3 Free Software Foundation, Inc. |
193 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
998 | 9 the Free Software Foundation; either version 2, or (at your option) |
193 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 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
|
19 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
|
20 Boston, MA 02111-1307, USA. */ |
193 | 21 |
22 | |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
23 /* Accessing the parameters of the current buffer. */ |
1286
fbd402838d8d
* buffer.h: New macro TEMP_SET_PT. If intervals are used, SET_PT
Joseph Arceneaux <jla@gnu.org>
parents:
998
diff
changeset
|
24 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
25 /* These macros come in pairs, one for the char position |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
26 and one for the byte 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
|
27 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
28 /* Position of beginning of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
29 #define BEG (1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
30 #define BEG_BYTE (1) |
193 | 31 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
32 /* Position of beginning of accessible range of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
33 #define BEGV (current_buffer->begv) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
34 #define BEGV_BYTE (current_buffer->begv_byte) |
193 | 35 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
36 /* Position of point in buffer. The "+ 0" makes this |
193 | 37 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
|
38 #define PT (current_buffer->pt + 0) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
39 #define PT_BYTE (current_buffer->pt_byte + 0) |
193 | 40 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
41 /* 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
|
42 #define GPT (current_buffer->text->gpt) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
43 #define GPT_BYTE (current_buffer->text->gpt_byte) |
193 | 44 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
45 /* 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
|
46 #define ZV (current_buffer->zv) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
47 #define ZV_BYTE (current_buffer->zv_byte) |
193 | 48 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
49 /* 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
|
50 #define Z (current_buffer->text->z) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
51 #define Z_BYTE (current_buffer->text->z_byte) |
193 | 52 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
53 /* Macros for the addresses of places in the buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
54 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
55 /* Address of beginning of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
56 #define BEG_ADDR (current_buffer->text->beg) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
57 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
58 /* Address of beginning of accessible range of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
59 #define BEGV_ADDR (BYTE_POS_ADDR (current_buffer->begv_byte)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
60 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
61 /* Address of point in buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
62 #define PT_ADDR (BYTE_POS_ADDR (current_buffer->pt_byte)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
63 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
64 /* Address of beginning of gap in buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
65 #define GPT_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte - 1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
66 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
67 /* Address of end of gap in buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
68 #define GAP_END_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte + current_buffer->text->gap_size - 1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
69 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
70 /* Address of end of accessible range of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
71 #define ZV_ADDR (BYTE_POS_ADDR (current_buffer->zv_byte)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
72 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
73 /* Address of end of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
74 #define Z_ADDR (current_buffer->text->beg + current_buffer->text->gap_size + current_buffer->text->z_byte - 1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
75 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
76 /* Size of gap. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
77 #define GAP_SIZE (current_buffer->text->gap_size) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
78 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
79 /* Is the current buffer narrowed? */ |
2564
6fee7500fabd
(BUF_NARROWED, NARROWED): New macros to test whether a region
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2390
diff
changeset
|
80 #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
|
81 |
193 | 82 /* Modification count. */ |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
83 #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
|
84 |
16190
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
85 /* Overlay modification count. */ |
16191 | 86 #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
|
87 |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
88 /* 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
|
89 #define SAVE_MODIFF (current_buffer->text->save_modiff) |
193 | 90 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
91 /* BUFFER_CEILING_OF (resp. BUFFER_FLOOR_OF), when applied to n, return |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
92 the max (resp. min) p such that |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
93 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
94 BYTE_POS_ADDR (p) - BYTE_POS_ADDR (n) == p - n */ |
193 | 95 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
96 #define BUFFER_CEILING_OF(BYTEPOS) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
97 (((BYTEPOS) < GPT_BYTE && GPT < ZV ? GPT_BYTE : ZV_BYTE) - 1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
98 #define BUFFER_FLOOR_OF(BYTEPOS) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
99 (BEGV <= GPT && GPT_BYTE <= (BYTEPOS) ? GPT_BYTE : BEGV_BYTE) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
100 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
101 /* Similar macros to operate on a specified buffer. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
102 Note that many of these evaluate the buffer argument more than once. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
103 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
104 /* Position of beginning of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
105 #define BUF_BEG(buf) (1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
106 #define BUF_BEG_BYTE(buf) (1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
107 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
108 /* Position of beginning of accessible range of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
109 #define BUF_BEGV(buf) ((buf)->begv) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
110 #define BUF_BEGV_BYTE(buf) ((buf)->begv_byte) |
193 | 111 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
112 /* Position of point in buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
113 #define BUF_PT(buf) ((buf)->pt) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
114 #define BUF_PT_BYTE(buf) ((buf)->pt_byte) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
115 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
116 /* Position of gap in buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
117 #define BUF_GPT(buf) ((buf)->text->gpt) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
118 #define BUF_GPT_BYTE(buf) ((buf)->text->gpt_byte) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
119 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
120 /* Position of end of accessible range of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
121 #define BUF_ZV(buf) ((buf)->zv) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
122 #define BUF_ZV_BYTE(buf) ((buf)->zv_byte) |
193 | 123 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
124 /* Position of end of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
125 #define BUF_Z(buf) ((buf)->text->z) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
126 #define BUF_Z_BYTE(buf) ((buf)->text->z_byte) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
127 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
128 /* Address of beginning of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
129 #define BUF_BEG_ADDR(buf) ((buf)->text->beg) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
130 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
131 /* Address of beginning of gap of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
132 #define BUF_GPT_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte - 1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
133 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
134 /* Address of end of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
135 #define BUF_Z_ADDR(buf) ((buf)->text->beg + (buf)->text->gap_size + (buf)->text->z_byte - 1) |
193 | 136 |
137 /* Address of end of gap in buffer. */ | |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
138 #define BUF_GAP_END_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte + (buf)->text->gap_size - 1) |
193 | 139 |
140 /* Size of gap. */ | |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
141 #define BUF_GAP_SIZE(buf) ((buf)->text->gap_size) |
193 | 142 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
143 /* Is this buffer narrowed? */ |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
144 #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
|
145 || (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
|
146 |
193 | 147 /* Modification count. */ |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
148 #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
|
149 |
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
150 /* 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
|
151 #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
|
152 |
16190
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
153 /* Overlay modification count. */ |
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
154 #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
|
155 |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
156 /* Interval tree of buffer. */ |
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
157 #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
|
158 |
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
159 /* Marker chain of buffer. */ |
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
160 #define BUF_MARKERS(buf) ((buf)->text->markers) |
25369
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
161 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
162 #define BUF_UNCHANGED_MODIFIED(buf) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
163 ((buf)->text->unchanged_modified) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
164 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
165 #define BUF_OVERLAY_UNCHANGED_MODIFIED(buf) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
166 ((buf)->text->overlay_unchanged_modified) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
167 #define BUF_BEG_UNCHANGED(buf) ((buf)->text->beg_unchanged) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
168 #define BUF_END_UNCHANGED(buf) ((buf)->text->end_unchanged) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
169 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
170 #define UNCHANGED_MODIFIED \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
171 BUF_UNCHANGED_MODIFIED (current_buffer) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
172 #define OVERLAY_UNCHANGED_MODIFIED \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
173 BUF_OVERLAY_UNCHANGED_MODIFIED (current_buffer) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
174 #define BEG_UNCHANGED BUF_BEG_UNCHANGED (current_buffer) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
175 #define END_UNCHANGED BUF_END_UNCHANGED (current_buffer) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
176 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
177 /* Compute how many characters at the top and bottom of BUF are |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
178 unchanged when the range START..END is modified. This computation |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
179 must be done each time BUF is modified. */ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
180 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
181 #define BUF_COMPUTE_UNCHANGED(buf, start, end) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
182 do \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
183 { \ |
39320
4a21ecd55278
(BUF_COMPUTE_UNCHANGED): Use BUF_MODIFF and
Gerd Moellmann <gerd@gnu.org>
parents:
37753
diff
changeset
|
184 if (BUF_UNCHANGED_MODIFIED (buf) == BUF_MODIFF (buf) \ |
4a21ecd55278
(BUF_COMPUTE_UNCHANGED): Use BUF_MODIFF and
Gerd Moellmann <gerd@gnu.org>
parents:
37753
diff
changeset
|
185 && (BUF_OVERLAY_UNCHANGED_MODIFIED (buf) \ |
4a21ecd55278
(BUF_COMPUTE_UNCHANGED): Use BUF_MODIFF and
Gerd Moellmann <gerd@gnu.org>
parents:
37753
diff
changeset
|
186 == BUF_OVERLAY_MODIFF (buf))) \ |
25369
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
187 { \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
188 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
189 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
190 } \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
191 else \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
192 { \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
193 if (BUF_Z (buf) - (end) < BUF_END_UNCHANGED (buf)) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
194 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
195 if ((start) - BUF_BEG (buf) < BUF_BEG_UNCHANGED (buf)) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
196 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
197 } \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
198 } \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
199 while (0) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
200 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
201 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
202 /* Macros to set PT in the current buffer, or another buffer.. */ |
193 | 203 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
204 #define SET_PT(position) (set_point (current_buffer, (position))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
205 #define TEMP_SET_PT(position) (temp_set_point (current_buffer, (position))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
206 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
207 #define SET_PT_BOTH(position, byte) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
208 (set_point_both (current_buffer, (position), (byte))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
209 #define TEMP_SET_PT_BOTH(position, byte) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
210 (temp_set_point_both (current_buffer, (position), (byte))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
211 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
212 #define BUF_SET_PT(buffer, position) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
213 (set_point ((buffer), (position))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
214 #define BUF_TEMP_SET_PT(buffer, position) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
215 (temp_set_point ((buffer), (position))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
216 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
217 extern void set_point P_ ((struct buffer *, int)); |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
218 extern INLINE void temp_set_point P_ ((struct buffer *, int)); |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
219 extern void set_point_both P_ ((struct buffer *, int, int)); |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
220 extern INLINE void temp_set_point_both P_ ((struct buffer *, int, int)); |
31605
c3073b2c8dfa
(BUFFER_ALLOC, BUFFER_REALLOC, BUFFER_FREE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
31411
diff
changeset
|
221 extern void enlarge_buffer_text P_ ((struct buffer *, int)); |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
222 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
223 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
224 /* Macros for setting the BEGV, ZV or PT of a given buffer. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
225 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
226 SET_BUF_PT* seet to be redundant. Get rid of them? |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
227 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
228 The ..._BOTH macros take both a charpos and a bytepos, |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
229 which must correspond to each other. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
230 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
231 The macros without ..._BOTH take just a charpos, |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
232 and compute the bytepos from it. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
233 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
234 #define SET_BUF_BEGV(buf, charpos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
235 ((buf)->begv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
236 (buf)->begv = (charpos)) |
17023
78f7b873184b
(BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents:
16442
diff
changeset
|
237 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
238 #define SET_BUF_ZV(buf, charpos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
239 ((buf)->zv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
240 (buf)->zv = (charpos)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
241 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
242 #define SET_BUF_BEGV_BOTH(buf, charpos, byte) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
243 ((buf)->begv = (charpos), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
244 (buf)->begv_byte = (byte)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
245 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
246 #define SET_BUF_ZV_BOTH(buf, charpos, byte) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
247 ((buf)->zv = (charpos), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
248 (buf)->zv_byte = (byte)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
249 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
250 #define SET_BUF_PT_BOTH(buf, charpos, byte) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
251 ((buf)->pt = (charpos), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
252 (buf)->pt_byte = (byte)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
253 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
254 /* Macros to access a character or byte in the current buffer, |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
255 or convert between a byte position and an address. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
256 These macros do not check that the position is in range. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
257 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
258 /* Access a Lisp position value in POS, |
31219 | 259 and store the charpos in CHARPOS and the bytepos in BYTEPOS. */ |
17023
78f7b873184b
(BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents:
16442
diff
changeset
|
260 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
261 #define DECODE_POSITION(charpos, bytepos, pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
262 if (1) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
263 { \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
264 Lisp_Object __pos = (pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
265 if (NUMBERP (__pos)) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
266 { \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
267 charpos = __pos; \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
268 bytepos = buf_charpos_to_bytepos (current_buffer, __pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
269 } \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
270 else if (MARKERP (__pos)) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
271 { \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
272 charpos = marker_position (__pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
273 bytepos = marker_byte_position (__pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
274 } \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
275 else \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
276 wrong_type_argument (Qinteger_or_marker_p, __pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
277 } \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
278 else |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
279 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
280 /* Return the address of byte position N in current buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
281 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
282 #define BYTE_POS_ADDR(n) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
283 (((n) >= GPT_BYTE ? GAP_SIZE : 0) + (n) + BEG_ADDR - 1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
284 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
285 /* Return the address of char position N. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
286 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
287 #define CHAR_POS_ADDR(n) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
288 (((n) >= GPT ? GAP_SIZE : 0) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
289 + buf_charpos_to_bytepos (current_buffer, n) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
290 + BEG_ADDR - 1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
291 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
292 /* Convert a character position to a byte position. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
293 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
294 #define CHAR_TO_BYTE(charpos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
295 (buf_charpos_to_bytepos (current_buffer, charpos)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
296 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
297 /* Convert a byte position to a character position. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
298 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
299 #define BYTE_TO_CHAR(bytepos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
300 (buf_bytepos_to_charpos (current_buffer, bytepos)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
301 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
302 /* Convert PTR, the address of a byte in the buffer, into a byte position. */ |
193 | 303 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
304 #define PTR_BYTE_POS(ptr) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
305 ((ptr) - (current_buffer)->text->beg \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
306 - (ptr - (current_buffer)->text->beg < (unsigned) GPT_BYTE ? 0 : GAP_SIZE) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
307 + 1) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
308 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
309 /* Return character at position POS. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
310 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
311 #define FETCH_CHAR(pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
312 (!NILP (current_buffer->enable_multibyte_characters) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
313 ? FETCH_MULTIBYTE_CHAR ((pos)) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
314 : FETCH_BYTE ((pos))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
315 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
316 /* Return the byte at byte position N. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
317 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
318 #define FETCH_BYTE(n) *(BYTE_POS_ADDR ((n))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
319 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
320 /* Variables used locally in FETCH_MULTIBYTE_CHAR. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
321 extern unsigned char *_fetch_multibyte_char_p; |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
322 extern int _fetch_multibyte_char_len; |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
323 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
324 /* Return character code of multi-byte form at position POS. If POS |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
325 doesn't point the head of valid multi-byte form, only the byte at |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
326 POS is returned. No range checking. */ |
193 | 327 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
328 #define FETCH_MULTIBYTE_CHAR(pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
329 (_fetch_multibyte_char_p = (((pos) >= GPT_BYTE ? GAP_SIZE : 0) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
330 + (pos) + BEG_ADDR - 1), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
331 _fetch_multibyte_char_len \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
332 = ((pos) >= GPT_BYTE ? ZV_BYTE : GPT_BYTE) - (pos), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
333 STRING_CHAR (_fetch_multibyte_char_p, _fetch_multibyte_char_len)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
334 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
335 /* Macros for accessing a character or byte, |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
336 or converting between byte positions and addresses, |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
337 in a specified buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
338 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
339 /* Return the address of character at byte position POS in buffer BUF. |
193 | 340 Note that both arguments can be computed more than once. */ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
341 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
342 #define BUF_BYTE_ADDRESS(buf, pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
343 ((buf)->text->beg + (pos) - 1 \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
344 + ((pos) >= (buf)->text->gpt_byte ? (buf)->text->gap_size : 0)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
345 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
346 /* Return the address of character at char position POS in buffer BUF. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
347 Note that both arguments can be computed more than once. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
348 |
193 | 349 #define BUF_CHAR_ADDRESS(buf, pos) \ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
350 ((buf)->text->beg + buf_charpos_to_bytepos ((buf), (pos)) - 1 \ |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
351 + ((pos) >= (buf)->text->gpt ? (buf)->text->gap_size : 0)) |
193 | 352 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
353 /* Convert PTR, the address of a char in buffer BUF, |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
354 into a character position. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
355 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
356 #define BUF_PTR_BYTE_POS(buf, ptr) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
357 ((ptr) - (buf)->text->beg \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
358 - (ptr - (buf)->text->beg < (unsigned) BUF_GPT_BYTE ((buf)) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
359 ? 0 : BUF_GAP_SIZE ((buf))) \ |
193 | 360 + 1) |
8061
ce94573db44d
(BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
361 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
362 /* Return the character at byte position POS in buffer BUF. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
363 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
364 #define BUF_FETCH_CHAR(buf, pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
365 (!NILP (buf->enable_multibyte_characters) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
366 ? BUF_FETCH_MULTIBYTE_CHAR ((buf), (pos)) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
367 : BUF_FETCH_BYTE ((buf), (pos))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
368 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
369 /* Return the byte at byte position N in buffer BUF. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
370 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
371 #define BUF_FETCH_BYTE(buf, n) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
372 *(BUF_BYTE_ADDRESS ((buf), (n))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
373 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
374 /* Return character code of multi-byte form at byte position POS in BUF. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
375 If POS doesn't point the head of valid multi-byte form, only the byte at |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
376 POS is returned. No range checking. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
377 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
378 #define BUF_FETCH_MULTIBYTE_CHAR(buf, pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
379 (_fetch_multibyte_char_p \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
380 = (((pos) >= BUF_GPT_BYTE (buf) ? BUF_GAP_SIZE (buf) : 0) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
381 + (pos) + BUF_BEG_ADDR (buf) - 1), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
382 _fetch_multibyte_char_len \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
383 = (((pos) >= BUF_GPT_BYTE (buf) ? BUF_ZV_BYTE (buf) : BUF_GPT_BYTE (buf)) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
384 - (pos)), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
385 STRING_CHAR (_fetch_multibyte_char_p, _fetch_multibyte_char_len)) |
193 | 386 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
387 /* Define the actual buffer data structures. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
388 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
389 /* This data structure describes the actual text contents of a buffer. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
390 It is shared between indirect buffers and their base buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
391 |
193 | 392 struct buffer_text |
393 { | |
26486
b16a6381a87b
(struct buffer_text): Add comment about moving
Gerd Moellmann <gerd@gnu.org>
parents:
26404
diff
changeset
|
394 /* Actual address of buffer contents. If REL_ALLOC is defined, |
b16a6381a87b
(struct buffer_text): Add comment about moving
Gerd Moellmann <gerd@gnu.org>
parents:
26404
diff
changeset
|
395 this address might change when blocks are relocated which can |
b16a6381a87b
(struct buffer_text): Add comment about moving
Gerd Moellmann <gerd@gnu.org>
parents:
26404
diff
changeset
|
396 e.g. happen when malloc is called. So, don't pass a pointer |
b16a6381a87b
(struct buffer_text): Add comment about moving
Gerd Moellmann <gerd@gnu.org>
parents:
26404
diff
changeset
|
397 into a buffer's text to functions that malloc. */ |
b16a6381a87b
(struct buffer_text): Add comment about moving
Gerd Moellmann <gerd@gnu.org>
parents:
26404
diff
changeset
|
398 unsigned char *beg; |
b16a6381a87b
(struct buffer_text): Add comment about moving
Gerd Moellmann <gerd@gnu.org>
parents:
26404
diff
changeset
|
399 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
400 int gpt; /* Char pos of gap in buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
401 int z; /* Char pos of end of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
402 int gpt_byte; /* Byte pos of gap in buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
403 int z_byte; /* Byte pos of end of buffer. */ |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
404 int gap_size; /* Size of buffer's gap. */ |
193 | 405 int modiff; /* This counts buffer-modification events |
406 for this buffer. It is incremented for | |
407 each such event, and never otherwise | |
408 changed. */ | |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
409 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
|
410 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
|
411 |
16190
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
412 int overlay_modiff; /* Counts modifications to overlays. */ |
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
413 |
25369
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
414 /* Minimum value of GPT - BEG since last redisplay that finished. */ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
415 int beg_unchanged; |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
416 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
417 /* Minimum value of Z - GPT since last redisplay that finished. */ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
418 int end_unchanged; |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
419 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
420 /* MODIFF as of last redisplay that finished; if it matches MODIFF, |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
421 beg_unchanged and end_unchanged contain no useful information. */ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
422 int unchanged_modified; |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
423 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
424 /* BUF_OVERLAY_MODIFF of current buffer, as of last redisplay that |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
425 finished; if it matches BUF_OVERLAY_MODIFF, beg_unchanged and |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
426 end_unchanged contain no useful information. */ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
427 int overlay_unchanged_modified; |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
428 |
30910 | 429 /* Properties of this buffer's text. */ |
430 INTERVAL intervals; | |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
431 |
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
432 /* 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
|
433 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
|
434 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
|
435 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
|
436 Lisp_Object markers; |
193 | 437 }; |
438 | |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
439 /* This is the structure that the buffer Lisp object points to. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
440 |
193 | 441 struct buffer |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
442 { |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
443 /* Everything before the `name' slot must be of a non-Lisp_Object type, |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
444 and every slot after `name' must be a Lisp_Object. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
445 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
446 Check out mark_buffer (alloc.c) to see why. */ |
193 | 447 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
448 EMACS_INT size; |
193 | 449 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
450 /* Next buffer, in chain of all buffers including killed buffers. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
451 This chain is used only for garbage collection, in order to |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
452 collect killed buffers properly. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
453 Note that vectors and most pseudovectors are all on one chain, |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
454 but buffers are on a separate chain of their own. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
455 struct buffer *next; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
456 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
457 /* This structure holds the coordinates of the buffer contents |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
458 in ordinary buffers. In indirect buffers, this is not used. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
459 struct buffer_text own_text; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
460 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
461 /* This points to the `struct buffer_text' that used for this buffer. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
462 In an ordinary buffer, this is the own_text field above. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
463 In an indirect buffer, this is the own_text field of another buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
464 struct buffer_text *text; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
465 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
466 /* Char position of point in buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
467 int pt; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
468 /* Byte position of point in buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
469 int pt_byte; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
470 /* Char position of beginning of accessible range. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
471 int begv; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
472 /* Byte position of beginning of accessible range. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
473 int begv_byte; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
474 /* Char position of end of accessible range. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
475 int zv; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
476 /* Byte position of end of accessible range. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
477 int zv_byte; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
478 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
479 /* In an indirect buffer, this points to the base buffer. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
480 In an ordinary buffer, it is 0. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
481 struct buffer *base_buffer; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
482 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
483 /* A non-zero value in slot IDX means that per-buffer variable |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
484 with index IDX has a local value in this buffer. The index IDX |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
485 for a buffer-local variable is stored in that variable's slot |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
486 in buffer_local_flags as a Lisp integer. If the index is -1, |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
487 this means the variable is always local in all buffers. */ |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
488 #define MAX_PER_BUFFER_VARS 50 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
489 char local_flags[MAX_PER_BUFFER_VARS]; |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
490 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
491 /* Set to the modtime of the visited file when read or written. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
492 -1 means visited file was nonexistent. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
493 0 means visited file modtime unknown; in no case complain |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
494 about any mismatch on next save attempt. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
495 int modtime; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
496 /* the value of text->modiff at the last auto-save. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
497 int auto_save_modified; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
498 /* The time at which we detected a failure to auto-save, |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
499 Or -1 if we didn't have a failure. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
500 int auto_save_failure_time; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
501 /* Position in buffer at which display started |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
502 the last time this buffer was displayed. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
503 int last_window_start; |
193 | 504 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
505 /* Set nonzero whenever the narrowing is changed in this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
506 int clip_changed; |
12471
a188da6410e4
(struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents:
11681
diff
changeset
|
507 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
508 /* If the long line scan cache is enabled (i.e. the buffer-local |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
509 variable cache-long-line-scans is non-nil), newline_cache |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
510 points to the newline cache, and width_run_cache points to the |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
511 width run cache. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
512 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
513 The newline cache records which stretches of the buffer are |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
514 known *not* to contain newlines, so that they can be skipped |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
515 quickly when we search for newlines. |
9404
698990d4feca
* buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents:
8847
diff
changeset
|
516 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
517 The width run cache records which stretches of the buffer are |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
518 known to contain characters whose widths are all the same. If |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
519 the width run cache maps a character to a value > 0, that value is |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
520 the character's width; if it maps a character to zero, we don't |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
521 know what its width is. This allows compute_motion to process |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
522 such regions very quickly, using algebra instead of inspecting |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
523 each character. See also width_table, below. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
524 struct region_cache *newline_cache; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
525 struct region_cache *width_run_cache; |
9404
698990d4feca
* buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents:
8847
diff
changeset
|
526 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
527 /* Non-zero means don't use redisplay optimizations for |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
528 displaying this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
529 unsigned prevent_redisplay_optimizations_p : 1; |
193 | 530 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
531 /* Changes in the buffer are recorded here for undo. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
532 t means don't record anything. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
533 This information belongs to the base buffer of an indirect buffer, |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
534 But we can't store it in the struct buffer_text |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
535 because local variables have to be right in the struct buffer. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
536 So we copy it around in set_buffer_internal. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
537 This comes before `name' because it is marked in a special way. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
538 Lisp_Object undo_list; |
25369
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
539 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
540 /* Everything from here down must be a Lisp_Object */ |
21305
c26bceb68019
(struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents:
20994
diff
changeset
|
541 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
542 /* The name of this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
543 Lisp_Object name; |
25019 | 544 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
545 /* The name of the file visited in this buffer, or nil. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
546 Lisp_Object filename; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
547 /* Dir for expanding relative file names. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
548 Lisp_Object directory; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
549 /* True iff this buffer has been backed up (if you write to the |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
550 visited file and it hasn't been backed up, then a backup will |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
551 be made). */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
552 /* This isn't really used by the C code, so could be deleted. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
553 Lisp_Object backed_up; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
554 /* Length of file when last read or saved. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
555 This is not in the struct buffer_text |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
556 because it's not used in indirect buffers at all. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
557 Lisp_Object save_length; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
558 /* File name used for auto-saving this buffer. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
559 This is not in the struct buffer_text |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
560 because it's not used in indirect buffers at all. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
561 Lisp_Object auto_save_file_name; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
562 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
563 /* Non-nil if buffer read-only. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
564 Lisp_Object read_only; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
565 /* "The mark". This is a marker which may |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
566 point into this buffer or may point nowhere. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
567 Lisp_Object mark; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
568 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
569 /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER) |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
570 for all per-buffer variables of this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
571 Lisp_Object local_var_alist; |
193 | 572 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
573 /* Symbol naming major mode (eg, lisp-mode). */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
574 Lisp_Object major_mode; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
575 /* Pretty name of major mode (eg, "Lisp"). */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
576 Lisp_Object mode_name; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
577 /* Mode line element that controls format of mode line. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
578 Lisp_Object mode_line_format; |
25019 | 579 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
580 /* Analogous to mode_line_format for the line displayed at the top |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
581 of windows. Nil means don't display that line. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
582 Lisp_Object header_line_format; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
583 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
584 /* Keys that are bound local to this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
585 Lisp_Object keymap; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
586 /* This buffer's local abbrev table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
587 Lisp_Object abbrev_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
588 /* This buffer's syntax table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
589 Lisp_Object syntax_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
590 /* This buffer's category table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
591 Lisp_Object category_table; |
193 | 592 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
593 /* Values of several buffer-local variables */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
594 /* tab-width is buffer-local so that redisplay can find it |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
595 in buffers that are not current */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
596 Lisp_Object case_fold_search; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
597 Lisp_Object tab_width; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
598 Lisp_Object fill_column; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
599 Lisp_Object left_margin; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
600 /* Function to call when insert space past fill column. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
601 Lisp_Object auto_fill_function; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
602 /* nil: text, t: binary. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
603 This value is meaningful only on certain operating systems. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
604 /* Actually, we don't need this flag any more because end-of-line |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
605 is handled correctly according to the buffer-file-coding-system |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
606 of the buffer. Just keeping it for backward compatibility. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
607 Lisp_Object buffer_file_type; |
193 | 608 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
609 /* Case table for case-conversion in this buffer. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
610 This char-table maps each char into its lower-case version. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
611 Lisp_Object downcase_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
612 /* Char-table mapping each char to its upper-case version. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
613 Lisp_Object upcase_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
614 /* Char-table for conversion for case-folding search. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
615 Lisp_Object case_canon_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
616 /* Char-table of equivalences for case-folding search. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
617 Lisp_Object case_eqv_table; |
193 | 618 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
619 /* Non-nil means do not display continuation lines. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
620 Lisp_Object truncate_lines; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
621 /* Non-nil means display ctl chars with uparrow. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
622 Lisp_Object ctl_arrow; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
623 /* Non-nil means display text from right to left. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
624 Lisp_Object direction_reversed; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
625 /* Non-nil means do selective display; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
626 see doc string in syms_of_buffer (buffer.c) for details. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
627 Lisp_Object selective_display; |
193 | 628 #ifndef old |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
629 /* Non-nil means show ... at end of line followed by invisible lines. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
630 Lisp_Object selective_display_ellipses; |
193 | 631 #endif |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
632 /* Alist of (FUNCTION . STRING) for each minor mode enabled in buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
633 Lisp_Object minor_modes; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
634 /* t if "self-insertion" should overwrite; `binary' if it should also |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
635 overwrite newlines and tabs - for editing executables and the like. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
636 Lisp_Object overwrite_mode; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
637 /* non-nil means abbrev mode is on. Expand abbrevs automatically. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
638 Lisp_Object abbrev_mode; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
639 /* Display table to use for text in this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
640 Lisp_Object display_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
641 /* t means the mark and region are currently active. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
642 Lisp_Object mark_active; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
643 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
644 /* List of overlays that end at or before the current center, |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
645 in order of end-position. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
646 Lisp_Object overlays_before; |
193 | 647 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
648 /* List of overlays that end after the current center, |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
649 in order of start-position. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
650 Lisp_Object overlays_after; |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
651 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
652 /* Position where the overlay lists are centered. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
653 Lisp_Object overlay_center; |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
654 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
655 /* Non-nil means the buffer contents are regarded as multi-byte |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
656 form of characters, not a binary code. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
657 Lisp_Object enable_multibyte_characters; |
9404
698990d4feca
* buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents:
8847
diff
changeset
|
658 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
659 /* Coding system to be used for encoding the buffer contents on |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
660 saving. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
661 Lisp_Object buffer_file_coding_system; |
17023
78f7b873184b
(BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents:
16442
diff
changeset
|
662 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
663 /* List of symbols naming the file format used for visited file. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
664 Lisp_Object file_format; |
18179
371736608f2f
(struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
17219
diff
changeset
|
665 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
666 /* True if the newline position cache and width run cache are |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
667 enabled. See search.c and indent.c. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
668 Lisp_Object cache_long_line_scans; |
9404
698990d4feca
* buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents:
8847
diff
changeset
|
669 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
670 /* If the width run cache is enabled, this table contains the |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
671 character widths width_run_cache (see above) assumes. When we |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
672 do a thorough redisplay, we compare this against the buffer's |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
673 current display table to see whether the display table has |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
674 affected the widths of any characters. If it has, we |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
675 invalidate the width run cache, and re-initialize width_table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
676 Lisp_Object width_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
677 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
678 /* In an indirect buffer, or a buffer that is the base of an |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
679 indirect buffer, this holds a marker that records |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
680 PT for this buffer when the buffer is not current. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
681 Lisp_Object pt_marker; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
682 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
683 /* In an indirect buffer, or a buffer that is the base of an |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
684 indirect buffer, this holds a marker that records |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
685 BEGV for this buffer when the buffer is not current. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
686 Lisp_Object begv_marker; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
687 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
688 /* In an indirect buffer, or a buffer that is the base of an |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
689 indirect buffer, this holds a marker that records |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
690 ZV for this buffer when the buffer is not current. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
691 Lisp_Object zv_marker; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
692 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
693 /* This holds the point value before the last scroll operation. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
694 Explicitly setting point sets this to nil. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
695 Lisp_Object point_before_scroll; |
10562
ddc863fd062b
(struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents:
10310
diff
changeset
|
696 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
697 /* Truename of the visited file, or nil. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
698 Lisp_Object file_truename; |
10750
7bf07f10bed3
(struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents:
10562
diff
changeset
|
699 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
700 /* Invisibility spec of this buffer. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
701 t => any non-nil `invisible' property means invisible. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
702 A list => `invisible' property means invisible |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
703 if it is memq in that list. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
704 Lisp_Object invisibility_spec; |
10966
e55f4cc120b6
(struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents:
10750
diff
changeset
|
705 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
706 /* This is the last window that was selected with this buffer in it, |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
707 or nil if that window no longer displays this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
708 Lisp_Object last_selected_window; |
16066
2f421cfff6cc
(strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
709 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
710 /* Incremented each time the buffer is displayed in a window. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
711 Lisp_Object display_count; |
17219
e3db9264789e
(struct buffer): New field display_count.
Richard M. Stallman <rms@gnu.org>
parents:
17023
diff
changeset
|
712 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
713 /* Widths of left and right marginal areas for windows displaying |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
714 this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
715 Lisp_Object left_margin_width, right_margin_width; |
25019 | 716 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
717 /* Non-nil means indicate lines not displaying text (in a style |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
718 like vi). */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
719 Lisp_Object indicate_empty_lines; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
720 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
721 /* Time stamp updated each time this buffer is displayed in a window. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
722 Lisp_Object display_time; |
25019 | 723 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
724 /* If scrolling the display because point is below the bottom of a |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
725 window showing this buffer, try to choose a window start so |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
726 that point ends up this number of lines from the top of the |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
727 window. Nil means that scrolling method isn't used. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
728 Lisp_Object scroll_up_aggressively; |
25019 | 729 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
730 /* If scrolling the display because point is above the top of a |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
731 window showing this buffer, try to choose a window start so |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
732 that point ends up this number of lines from the bottom of the |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
733 window. Nil means that scrolling method isn't used. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
734 Lisp_Object scroll_down_aggressively; |
25019 | 735 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
736 /* Desired cursor type in this buffer. See the doc string of |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
737 per-buffer variable `cursor-type'. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
738 Lisp_Object cursor_type; |
28345
7d1e7bfa5ae1
(struct buffer): Add cursor_type.
Gerd Moellmann <gerd@gnu.org>
parents:
28317
diff
changeset
|
739 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
740 /* An integer > 0 means put that number of pixels below text lines |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
741 in the display of this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
742 Lisp_Object extra_line_spacing; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
743 }; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
744 |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
745 |
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
746 /* This points to the current buffer. */ |
193 | 747 |
748 extern struct buffer *current_buffer; | |
749 | |
750 /* 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
|
751 that have special slots in each buffer. |
193 | 752 The default value occupies the same slot in this structure |
753 as an individual buffer's value occupies in that buffer. | |
754 Setting the default value also goes through the alist of buffers | |
755 and stores into each buffer that does not say it has a local value. */ | |
756 | |
757 extern struct buffer buffer_defaults; | |
758 | |
759 /* This structure marks which slots in a buffer have corresponding | |
760 default values in buffer_defaults. | |
761 Each such slot has a nonzero value in this structure. | |
762 The value has only one nonzero bit. | |
763 | |
764 When a buffer has its own local value for a slot, | |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
765 the entry for that slot (found in the same slot in this structure) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
766 is turned on in the buffer's local_flags array. |
193 | 767 |
768 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
|
769 be a Lisp-level local variable for the slot, it has no default value, |
193 | 770 and the corresponding slot in buffer_defaults is not used. */ |
771 | |
772 extern struct buffer buffer_local_flags; | |
773 | |
774 /* For each buffer slot, this points to the Lisp symbol name | |
775 for that slot in the current buffer. It is 0 for slots | |
776 that don't have such names. */ | |
777 | |
778 extern struct buffer buffer_local_symbols; | |
779 | |
998 | 780 /* This structure holds the required types for the values in the |
781 buffer-local slots. If a slot contains Qnil, then the | |
782 corresponding buffer slot may contain a value of any type. If a | |
783 slot contains an integer, then prospective values' tags must be | |
20994 | 784 equal to that integer (except nil is always allowed). |
785 When a tag does not match, the function | |
786 buffer_slot_type_mismatch will signal an error. | |
787 | |
788 If a slot here contains -1, the corresponding variable is read-only. */ | |
789 | |
1502
fa4c1f1c744d
* buffer.h (Fbuffer_name, Fget_file_buffer): Added external
Jim Blandy <jimb@redhat.com>
parents:
1286
diff
changeset
|
790 extern struct buffer buffer_local_types; |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
791 |
20304
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
792 extern void reset_buffer P_ ((struct buffer *)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
793 extern void evaporate_overlays P_ ((int)); |
30696
5d83aa68f248
(overlays_at): Update prototype.
Miles Bader <miles@gnu.org>
parents:
29440
diff
changeset
|
794 extern int overlays_at P_ ((int, int, Lisp_Object **, int *, int *, int *, int)); |
20304
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
795 extern int sort_overlays P_ ((Lisp_Object *, int, struct window *)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
796 extern void recenter_overlay_lists P_ ((struct buffer *, int)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
797 extern int overlay_strings P_ ((int, struct window *, unsigned char **)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
798 extern void validate_region P_ ((Lisp_Object *, Lisp_Object *)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
799 extern void set_buffer_internal P_ ((struct buffer *)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
800 extern void set_buffer_internal_1 P_ ((struct buffer *)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
801 extern void set_buffer_temp P_ ((struct buffer *)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
802 extern void record_buffer P_ ((Lisp_Object)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
803 extern void buffer_slot_type_mismatch P_ ((int)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
804 extern void fix_overlays_before P_ ((struct buffer *, int, int)); |
34498 | 805 extern void mmap_set_vars P_ ((int)); |
20304
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
806 |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
807 EXFUN (Fbuffer_name, 1); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
808 EXFUN (Fget_file_buffer, 1); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
809 EXFUN (Fnext_overlay_change, 1); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
810 EXFUN (Fdelete_overlay, 1); |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
811 |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
812 /* Functions to call before and after each text change. */ |
6786
25280492d514
(Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
6654
diff
changeset
|
813 extern Lisp_Object Vbefore_change_functions; |
25280492d514
(Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
6654
diff
changeset
|
814 extern Lisp_Object Vafter_change_functions; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
815 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
|
816 extern Lisp_Object Qbefore_change_functions; |
d12f56be7f87
(Qbefore_change_functions, Qafter_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
12471
diff
changeset
|
817 extern Lisp_Object Qafter_change_functions; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
818 extern Lisp_Object Qfirst_change_hook; |
193 | 819 |
23398
a80f6d8c1dc6
(inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22151
diff
changeset
|
820 /* If nonzero, all modification hooks are suppressed. */ |
a80f6d8c1dc6
(inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22151
diff
changeset
|
821 extern int inhibit_modification_hooks; |
a80f6d8c1dc6
(inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22151
diff
changeset
|
822 |
2051
c1767ea45687
(struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents:
1910
diff
changeset
|
823 extern Lisp_Object Vdeactivate_mark; |
c1767ea45687
(struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents:
1910
diff
changeset
|
824 extern Lisp_Object Vtransient_mark_mode; |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
825 |
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
826 /* Overlays */ |
2051
c1767ea45687
(struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents:
1910
diff
changeset
|
827 |
6098
b91e19be1513
(OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents:
5557
diff
changeset
|
828 /* 1 if the OV is an overlay object. */ |
37753
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
829 |
2782
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2564
diff
changeset
|
830 #define OVERLAY_VALID(OV) (OVERLAYP (OV)) |
193 | 831 |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
832 /* Return the marker that stands for where OV starts in the buffer. */ |
37753
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
833 |
9925
b039e4156d74
(OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9784
diff
changeset
|
834 #define OVERLAY_START(OV) (XOVERLAY (OV)->start) |
193 | 835 |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
836 /* Return the marker that stands for where OV ends in the buffer. */ |
37753
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
837 |
9925
b039e4156d74
(OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9784
diff
changeset
|
838 #define OVERLAY_END(OV) (XOVERLAY (OV)->end) |
193 | 839 |
37753
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
840 /* Return the plist of overlay OV. */ |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
841 |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
842 #define OVERLAY_PLIST(OV) XOVERLAY ((OV))->plist |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
843 |
6098
b91e19be1513
(OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents:
5557
diff
changeset
|
844 /* 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
|
845 We assume you know which buffer it's pointing into. */ |
193 | 846 |
9951
586bb1122715
(OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9925
diff
changeset
|
847 #define OVERLAY_POSITION(P) \ |
586bb1122715
(OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9925
diff
changeset
|
848 (GC_MARKERP (P) ? marker_position (P) : (abort (), 0)) |
193 | 849 |
31605
c3073b2c8dfa
(BUFFER_ALLOC, BUFFER_REALLOC, BUFFER_FREE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
31411
diff
changeset
|
850 |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
851 /*********************************************************************** |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
852 Buffer-local Variables |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
853 ***********************************************************************/ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
854 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
855 /* Number of per-buffer variables used. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
856 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
857 extern int last_per_buffer_idx; |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
858 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
859 /* Return the offset in bytes of member VAR of struct buffer |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
860 from the start of a buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
861 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
862 #define PER_BUFFER_VAR_OFFSET(VAR) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
863 ((char *) &buffer_local_flags.VAR - (char *) &buffer_local_flags) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
864 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
865 /* Return the index of buffer-local variable VAR. Each per-buffer |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
866 variable has an index > 0 associated with it, except when it always |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
867 has buffer-local values, in which case the index is -1. If this is |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
868 0, this is a bug and means that the slot of VAR in |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
869 buffer_local_flags wasn't intiialized. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
870 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
871 #define PER_BUFFER_VAR_IDX(VAR) \ |
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
872 PER_BUFFER_IDX (PER_BUFFER_VAR_OFFSET (VAR)) |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
873 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
874 /* Value is non-zero if the variable with index IDX has a local value |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
875 in buffer B. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
876 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
877 #define PER_BUFFER_VALUE_P(B, IDX) \ |
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
878 (((IDX) < 0 || IDX >= last_per_buffer_idx) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
879 ? (abort (), 0) \ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
880 : ((B)->local_flags[IDX] != 0)) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
881 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
882 /* Set whether per-buffer variable with index IDX has a buffer-local |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
883 value in buffer B. VAL zero means it hasn't. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
884 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
885 #define SET_PER_BUFFER_VALUE_P(B, IDX, VAL) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
886 do { \ |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
887 if ((IDX) < 0 || (IDX) >= last_per_buffer_idx) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
888 abort (); \ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
889 (B)->local_flags[IDX] = (VAL); \ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
890 } while (0) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
891 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
892 /* Return the index of the per-buffer variable at offset OFFSET in the |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
893 buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
894 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
895 #define PER_BUFFER_IDX(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
896 XINT (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_flags)) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
897 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
898 /* Return the default value of the per-buffer variable at offset |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
899 OFFSET in the buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
900 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
901 #define PER_BUFFER_DEFAULT(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
902 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_defaults)) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
903 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
904 /* Return the buffer-local value of the per-buffer variable at offset |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
905 OFFSET in the buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
906 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
907 #define PER_BUFFER_VALUE(BUFFER, OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
908 (*(Lisp_Object *)((OFFSET) + (char *) (BUFFER))) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
909 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
910 /* Return the symbol of the per-buffer variable at offset OFFSET in |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
911 the buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
912 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
913 #define PER_BUFFER_SYMBOL(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
914 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_symbols)) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
915 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
916 /* Return the type of the per-buffer variable at offset OFFSET in the |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
917 buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
918 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
919 #define PER_BUFFER_TYPE(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
920 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_types)) |