Mercurial > emacs
annotate src/buffer.h @ 71765:6aa63dccd38d
* progmodes/cc-awk.el (defconst): Fix compilation error.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Mon, 10 Jul 2006 18:54:07 +0000 |
parents | 7e644ce20468 |
children | da0099bc0ba4 d1c5430c5bff |
rev | line source |
---|---|
193 | 1 /* Header file for the buffer manipulation primitives. |
64479
464cbb3faef9
(Fgenerate_new_buffer_name): Declare (for use in coding.c).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64084
diff
changeset
|
2 Copyright (C) 1985, 1986, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001, |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64770
diff
changeset
|
3 2002, 2003, 2004, 2005, 2006 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 | |
64084 | 19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 Boston, MA 02110-1301, 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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
28 /* Position of beginning of buffer. */ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
29 #define BEG (1) |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
30 #define BEG_BYTE (BEG) |
193 | 31 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
32 /* Position of beginning of accessible range of buffer. */ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
55 /* Address of beginning of buffer. */ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
58 /* Address of beginning of accessible range of buffer. */ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
61 /* Address of point in buffer. */ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
64 /* Address of beginning of gap in buffer. */ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
65 #define GPT_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte - BEG_BYTE) |
20553
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. */ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
68 #define GAP_END_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte + current_buffer->text->gap_size - BEG_BYTE) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
69 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
70 /* Address of end of accessible range of buffer. */ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
73 /* Address of end of buffer. */ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
74 #define Z_ADDR (current_buffer->text->beg + current_buffer->text->gap_size + current_buffer->text->z_byte - BEG_BYTE) |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
104 /* Position of beginning of buffer. */ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
105 #define BUF_BEG(buf) (BEG) |
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
106 #define BUF_BEG_BYTE(buf) (BEG_BYTE) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
107 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
108 /* Position of beginning of accessible range of buffer. */ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
112 /* Position of point in buffer. */ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
116 /* Position of gap in buffer. */ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
120 /* Position of end of accessible range of buffer. */ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
124 /* Position of end of buffer. */ |
20553
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. */ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
132 #define BUF_GPT_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte - BEG_BYTE) |
20553
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. */ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
135 #define BUF_Z_ADDR(buf) ((buf)->text->beg + (buf)->text->gap_size + (buf)->text->z_byte - BEG_BYTE) |
193 | 136 |
137 /* Address of end of gap in buffer. */ | |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
138 #define BUF_GAP_END_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte + (buf)->text->gap_size - BEG_BYTE) |
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) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
200 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
201 |
42644 | 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) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
283 (((n) >= GPT_BYTE ? GAP_SIZE : 0) + (n) + BEG_ADDR - BEG_BYTE) |
20553
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) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
290 + BEG_ADDR - BEG_BYTE) |
20553
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 \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
306 - (ptr - (current_buffer)->text->beg <= (unsigned) (GPT_BYTE - BEG_BYTE) ? 0 : GAP_SIZE) \ |
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
307 + BEG_BYTE) |
20553
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) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
330 + (pos) + BEG_ADDR - BEG_BYTE), \ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
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) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
343 ((buf)->text->beg + (pos) - BEG_BYTE \ |
20553
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 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
346 /* Return the address of character at char position POS in buffer BUF. |
20553
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) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
350 ((buf)->text->beg + buf_charpos_to_bytepos ((buf), (pos)) - BEG_BYTE \ |
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 \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
358 - (ptr - (buf)->text->beg <= (unsigned) (BUF_GPT_BYTE ((buf)) - BEG_BYTE)\ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
359 ? 0 : BUF_GAP_SIZE ((buf))) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
360 + BEG_BYTE) |
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) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
381 + (pos) + BUF_BEG_ADDR (buf) - BEG_BYTE), \ |
20553
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; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
399 |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
400 EMACS_INT gpt; /* Char pos of gap in buffer. */ |
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
401 EMACS_INT z; /* Char pos of end of buffer. */ |
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
402 EMACS_INT gpt_byte; /* Byte pos of gap in buffer. */ |
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
403 EMACS_INT z_byte; /* Byte pos of end of buffer. */ |
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
404 EMACS_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. */ |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
415 EMACS_INT beg_unchanged; |
25369
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. */ |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
418 EMACS_INT end_unchanged; |
25369
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. */ |
51667
52d50e52438f
(struct buffer_text): Lisp_Object `markers' => Lisp_Marker.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51191
diff
changeset
|
436 struct Lisp_Marker *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. */ |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
467 EMACS_INT pt; |
28687
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. */ |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
469 EMACS_INT pt_byte; |
28687
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. */ |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
471 EMACS_INT begv; |
28687
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. */ |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
473 EMACS_INT begv_byte; |
28687
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. */ |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
475 EMACS_INT zv; |
28687
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. */ |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
477 EMACS_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]; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
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; |
42087
32f317cd7f01
(struct buffer): New field `display_error_modiff'.
Richard M. Stallman <rms@gnu.org>
parents:
40740
diff
changeset
|
496 /* The value of text->modiff at the last auto-save. */ |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
497 int auto_save_modified; |
42087
32f317cd7f01
(struct buffer): New field `display_error_modiff'.
Richard M. Stallman <rms@gnu.org>
parents:
40740
diff
changeset
|
498 /* The value of text->modiff at the last display error. |
32f317cd7f01
(struct buffer): New field `display_error_modiff'.
Richard M. Stallman <rms@gnu.org>
parents:
40740
diff
changeset
|
499 Redisplay of this buffer is inhibited until it changes again. */ |
32f317cd7f01
(struct buffer): New field `display_error_modiff'.
Richard M. Stallman <rms@gnu.org>
parents:
40740
diff
changeset
|
500 int display_error_modiff; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
501 /* 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
|
502 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
|
503 int auto_save_failure_time; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
504 /* 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
|
505 the last time this buffer was displayed. */ |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
506 EMACS_INT last_window_start; |
193 | 507 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
508 /* 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
|
509 int clip_changed; |
12471
a188da6410e4
(struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents:
11681
diff
changeset
|
510 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
511 /* 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
|
512 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
|
513 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
|
514 width run cache. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
515 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
516 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
|
517 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
|
518 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
|
519 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
520 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
|
521 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
|
522 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
|
523 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
|
524 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
|
525 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
|
526 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
|
527 struct region_cache *newline_cache; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
528 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
|
529 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
530 /* 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
|
531 displaying this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
532 unsigned prevent_redisplay_optimizations_p : 1; |
193 | 533 |
51834
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
534 /* List of overlays that end at or before the current center, |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
535 in order of end-position. */ |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
536 struct Lisp_Overlay *overlays_before; |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
537 |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
538 /* List of overlays that end after the current center, |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
539 in order of start-position. */ |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
540 struct Lisp_Overlay *overlays_after; |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
541 |
51821
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
542 /* Position where the overlay lists are centered. */ |
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
543 EMACS_INT overlay_center; |
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
544 |
42644 | 545 /* 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
|
546 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
547 /* The name of this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
548 Lisp_Object name; |
25019 | 549 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
550 /* 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
|
551 Lisp_Object filename; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
552 /* Dir for expanding relative file names. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
553 Lisp_Object directory; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
554 /* 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
|
555 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
|
556 be made). */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
557 /* 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
|
558 Lisp_Object backed_up; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
559 /* 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
|
560 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
|
561 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
|
562 Lisp_Object save_length; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
563 /* 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
|
564 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
|
565 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
|
566 Lisp_Object auto_save_file_name; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
567 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
568 /* Non-nil if buffer read-only. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
569 Lisp_Object read_only; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
570 /* "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
|
571 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
|
572 Lisp_Object mark; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
573 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
574 /* 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
|
575 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
|
576 Lisp_Object local_var_alist; |
193 | 577 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
578 /* 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
|
579 Lisp_Object major_mode; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
580 /* 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
|
581 Lisp_Object mode_name; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
582 /* 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
|
583 Lisp_Object mode_line_format; |
47859
f15b9906481d
(struct buffer): Move `undo_list' down below `name'.
Richard M. Stallman <rms@gnu.org>
parents:
42644
diff
changeset
|
584 |
f15b9906481d
(struct buffer): Move `undo_list' down below `name'.
Richard M. Stallman <rms@gnu.org>
parents:
42644
diff
changeset
|
585 /* Changes in the buffer are recorded here for undo. |
f15b9906481d
(struct buffer): Move `undo_list' down below `name'.
Richard M. Stallman <rms@gnu.org>
parents:
42644
diff
changeset
|
586 t means don't record anything. |
f15b9906481d
(struct buffer): Move `undo_list' down below `name'.
Richard M. Stallman <rms@gnu.org>
parents:
42644
diff
changeset
|
587 This information belongs to the base buffer of an indirect buffer, |
f15b9906481d
(struct buffer): Move `undo_list' down below `name'.
Richard M. Stallman <rms@gnu.org>
parents:
42644
diff
changeset
|
588 But we can't store it in the struct buffer_text |
f15b9906481d
(struct buffer): Move `undo_list' down below `name'.
Richard M. Stallman <rms@gnu.org>
parents:
42644
diff
changeset
|
589 because local variables have to be right in the struct buffer. |
f15b9906481d
(struct buffer): Move `undo_list' down below `name'.
Richard M. Stallman <rms@gnu.org>
parents:
42644
diff
changeset
|
590 So we copy it around in set_buffer_internal. |
f15b9906481d
(struct buffer): Move `undo_list' down below `name'.
Richard M. Stallman <rms@gnu.org>
parents:
42644
diff
changeset
|
591 This comes before `name' because it is marked in a special way. */ |
f15b9906481d
(struct buffer): Move `undo_list' down below `name'.
Richard M. Stallman <rms@gnu.org>
parents:
42644
diff
changeset
|
592 Lisp_Object undo_list; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
593 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
594 /* 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
|
595 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
|
596 Lisp_Object header_line_format; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
597 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
598 /* 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
|
599 Lisp_Object keymap; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
600 /* This buffer's local abbrev table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
601 Lisp_Object abbrev_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
602 /* This buffer's syntax table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
603 Lisp_Object syntax_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
604 /* This buffer's category table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
605 Lisp_Object category_table; |
193 | 606 |
42644 | 607 /* Values of several buffer-local variables. */ |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
608 /* tab-width is buffer-local so that redisplay can find it |
42644 | 609 in buffers that are not current. */ |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
610 Lisp_Object case_fold_search; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
611 Lisp_Object tab_width; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
612 Lisp_Object fill_column; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
613 Lisp_Object left_margin; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
614 /* 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
|
615 Lisp_Object auto_fill_function; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
616 /* nil: text, t: binary. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
617 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
|
618 /* 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
|
619 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
|
620 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
|
621 Lisp_Object buffer_file_type; |
193 | 622 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
623 /* 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
|
624 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
|
625 Lisp_Object downcase_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
626 /* 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
|
627 Lisp_Object upcase_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
628 /* 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
|
629 Lisp_Object case_canon_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
630 /* 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
|
631 Lisp_Object case_eqv_table; |
193 | 632 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
633 /* 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
|
634 Lisp_Object truncate_lines; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
635 /* 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
|
636 Lisp_Object ctl_arrow; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
637 /* 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
|
638 Lisp_Object direction_reversed; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
639 /* Non-nil means do selective display; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
640 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
|
641 Lisp_Object selective_display; |
193 | 642 #ifndef old |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
643 /* 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
|
644 Lisp_Object selective_display_ellipses; |
193 | 645 #endif |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
646 /* 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
|
647 Lisp_Object minor_modes; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
648 /* 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
|
649 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
|
650 Lisp_Object overwrite_mode; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
651 /* 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
|
652 Lisp_Object abbrev_mode; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
653 /* 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
|
654 Lisp_Object display_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
655 /* 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
|
656 Lisp_Object mark_active; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
657 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
658 /* 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
|
659 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
|
660 Lisp_Object enable_multibyte_characters; |
9404
698990d4feca
* buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents:
8847
diff
changeset
|
661 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
662 /* 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
|
663 saving. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
664 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
|
665 |
42644 | 666 /* List of symbols naming the file format used for visited file. */ |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
667 Lisp_Object file_format; |
18179
371736608f2f
(struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
17219
diff
changeset
|
668 |
56975
ef6ff15b0458
(struct buffer): Add auto_save_file_format field.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56135
diff
changeset
|
669 /* List of symbols naming the file format used for auto-save file. */ |
ef6ff15b0458
(struct buffer): Add auto_save_file_format field.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56135
diff
changeset
|
670 Lisp_Object auto_save_file_format; |
ef6ff15b0458
(struct buffer): Add auto_save_file_format field.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56135
diff
changeset
|
671 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
672 /* 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
|
673 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
|
674 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
|
675 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
676 /* 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
|
677 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
|
678 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
|
679 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
|
680 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
|
681 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
|
682 Lisp_Object width_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
683 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
684 /* 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
|
685 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
|
686 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
|
687 Lisp_Object pt_marker; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
688 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
689 /* 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
|
690 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
|
691 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
|
692 Lisp_Object begv_marker; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
693 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
694 /* 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
|
695 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
|
696 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
|
697 Lisp_Object zv_marker; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
698 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
699 /* 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
|
700 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
|
701 Lisp_Object point_before_scroll; |
10562
ddc863fd062b
(struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents:
10310
diff
changeset
|
702 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
703 /* 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
|
704 Lisp_Object file_truename; |
10750
7bf07f10bed3
(struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents:
10562
diff
changeset
|
705 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
706 /* Invisibility spec of this buffer. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
707 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
|
708 A list => `invisible' property means invisible |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
709 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
|
710 Lisp_Object invisibility_spec; |
10966
e55f4cc120b6
(struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents:
10750
diff
changeset
|
711 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
712 /* 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
|
713 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
|
714 Lisp_Object last_selected_window; |
16066
2f421cfff6cc
(strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
715 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
716 /* 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
|
717 Lisp_Object display_count; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
718 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
719 /* 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
|
720 this buffer. */ |
51191
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
721 Lisp_Object left_margin_cols, right_margin_cols; |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
722 |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
723 /* Widths of left and right fringe areas for windows displaying |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
724 this buffer. */ |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
725 Lisp_Object left_fringe_width, right_fringe_width; |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
726 |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
727 /* Non-nil means fringes are drawn outside display margins; |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
728 othersize draw them between margin areas and text. */ |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
729 Lisp_Object fringes_outside_margins; |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
730 |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
731 /* Width and type of scroll bar areas for windows displaying |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
732 this buffer. */ |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
733 Lisp_Object scroll_bar_width, vertical_scroll_bar_type; |
25019 | 734 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
735 /* 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
|
736 like vi). */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
737 Lisp_Object indicate_empty_lines; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
738 |
53603
c7c62631959b
(struct buffer): New member indicate_buffer_boundaries.
Kim F. Storm <storm@cua.dk>
parents:
53362
diff
changeset
|
739 /* Non-nil means indicate buffer boundaries and scrolling. */ |
c7c62631959b
(struct buffer): New member indicate_buffer_boundaries.
Kim F. Storm <storm@cua.dk>
parents:
53362
diff
changeset
|
740 Lisp_Object indicate_buffer_boundaries; |
c7c62631959b
(struct buffer): New member indicate_buffer_boundaries.
Kim F. Storm <storm@cua.dk>
parents:
53362
diff
changeset
|
741 |
69048
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
742 /* Logical to physical fringe bitmap mappings. */ |
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
743 Lisp_Object fringe_indicator_alist; |
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
744 |
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
745 /* Logical to physical cursor bitmap mappings. */ |
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
746 Lisp_Object fringe_cursor_alist; |
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
747 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
748 /* 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
|
749 Lisp_Object display_time; |
25019 | 750 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
751 /* 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
|
752 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
|
753 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
|
754 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
|
755 Lisp_Object scroll_up_aggressively; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
756 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
757 /* 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
|
758 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
|
759 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
|
760 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
|
761 Lisp_Object scroll_down_aggressively; |
25019 | 762 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
763 /* 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
|
764 per-buffer variable `cursor-type'. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
765 Lisp_Object cursor_type; |
28345
7d1e7bfa5ae1
(struct buffer): Add cursor_type.
Gerd Moellmann <gerd@gnu.org>
parents:
28317
diff
changeset
|
766 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
767 /* 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
|
768 in the display of this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
769 Lisp_Object extra_line_spacing; |
62029
12d1ea96b466
(struct buffer): Add cursor_in_non_selected_windows slot.
Richard M. Stallman <rms@gnu.org>
parents:
56975
diff
changeset
|
770 |
12d1ea96b466
(struct buffer): Add cursor_in_non_selected_windows slot.
Richard M. Stallman <rms@gnu.org>
parents:
56975
diff
changeset
|
771 /* *Cursor type to display in non-selected windows. |
12d1ea96b466
(struct buffer): Add cursor_in_non_selected_windows slot.
Richard M. Stallman <rms@gnu.org>
parents:
56975
diff
changeset
|
772 t means to use hollow box cursor. |
12d1ea96b466
(struct buffer): Add cursor_in_non_selected_windows slot.
Richard M. Stallman <rms@gnu.org>
parents:
56975
diff
changeset
|
773 See `cursor-type' for other values. */ |
12d1ea96b466
(struct buffer): Add cursor_in_non_selected_windows slot.
Richard M. Stallman <rms@gnu.org>
parents:
56975
diff
changeset
|
774 Lisp_Object cursor_in_non_selected_windows; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
775 }; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
776 |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
777 |
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
778 /* This points to the current buffer. */ |
193 | 779 |
780 extern struct buffer *current_buffer; | |
781 | |
782 /* 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
|
783 that have special slots in each buffer. |
193 | 784 The default value occupies the same slot in this structure |
785 as an individual buffer's value occupies in that buffer. | |
786 Setting the default value also goes through the alist of buffers | |
787 and stores into each buffer that does not say it has a local value. */ | |
788 | |
789 extern struct buffer buffer_defaults; | |
790 | |
791 /* This structure marks which slots in a buffer have corresponding | |
792 default values in buffer_defaults. | |
793 Each such slot has a nonzero value in this structure. | |
794 The value has only one nonzero bit. | |
795 | |
796 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
|
797 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
|
798 is turned on in the buffer's local_flags array. |
193 | 799 |
800 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
|
801 be a Lisp-level local variable for the slot, it has no default value, |
193 | 802 and the corresponding slot in buffer_defaults is not used. */ |
803 | |
804 extern struct buffer buffer_local_flags; | |
805 | |
806 /* For each buffer slot, this points to the Lisp symbol name | |
807 for that slot in the current buffer. It is 0 for slots | |
808 that don't have such names. */ | |
809 | |
810 extern struct buffer buffer_local_symbols; | |
811 | |
998 | 812 /* This structure holds the required types for the values in the |
813 buffer-local slots. If a slot contains Qnil, then the | |
814 corresponding buffer slot may contain a value of any type. If a | |
815 slot contains an integer, then prospective values' tags must be | |
20994 | 816 equal to that integer (except nil is always allowed). |
817 When a tag does not match, the function | |
818 buffer_slot_type_mismatch will signal an error. | |
819 | |
820 If a slot here contains -1, the corresponding variable is read-only. */ | |
821 | |
1502
fa4c1f1c744d
* buffer.h (Fbuffer_name, Fget_file_buffer): Added external
Jim Blandy <jimb@redhat.com>
parents:
1286
diff
changeset
|
822 extern struct buffer buffer_local_types; |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
823 |
52013
26ceb23fbe42
(delete_all_overlays): Declare.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51854
diff
changeset
|
824 extern void delete_all_overlays P_ ((struct buffer *)); |
20304
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
825 extern void reset_buffer P_ ((struct buffer *)); |
51821
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
826 extern void evaporate_overlays P_ ((EMACS_INT)); |
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
827 extern int overlays_at P_ ((EMACS_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
|
828 extern int sort_overlays P_ ((Lisp_Object *, int, struct window *)); |
51821
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
829 extern void recenter_overlay_lists P_ ((struct buffer *, EMACS_INT)); |
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
830 extern int overlay_strings P_ ((EMACS_INT, struct window *, unsigned char **)); |
20304
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
831 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
|
832 extern void set_buffer_internal P_ ((struct buffer *)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
833 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
|
834 extern void set_buffer_temp P_ ((struct buffer *)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
835 extern void record_buffer P_ ((Lisp_Object)); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
836 extern void buffer_slot_type_mismatch P_ ((int)); |
51821
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
837 extern void fix_overlays_before P_ ((struct buffer *, EMACS_INT, EMACS_INT)); |
34498 | 838 extern void mmap_set_vars P_ ((int)); |
20304
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
839 |
55649
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
840 /* Get overlays at POSN into array OVERLAYS with NOVERLAYS elements. |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
841 If NEXTP is non-NULL, return next overlay there. |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
842 See overlay_at arg CHANGE_REQ for meaning of CHRQ arg. */ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
843 |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
844 #define GET_OVERLAYS_AT(posn, overlays, noverlays, nextp, chrq) \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
845 do { \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
846 int maxlen = 40; \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
847 overlays = (Lisp_Object *) alloca (maxlen * sizeof (Lisp_Object)); \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
848 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
849 nextp, NULL, chrq); \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
850 if (noverlays > maxlen) \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
851 { \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
852 maxlen = noverlays; \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
853 overlays = (Lisp_Object *) alloca (maxlen * sizeof (Lisp_Object)); \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
854 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
855 nextp, NULL, chrq); \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
856 } \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
857 } while (0) |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
858 |
20304
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
859 EXFUN (Fbuffer_name, 1); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
860 EXFUN (Fget_file_buffer, 1); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
861 EXFUN (Fnext_overlay_change, 1); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
862 EXFUN (Fdelete_overlay, 1); |
40740
f2d03d1dc242
(Fbuffer_local_value): Add prototype.
Pavel Janík <Pavel@Janik.cz>
parents:
39320
diff
changeset
|
863 EXFUN (Fbuffer_local_value, 2); |
64479
464cbb3faef9
(Fgenerate_new_buffer_name): Declare (for use in coding.c).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64084
diff
changeset
|
864 EXFUN (Fgenerate_new_buffer_name, 2); |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
865 |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
866 /* 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
|
867 extern Lisp_Object Vbefore_change_functions; |
25280492d514
(Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
6654
diff
changeset
|
868 extern Lisp_Object Vafter_change_functions; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
869 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
|
870 extern Lisp_Object Qbefore_change_functions; |
d12f56be7f87
(Qbefore_change_functions, Qafter_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
12471
diff
changeset
|
871 extern Lisp_Object Qafter_change_functions; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
872 extern Lisp_Object Qfirst_change_hook; |
193 | 873 |
23398
a80f6d8c1dc6
(inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22151
diff
changeset
|
874 /* If nonzero, all modification hooks are suppressed. */ |
a80f6d8c1dc6
(inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22151
diff
changeset
|
875 extern int inhibit_modification_hooks; |
a80f6d8c1dc6
(inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22151
diff
changeset
|
876 |
2051
c1767ea45687
(struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents:
1910
diff
changeset
|
877 extern Lisp_Object Vdeactivate_mark; |
c1767ea45687
(struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents:
1910
diff
changeset
|
878 extern Lisp_Object Vtransient_mark_mode; |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
879 |
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
880 /* Overlays */ |
2051
c1767ea45687
(struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents:
1910
diff
changeset
|
881 |
6098
b91e19be1513
(OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents:
5557
diff
changeset
|
882 /* 1 if the OV is an overlay object. */ |
37753
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
883 |
2782
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2564
diff
changeset
|
884 #define OVERLAY_VALID(OV) (OVERLAYP (OV)) |
193 | 885 |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
886 /* 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
|
887 |
9925
b039e4156d74
(OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9784
diff
changeset
|
888 #define OVERLAY_START(OV) (XOVERLAY (OV)->start) |
193 | 889 |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
890 /* 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
|
891 |
9925
b039e4156d74
(OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9784
diff
changeset
|
892 #define OVERLAY_END(OV) (XOVERLAY (OV)->end) |
193 | 893 |
37753
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
894 /* Return the plist of overlay OV. */ |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
895 |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
896 #define OVERLAY_PLIST(OV) XOVERLAY ((OV))->plist |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
897 |
6098
b91e19be1513
(OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents:
5557
diff
changeset
|
898 /* 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
|
899 We assume you know which buffer it's pointing into. */ |
193 | 900 |
9951
586bb1122715
(OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9925
diff
changeset
|
901 #define OVERLAY_POSITION(P) \ |
586bb1122715
(OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9925
diff
changeset
|
902 (GC_MARKERP (P) ? marker_position (P) : (abort (), 0)) |
193 | 903 |
31605
c3073b2c8dfa
(BUFFER_ALLOC, BUFFER_REALLOC, BUFFER_FREE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
31411
diff
changeset
|
904 |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
905 /*********************************************************************** |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
906 Buffer-local Variables |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
907 ***********************************************************************/ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
908 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
909 /* Number of per-buffer variables used. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
910 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
911 extern int last_per_buffer_idx; |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
912 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
913 /* 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
|
914 from the start of a buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
915 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
916 #define PER_BUFFER_VAR_OFFSET(VAR) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
917 ((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
|
918 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
919 /* 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
|
920 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
|
921 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
|
922 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
|
923 buffer_local_flags wasn't intiialized. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
924 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
925 #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
|
926 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
|
927 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
928 /* 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
|
929 in buffer B. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
930 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
931 #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
|
932 (((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
|
933 ? (abort (), 0) \ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
934 : ((B)->local_flags[IDX] != 0)) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
935 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
936 /* 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
|
937 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
|
938 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
939 #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
|
940 do { \ |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
941 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
|
942 abort (); \ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
943 (B)->local_flags[IDX] = (VAL); \ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
944 } while (0) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
945 |
53362 | 946 /* Return the index value of the per-buffer variable at offset OFFSET |
947 in the buffer structure. | |
948 | |
949 If the slot OFFSET has a corresponding default value in | |
950 buffer_defaults, the index value is positive and has only one | |
951 nonzero bit. When a buffer has its own local value for a slot, the | |
952 bit for that slot (found in the same slot in this structure) is | |
953 turned on in the buffer's local_flags array. | |
954 | |
955 If the index value is -1, even though there may be a | |
956 DEFVAR_PER_BUFFER for the slot, there is no default value for it; | |
957 and the corresponding slot in buffer_defaults is not used. | |
958 | |
959 If the index value is -2, then there is no DEFVAR_PER_BUFFER for | |
960 the slot, but there is a default value which is copied into each | |
961 new buffer. | |
962 | |
963 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is | |
964 zero, that is a bug */ | |
965 | |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
966 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
967 #define PER_BUFFER_IDX(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
968 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
|
969 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
970 /* 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
|
971 OFFSET in the buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
972 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
973 #define PER_BUFFER_DEFAULT(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
974 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_defaults)) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
975 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
976 /* 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
|
977 OFFSET in the buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
978 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
979 #define PER_BUFFER_VALUE(BUFFER, OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
980 (*(Lisp_Object *)((OFFSET) + (char *) (BUFFER))) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
981 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
982 /* 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
|
983 the buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
984 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
985 #define PER_BUFFER_SYMBOL(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
986 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_symbols)) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
987 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
988 /* 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
|
989 buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
990 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
991 #define PER_BUFFER_TYPE(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
992 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_types)) |
52401 | 993 |
994 /* arch-tag: 679305dd-d41c-4a50-b170-3caf5c97b2d1 | |
995 (do not change this comment) */ |