Mercurial > emacs
annotate src/buffer.h @ 111993:5a6a18bf3302
* loadup.el: Use version numbers in Cygwin build.
author | Ken Brown <kbrown@cornell.edu> |
---|---|
date | Fri, 17 Dec 2010 10:14:57 -0500 |
parents | 16543b266e85 |
children | ac49e05bfcf2 |
rev | line source |
---|---|
193 | 1 /* Header file for the buffer manipulation primitives. |
111332
13a509edfa26
Mere anarchy is loosed upon the world.
Glenn Morris <rgm@gnu.org>
parents:
110554
diff
changeset
|
2 |
13a509edfa26
Mere anarchy is loosed upon the world.
Glenn Morris <rgm@gnu.org>
parents:
110554
diff
changeset
|
3 Copyright (C) 1985, 1986, 1993, 1994, 1995, 1997, 1998, 1999, 2000, |
13a509edfa26
Mere anarchy is loosed upon the world.
Glenn Morris <rgm@gnu.org>
parents:
110554
diff
changeset
|
4 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
13a509edfa26
Mere anarchy is loosed upon the world.
Glenn Morris <rgm@gnu.org>
parents:
110554
diff
changeset
|
5 Free Software Foundation, Inc. |
193 | 6 |
7 This file is part of GNU Emacs. | |
8 | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93111
diff
changeset
|
9 GNU Emacs is free software: you can redistribute it and/or modify |
193 | 10 it under the terms of the GNU General Public License as published by |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93111
diff
changeset
|
11 the Free Software Foundation, either version 3 of the License, or |
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93111
diff
changeset
|
12 (at your option) any later version. |
193 | 13 |
14 GNU Emacs is distributed in the hope that it will be useful, | |
15 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 GNU General Public License for more details. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93111
diff
changeset
|
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
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 |
72592
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
85 /* Character modification count. */ |
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
86 #define CHARS_MODIFF (current_buffer->text->chars_modiff) |
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
87 |
16190
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
88 /* Overlay modification count. */ |
16191 | 89 #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
|
90 |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
91 /* 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
|
92 #define SAVE_MODIFF (current_buffer->text->save_modiff) |
193 | 93 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
94 /* 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
|
95 the max (resp. min) p such that |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
96 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
97 BYTE_POS_ADDR (p) - BYTE_POS_ADDR (n) == p - n */ |
193 | 98 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
99 #define BUFFER_CEILING_OF(BYTEPOS) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
100 (((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
|
101 #define BUFFER_FLOOR_OF(BYTEPOS) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
102 (BEGV <= GPT && GPT_BYTE <= (BYTEPOS) ? GPT_BYTE : BEGV_BYTE) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
103 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
104 /* Similar macros to operate on a specified buffer. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
105 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
|
106 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
107 /* Position of beginning of buffer. */ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
108 #define BUF_BEG(buf) (BEG) |
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
109 #define BUF_BEG_BYTE(buf) (BEG_BYTE) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
110 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
111 /* !!!FIXME: all the BUF_BEGV/BUF_ZV/BUF_PT macros are flawed: |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
112 on indirect (or base) buffers, that value is only correct if that buffer |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
113 is the current_buffer, or if the buffer's text hasn't been modified (via |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
114 an indirect buffer) since it was last current. */ |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
115 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
116 /* Position of beginning of accessible range of buffer. */ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
117 #define BUF_BEGV(buf) ((buf)->begv) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
118 #define BUF_BEGV_BYTE(buf) ((buf)->begv_byte) |
193 | 119 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
120 /* Position of point in buffer. */ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
121 #define BUF_PT(buf) ((buf)->pt) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
122 #define BUF_PT_BYTE(buf) ((buf)->pt_byte) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
123 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
124 /* Position of gap in buffer. */ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
125 #define BUF_GPT(buf) ((buf)->text->gpt) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
126 #define BUF_GPT_BYTE(buf) ((buf)->text->gpt_byte) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
127 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
128 /* Position of end of accessible range of buffer. */ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
129 #define BUF_ZV(buf) ((buf)->zv) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
130 #define BUF_ZV_BYTE(buf) ((buf)->zv_byte) |
193 | 131 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
132 /* Position of end of buffer. */ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
133 #define BUF_Z(buf) ((buf)->text->z) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
134 #define BUF_Z_BYTE(buf) ((buf)->text->z_byte) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
135 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
136 /* Address of beginning of buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
137 #define BUF_BEG_ADDR(buf) ((buf)->text->beg) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
138 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
139 /* Address of beginning of gap of buffer. */ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
140 #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
|
141 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
142 /* Address of end of buffer. */ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
143 #define BUF_Z_ADDR(buf) ((buf)->text->beg + (buf)->text->gap_size + (buf)->text->z_byte - BEG_BYTE) |
193 | 144 |
145 /* Address of end of gap in buffer. */ | |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
146 #define BUF_GAP_END_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte + (buf)->text->gap_size - BEG_BYTE) |
193 | 147 |
148 /* Size of gap. */ | |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
149 #define BUF_GAP_SIZE(buf) ((buf)->text->gap_size) |
193 | 150 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
151 /* Is this buffer narrowed? */ |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
152 #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
|
153 || (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
|
154 |
193 | 155 /* Modification count. */ |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
156 #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
|
157 |
72592
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
158 /* Character modification count. */ |
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
159 #define BUF_CHARS_MODIFF(buf) ((buf)->text->chars_modiff) |
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
160 |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
161 /* 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
|
162 #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
|
163 |
16190
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
164 /* Overlay modification count. */ |
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
165 #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
|
166 |
106813
4040ecb0c904
Try to fix bug#5314. This is probably not the final word, tho.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106185
diff
changeset
|
167 /* Modification count as of last auto-save. */ |
4040ecb0c904
Try to fix bug#5314. This is probably not the final word, tho.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106185
diff
changeset
|
168 /* FIXME: should we move this into ->text->auto_save_modiff? */ |
4040ecb0c904
Try to fix bug#5314. This is probably not the final word, tho.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106185
diff
changeset
|
169 #define BUF_AUTOSAVE_MODIFF(buf) ((buf)->auto_save_modified) |
4040ecb0c904
Try to fix bug#5314. This is probably not the final word, tho.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
106185
diff
changeset
|
170 |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
171 /* Interval tree of buffer. */ |
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
172 #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
|
173 |
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
174 /* Marker chain of buffer. */ |
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
175 #define BUF_MARKERS(buf) ((buf)->text->markers) |
25369
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 #define BUF_UNCHANGED_MODIFIED(buf) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
178 ((buf)->text->unchanged_modified) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
179 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
180 #define BUF_OVERLAY_UNCHANGED_MODIFIED(buf) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
181 ((buf)->text->overlay_unchanged_modified) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
182 #define BUF_BEG_UNCHANGED(buf) ((buf)->text->beg_unchanged) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
183 #define BUF_END_UNCHANGED(buf) ((buf)->text->end_unchanged) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
184 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
185 #define UNCHANGED_MODIFIED \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
186 BUF_UNCHANGED_MODIFIED (current_buffer) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
187 #define OVERLAY_UNCHANGED_MODIFIED \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
188 BUF_OVERLAY_UNCHANGED_MODIFIED (current_buffer) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
189 #define BEG_UNCHANGED BUF_BEG_UNCHANGED (current_buffer) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
190 #define END_UNCHANGED BUF_END_UNCHANGED (current_buffer) |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
191 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
192 /* 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
|
193 unchanged when the range START..END is modified. This computation |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
194 must be done each time BUF is modified. */ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
195 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
196 #define BUF_COMPUTE_UNCHANGED(buf, start, end) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
197 do \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
198 { \ |
39320
4a21ecd55278
(BUF_COMPUTE_UNCHANGED): Use BUF_MODIFF and
Gerd Moellmann <gerd@gnu.org>
parents:
37753
diff
changeset
|
199 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
|
200 && (BUF_OVERLAY_UNCHANGED_MODIFIED (buf) \ |
4a21ecd55278
(BUF_COMPUTE_UNCHANGED): Use BUF_MODIFF and
Gerd Moellmann <gerd@gnu.org>
parents:
37753
diff
changeset
|
201 == BUF_OVERLAY_MODIFF (buf))) \ |
25369
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
202 { \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
203 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
204 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
205 } \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
206 else \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
207 { \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
208 if (BUF_Z (buf) - (end) < BUF_END_UNCHANGED (buf)) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
209 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
210 if ((start) - BUF_BEG (buf) < BUF_BEG_UNCHANGED (buf)) \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
211 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
212 } \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
213 } \ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
214 while (0) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
215 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
216 |
42644 | 217 /* Macros to set PT in the current buffer, or another buffer. */ |
193 | 218 |
93111
f84051049637
* intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93110
diff
changeset
|
219 #define SET_PT(position) (set_point (position)) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
220 #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
|
221 |
93111
f84051049637
* intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93110
diff
changeset
|
222 #define SET_PT_BOTH(position, byte) (set_point_both (position, byte)) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
223 #define TEMP_SET_PT_BOTH(position, byte) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
224 (temp_set_point_both (current_buffer, (position), (byte))) |
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 #define BUF_TEMP_SET_PT(buffer, position) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
227 (temp_set_point ((buffer), (position))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
228 |
109099 | 229 extern void set_point (EMACS_INT); |
111658
16543b266e85
Remove INLINE uses in header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
111332
diff
changeset
|
230 extern void temp_set_point (struct buffer *, EMACS_INT); |
109099 | 231 extern void set_point_both (EMACS_INT, EMACS_INT); |
111658
16543b266e85
Remove INLINE uses in header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
111332
diff
changeset
|
232 extern void temp_set_point_both (struct buffer *, |
16543b266e85
Remove INLINE uses in header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
111332
diff
changeset
|
233 EMACS_INT, EMACS_INT); |
109099 | 234 extern void enlarge_buffer_text (struct buffer *, EMACS_INT); |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
235 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
236 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
237 /* 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
|
238 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
239 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
|
240 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
241 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
|
242 which must correspond to each other. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
243 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
244 The macros without ..._BOTH take just a charpos, |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
245 and compute the bytepos from it. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
246 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
247 #define SET_BUF_BEGV(buf, charpos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
248 ((buf)->begv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
249 (buf)->begv = (charpos)) |
17023
78f7b873184b
(BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents:
16442
diff
changeset
|
250 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
251 #define SET_BUF_ZV(buf, charpos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
252 ((buf)->zv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
253 (buf)->zv = (charpos)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
254 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
255 #define SET_BUF_BEGV_BOTH(buf, charpos, byte) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
256 ((buf)->begv = (charpos), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
257 (buf)->begv_byte = (byte)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
258 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
259 #define SET_BUF_ZV_BOTH(buf, charpos, byte) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
260 ((buf)->zv = (charpos), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
261 (buf)->zv_byte = (byte)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
262 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
263 #define SET_BUF_PT_BOTH(buf, charpos, byte) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
264 ((buf)->pt = (charpos), \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
265 (buf)->pt_byte = (byte)) |
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 /* 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
|
268 or convert between a byte position and an address. |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
269 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
|
270 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
271 /* Access a Lisp position value in POS, |
31219 | 272 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
|
273 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
274 #define DECODE_POSITION(charpos, bytepos, pos) \ |
91617
431b8edb4f39
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91327
diff
changeset
|
275 do \ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
276 { \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
277 Lisp_Object __pos = (pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
278 if (NUMBERP (__pos)) \ |
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 charpos = __pos; \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
281 bytepos = buf_charpos_to_bytepos (current_buffer, __pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
282 } \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
283 else if (MARKERP (__pos)) \ |
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 charpos = marker_position (__pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
286 bytepos = marker_byte_position (__pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
287 } \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
288 else \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
289 wrong_type_argument (Qinteger_or_marker_p, __pos); \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
290 } \ |
91617
431b8edb4f39
Use "do...while (0)", not "if (1)..else" in macro definitions.
Jan Djärv <jan.h.d@swipnet.se>
parents:
91327
diff
changeset
|
291 while (0) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
292 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
293 /* 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
|
294 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
295 #define BYTE_POS_ADDR(n) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
296 (((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
|
297 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
298 /* Return the address of char position N. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
299 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
300 #define CHAR_POS_ADDR(n) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
301 (((n) >= GPT ? GAP_SIZE : 0) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
302 + buf_charpos_to_bytepos (current_buffer, n) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
303 + BEG_ADDR - BEG_BYTE) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
304 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
305 /* Convert a character position to a byte position. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
306 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
307 #define CHAR_TO_BYTE(charpos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
308 (buf_charpos_to_bytepos (current_buffer, charpos)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
309 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
310 /* Convert a byte position to a character position. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
311 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
312 #define BYTE_TO_CHAR(bytepos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
313 (buf_bytepos_to_charpos (current_buffer, bytepos)) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
314 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
315 /* Convert PTR, the address of a byte in the buffer, into a byte position. */ |
193 | 316 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
317 #define PTR_BYTE_POS(ptr) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
318 ((ptr) - (current_buffer)->text->beg \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
319 - (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
|
320 + BEG_BYTE) |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
321 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
322 /* Return character at byte position POS. */ |
20553
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 #define FETCH_CHAR(pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
325 (!NILP (current_buffer->enable_multibyte_characters) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
326 ? FETCH_MULTIBYTE_CHAR ((pos)) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
327 : FETCH_BYTE ((pos))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
328 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
329 /* Return the byte at byte position N. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
330 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
331 #define FETCH_BYTE(n) *(BYTE_POS_ADDR ((n))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
332 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
333 /* Variables used locally in FETCH_MULTIBYTE_CHAR. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
334 extern unsigned char *_fetch_multibyte_char_p; |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
335 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
336 /* Return character code of multi-byte form at byte position POS. If POS |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
337 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
|
338 POS is returned. No range checking. */ |
193 | 339 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
340 #define FETCH_MULTIBYTE_CHAR(pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
341 (_fetch_multibyte_char_p = (((pos) >= GPT_BYTE ? GAP_SIZE : 0) \ |
89483 | 342 + (pos) + BEG_ADDR - BEG_BYTE), \ |
106185
f2cea199b0c4
* character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Remove
Andreas Schwab <schwab@linux-m68k.org>
parents:
105661
diff
changeset
|
343 STRING_CHAR (_fetch_multibyte_char_p)) |
89019
0df387138bce
(_fetch_multibyte_char_len): Extern deleted.
Kenichi Handa <handa@m17n.org>
parents:
88355
diff
changeset
|
344 |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
345 /* Return character at byte position POS. If the current buffer is unibyte |
89019
0df387138bce
(_fetch_multibyte_char_len): Extern deleted.
Kenichi Handa <handa@m17n.org>
parents:
88355
diff
changeset
|
346 and the character is not ASCII, make the returning character |
0df387138bce
(_fetch_multibyte_char_len): Extern deleted.
Kenichi Handa <handa@m17n.org>
parents:
88355
diff
changeset
|
347 multibyte. */ |
0df387138bce
(_fetch_multibyte_char_len): Extern deleted.
Kenichi Handa <handa@m17n.org>
parents:
88355
diff
changeset
|
348 |
0df387138bce
(_fetch_multibyte_char_len): Extern deleted.
Kenichi Handa <handa@m17n.org>
parents:
88355
diff
changeset
|
349 #define FETCH_CHAR_AS_MULTIBYTE(pos) \ |
0df387138bce
(_fetch_multibyte_char_len): Extern deleted.
Kenichi Handa <handa@m17n.org>
parents:
88355
diff
changeset
|
350 (!NILP (current_buffer->enable_multibyte_characters) \ |
0df387138bce
(_fetch_multibyte_char_len): Extern deleted.
Kenichi Handa <handa@m17n.org>
parents:
88355
diff
changeset
|
351 ? FETCH_MULTIBYTE_CHAR ((pos)) \ |
105661
bac26aa40069
Remove leftover table unibyte_to_multibyte_table.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104279
diff
changeset
|
352 : UNIBYTE_TO_CHAR (FETCH_BYTE ((pos)))) |
89019
0df387138bce
(_fetch_multibyte_char_len): Extern deleted.
Kenichi Handa <handa@m17n.org>
parents:
88355
diff
changeset
|
353 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
354 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
355 /* Macros for accessing a character or byte, |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
356 or converting between byte positions and addresses, |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
357 in a specified buffer. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
358 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
359 /* Return the address of character at byte position POS in buffer BUF. |
193 | 360 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
|
361 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
362 #define BUF_BYTE_ADDRESS(buf, pos) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
363 ((buf)->text->beg + (pos) - BEG_BYTE \ |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
364 + ((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
|
365 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
366 /* 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
|
367 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
|
368 |
193 | 369 #define BUF_CHAR_ADDRESS(buf, pos) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
370 ((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
|
371 + ((pos) >= (buf)->text->gpt ? (buf)->text->gap_size : 0)) |
193 | 372 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
373 /* 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
|
374 into a character position. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
375 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
376 #define BUF_PTR_BYTE_POS(buf, ptr) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
377 ((ptr) - (buf)->text->beg \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
378 - (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
|
379 ? 0 : BUF_GAP_SIZE ((buf))) \ |
50627
4135e9f40991
Don't hardcode BEG==1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49600
diff
changeset
|
380 + BEG_BYTE) |
8061
ce94573db44d
(BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
381 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
382 /* 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
|
383 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
384 #define BUF_FETCH_CHAR(buf, pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
385 (!NILP (buf->enable_multibyte_characters) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
386 ? BUF_FETCH_MULTIBYTE_CHAR ((buf), (pos)) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
387 : BUF_FETCH_BYTE ((buf), (pos))) |
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 /* 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
|
390 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
391 #define BUF_FETCH_BYTE(buf, n) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
392 *(BUF_BYTE_ADDRESS ((buf), (n))) |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
393 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
394 /* 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
|
395 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
|
396 POS is returned. No range checking. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
397 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
398 #define BUF_FETCH_MULTIBYTE_CHAR(buf, pos) \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
399 (_fetch_multibyte_char_p \ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
400 = (((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
|
401 + (pos) + BUF_BEG_ADDR (buf) - BEG_BYTE), \ |
106185
f2cea199b0c4
* character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Remove
Andreas Schwab <schwab@linux-m68k.org>
parents:
105661
diff
changeset
|
402 STRING_CHAR (_fetch_multibyte_char_p)) |
193 | 403 |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
404 /* Define the actual buffer data structures. */ |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
405 |
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
406 /* 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
|
407 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
|
408 |
193 | 409 struct buffer_text |
410 { | |
26486
b16a6381a87b
(struct buffer_text): Add comment about moving
Gerd Moellmann <gerd@gnu.org>
parents:
26404
diff
changeset
|
411 /* 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
|
412 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
|
413 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
|
414 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
|
415 unsigned char *beg; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
416 |
51854
f8d1f1c48e3e
(struct buffer_text, struct buffer): Use EMACS_INT for
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51834
diff
changeset
|
417 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
|
418 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
|
419 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
|
420 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
|
421 EMACS_INT gap_size; /* Size of buffer's gap. */ |
193 | 422 int modiff; /* This counts buffer-modification events |
423 for this buffer. It is incremented for | |
424 each such event, and never otherwise | |
425 changed. */ | |
72592
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
426 int chars_modiff; /* This is modified with character change |
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
427 events for this buffer. It is set to |
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
428 modiff for each such event, and never |
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
72005
diff
changeset
|
429 otherwise changed. */ |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
430 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
|
431 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
|
432 |
16190
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
433 int overlay_modiff; /* Counts modifications to overlays. */ |
45a956359a95
(struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents:
16066
diff
changeset
|
434 |
25369
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
435 /* 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
|
436 EMACS_INT beg_unchanged; |
25369
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
437 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
438 /* 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
|
439 EMACS_INT end_unchanged; |
25369
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
440 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
441 /* 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
|
442 beg_unchanged and end_unchanged contain no useful information. */ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
443 int unchanged_modified; |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
444 |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
445 /* 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
|
446 finished; if it matches BUF_OVERLAY_MODIFF, beg_unchanged and |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
447 end_unchanged contain no useful information. */ |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
448 int overlay_unchanged_modified; |
7b65011c5136
(BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents:
25351
diff
changeset
|
449 |
30910 | 450 /* Properties of this buffer's text. */ |
451 INTERVAL intervals; | |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
452 |
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
453 /* 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
|
454 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
|
455 successive elements in its marker `chain' |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
456 are the other markers referring to this buffer. |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
457 This is a singly linked unordered list, which means that it's |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
458 very cheap to add a marker to the list and it's also very cheap |
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
459 to move a marker within a buffer. */ |
51667
52d50e52438f
(struct buffer_text): Lisp_Object `markers' => Lisp_Marker.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51191
diff
changeset
|
460 struct Lisp_Marker *markers; |
90773
19c4543f1154
(struct buffer_text): New member inhibit_shrinking.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
461 |
19c4543f1154
(struct buffer_text): New member inhibit_shrinking.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
462 /* Usually 0. Temporarily set to 1 in decode_coding_gap to |
111332
13a509edfa26
Mere anarchy is loosed upon the world.
Glenn Morris <rgm@gnu.org>
parents:
110554
diff
changeset
|
463 prevent Fgarbage_collect from shrinking the gap and losing |
90773
19c4543f1154
(struct buffer_text): New member inhibit_shrinking.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
464 not-yet-decoded bytes. */ |
19c4543f1154
(struct buffer_text): New member inhibit_shrinking.
Kenichi Handa <handa@m17n.org>
parents:
90737
diff
changeset
|
465 int inhibit_shrinking; |
193 | 466 }; |
467 | |
20553
a49deda9f5e6
(DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
20304
diff
changeset
|
468 /* 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
|
469 |
193 | 470 struct buffer |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
471 { |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
472 /* 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
|
473 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
|
474 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
475 Check out mark_buffer (alloc.c) to see why. */ |
193 | 476 |
85022
96eb42c9e0e3
* window.h (struct window):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78501
diff
changeset
|
477 EMACS_UINT size; |
193 | 478 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
479 /* 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
|
480 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
|
481 collect killed buffers properly. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
482 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
|
483 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
|
484 struct buffer *next; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
485 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
486 /* 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
|
487 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
|
488 struct buffer_text own_text; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
489 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
490 /* 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
|
491 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
|
492 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
|
493 struct buffer_text *text; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
494 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
495 /* 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
|
496 EMACS_INT pt; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
497 /* 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
|
498 EMACS_INT pt_byte; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
499 /* 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
|
500 EMACS_INT begv; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
501 /* 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
|
502 EMACS_INT begv_byte; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
503 /* 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
|
504 EMACS_INT zv; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
505 /* 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
|
506 EMACS_INT zv_byte; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
507 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
508 /* 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
|
509 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
|
510 struct buffer *base_buffer; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
511 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
512 /* 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
|
513 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
|
514 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
|
515 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
|
516 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
|
517 #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
|
518 char local_flags[MAX_PER_BUFFER_VARS]; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
519 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
520 /* 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
|
521 -1 means visited file was nonexistent. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
522 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
|
523 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
|
524 int modtime; |
107845
688679bd79f5
Try to detect file modification within the same second.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107617
diff
changeset
|
525 /* Size of the file when modtime was set. This is used to detect the |
688679bd79f5
Try to detect file modification within the same second.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107617
diff
changeset
|
526 case where the file grew while we were reading it, so the modtime |
688679bd79f5
Try to detect file modification within the same second.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107617
diff
changeset
|
527 is still the same (since it's rounded up to seconds) but we're actually |
688679bd79f5
Try to detect file modification within the same second.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107617
diff
changeset
|
528 not up-to-date. -1 means the size is unknown. Only meaningful if |
688679bd79f5
Try to detect file modification within the same second.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107617
diff
changeset
|
529 modtime is actually set. */ |
688679bd79f5
Try to detect file modification within the same second.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107617
diff
changeset
|
530 EMACS_INT modtime_size; |
42087
32f317cd7f01
(struct buffer): New field `display_error_modiff'.
Richard M. Stallman <rms@gnu.org>
parents:
40740
diff
changeset
|
531 /* 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
|
532 int auto_save_modified; |
42087
32f317cd7f01
(struct buffer): New field `display_error_modiff'.
Richard M. Stallman <rms@gnu.org>
parents:
40740
diff
changeset
|
533 /* 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
|
534 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
|
535 int display_error_modiff; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
536 /* 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
|
537 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
|
538 int auto_save_failure_time; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
539 /* 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
|
540 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
|
541 EMACS_INT last_window_start; |
193 | 542 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
543 /* 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
|
544 int clip_changed; |
12471
a188da6410e4
(struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents:
11681
diff
changeset
|
545 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
546 /* 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
|
547 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
|
548 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
|
549 width run cache. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
550 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
551 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
|
552 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
|
553 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
|
554 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
555 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
|
556 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
|
557 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
|
558 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
|
559 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
|
560 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
|
561 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
|
562 struct region_cache *newline_cache; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
563 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
|
564 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
565 /* 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
|
566 displaying this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
567 unsigned prevent_redisplay_optimizations_p : 1; |
193 | 568 |
51834
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
569 /* 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
|
570 in order of end-position. */ |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
571 struct Lisp_Overlay *overlays_before; |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
572 |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
573 /* 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
|
574 in order of start-position. */ |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
575 struct Lisp_Overlay *overlays_after; |
a8777e8d1b68
(struct buffer): Change overlays_before and overlays_after
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51821
diff
changeset
|
576 |
51821
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
577 /* 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
|
578 EMACS_INT overlay_center; |
71950df19cb6
(struct buffer): Use an int for overlay_center.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51667
diff
changeset
|
579 |
91779
b4aeed11a1d7
(struct buffer): Comment fix to clarify the status of Lisp fields.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91696
diff
changeset
|
580 /* Everything from here down must be a Lisp_Object. */ |
b4aeed11a1d7
(struct buffer): Comment fix to clarify the status of Lisp fields.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91696
diff
changeset
|
581 /* buffer-local Lisp variables start at `undo_list', |
b4aeed11a1d7
(struct buffer): Comment fix to clarify the status of Lisp fields.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91696
diff
changeset
|
582 tho only the ones from `name' on are GC'd normally. */ |
b4aeed11a1d7
(struct buffer): Comment fix to clarify the status of Lisp fields.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91696
diff
changeset
|
583 |
86164
e509314f0d59
(struct buffer): Move `undo_list' back to before `name'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
584 /* Changes in the buffer are recorded here for undo. |
e509314f0d59
(struct buffer): Move `undo_list' back to before `name'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
585 t means don't record anything. |
e509314f0d59
(struct buffer): Move `undo_list' back to before `name'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
586 This information belongs to the base buffer of an indirect buffer, |
e509314f0d59
(struct buffer): Move `undo_list' back to before `name'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
587 But we can't store it in the struct buffer_text |
e509314f0d59
(struct buffer): Move `undo_list' back to before `name'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
588 because local variables have to be right in the struct buffer. |
e509314f0d59
(struct buffer): Move `undo_list' back to before `name'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
589 So we copy it around in set_buffer_internal. |
e509314f0d59
(struct buffer): Move `undo_list' back to before `name'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
590 This comes before `name' because it is marked in a special way. */ |
e509314f0d59
(struct buffer): Move `undo_list' back to before `name'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
591 Lisp_Object undo_list; |
e509314f0d59
(struct buffer): Move `undo_list' back to before `name'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85022
diff
changeset
|
592 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
593 /* The name of this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
594 Lisp_Object name; |
25019 | 595 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
596 /* 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
|
597 Lisp_Object filename; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
598 /* Dir for expanding relative file names. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
599 Lisp_Object directory; |
78501 | 600 /* True if this buffer has been backed up (if you write to the |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
601 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
|
602 be made). */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
603 /* 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
|
604 Lisp_Object backed_up; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
605 /* Length of file when last read or saved. |
103917
aa5e8ff5a9c4
* fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
Richard M. Stallman <rms@gnu.org>
parents:
100951
diff
changeset
|
606 -1 means auto saving turned off because buffer shrank a lot. |
aa5e8ff5a9c4
* fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
Richard M. Stallman <rms@gnu.org>
parents:
100951
diff
changeset
|
607 -2 means don't turn off auto saving if buffer shrinks. |
aa5e8ff5a9c4
* fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
Richard M. Stallman <rms@gnu.org>
parents:
100951
diff
changeset
|
608 (That value is used with buffer-swap-text.) |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
609 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
|
610 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
|
611 Lisp_Object save_length; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
612 /* 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
|
613 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
|
614 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
|
615 Lisp_Object auto_save_file_name; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
616 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
617 /* Non-nil if buffer read-only. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
618 Lisp_Object read_only; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
619 /* "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
|
620 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
|
621 Lisp_Object mark; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
622 |
104279
de38a863010a
Add comment noting that unbound symbols appear as themselves in local_var_alist.
Chong Yidong <cyd@stupidchicken.com>
parents:
103917
diff
changeset
|
623 /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER) for all |
de38a863010a
Add comment noting that unbound symbols appear as themselves in local_var_alist.
Chong Yidong <cyd@stupidchicken.com>
parents:
103917
diff
changeset
|
624 per-buffer variables of this buffer. For locally unbound |
de38a863010a
Add comment noting that unbound symbols appear as themselves in local_var_alist.
Chong Yidong <cyd@stupidchicken.com>
parents:
103917
diff
changeset
|
625 symbols, just the symbol appears as the element. */ |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
626 Lisp_Object local_var_alist; |
193 | 627 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
628 /* 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
|
629 Lisp_Object major_mode; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
630 /* 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
|
631 Lisp_Object mode_name; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
632 /* 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
|
633 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
|
634 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
635 /* 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
|
636 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
|
637 Lisp_Object header_line_format; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
638 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
639 /* 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
|
640 Lisp_Object keymap; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
641 /* This buffer's local abbrev table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
642 Lisp_Object abbrev_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
643 /* This buffer's syntax table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
644 Lisp_Object syntax_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
645 /* This buffer's category table. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
646 Lisp_Object category_table; |
193 | 647 |
42644 | 648 /* 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
|
649 /* tab-width is buffer-local so that redisplay can find it |
42644 | 650 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
|
651 Lisp_Object case_fold_search; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
652 Lisp_Object tab_width; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
653 Lisp_Object fill_column; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
654 Lisp_Object left_margin; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
655 /* 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
|
656 Lisp_Object auto_fill_function; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
657 /* nil: text, t: binary. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
658 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
|
659 /* 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
|
660 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
|
661 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
|
662 Lisp_Object buffer_file_type; |
193 | 663 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
664 /* 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
|
665 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
|
666 Lisp_Object downcase_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
667 /* 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
|
668 Lisp_Object upcase_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
669 /* 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
|
670 Lisp_Object case_canon_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
671 /* 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
|
672 Lisp_Object case_eqv_table; |
193 | 673 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
674 /* 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
|
675 Lisp_Object truncate_lines; |
96232
6a58401d4e31
(struct buffer): New member word_wrap.
Chong Yidong <cyd@stupidchicken.com>
parents:
94994
diff
changeset
|
676 /* Non-nil means to use word wrapping when displaying continuation lines. */ |
6a58401d4e31
(struct buffer): New member word_wrap.
Chong Yidong <cyd@stupidchicken.com>
parents:
94994
diff
changeset
|
677 Lisp_Object word_wrap; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
678 /* 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
|
679 Lisp_Object ctl_arrow; |
107584
e0df0337f248
Retrospective commit from 2009-08-15.
Eli Zaretskii <eliz@gnu.org>
parents:
107583
diff
changeset
|
680 /* Non-nil means reorder bidirectional text for display in the |
e0df0337f248
Retrospective commit from 2009-08-15.
Eli Zaretskii <eliz@gnu.org>
parents:
107583
diff
changeset
|
681 visual order. */ |
e0df0337f248
Retrospective commit from 2009-08-15.
Eli Zaretskii <eliz@gnu.org>
parents:
107583
diff
changeset
|
682 Lisp_Object bidi_display_reordering; |
107596
866e76f8ad75
Retrospective commit from 2009-10-08.
Eli Zaretskii <eliz@gnu.org>
parents:
107595
diff
changeset
|
683 /* If non-nil, specifies which direction of text to force in all the |
866e76f8ad75
Retrospective commit from 2009-10-08.
Eli Zaretskii <eliz@gnu.org>
parents:
107595
diff
changeset
|
684 paragraphs of the buffer. Nil means determine paragraph |
866e76f8ad75
Retrospective commit from 2009-10-08.
Eli Zaretskii <eliz@gnu.org>
parents:
107595
diff
changeset
|
685 direction dynamically for each paragraph. */ |
107602
d44bdcba4457
Retrospective commit from 2009-11-14.
Eli Zaretskii <eliz@gnu.org>
parents:
107596
diff
changeset
|
686 Lisp_Object bidi_paragraph_direction; |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
687 /* Non-nil means do selective display; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
688 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
|
689 Lisp_Object selective_display; |
193 | 690 #ifndef old |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
691 /* 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
|
692 Lisp_Object selective_display_ellipses; |
193 | 693 #endif |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
694 /* 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
|
695 Lisp_Object minor_modes; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
696 /* 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
|
697 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
|
698 Lisp_Object overwrite_mode; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
699 /* 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
|
700 Lisp_Object abbrev_mode; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
701 /* 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
|
702 Lisp_Object display_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
703 /* 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
|
704 Lisp_Object mark_active; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
705 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
706 /* 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
|
707 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
|
708 Lisp_Object enable_multibyte_characters; |
9404
698990d4feca
* buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents:
8847
diff
changeset
|
709 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
710 /* 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
|
711 saving. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
712 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
|
713 |
42644 | 714 /* 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
|
715 Lisp_Object file_format; |
18179
371736608f2f
(struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
17219
diff
changeset
|
716 |
56975
ef6ff15b0458
(struct buffer): Add auto_save_file_format field.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56135
diff
changeset
|
717 /* 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
|
718 Lisp_Object auto_save_file_format; |
ef6ff15b0458
(struct buffer): Add auto_save_file_format field.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56135
diff
changeset
|
719 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
720 /* 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
|
721 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
|
722 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
|
723 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
724 /* 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
|
725 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
|
726 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
|
727 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
|
728 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
|
729 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
|
730 Lisp_Object width_table; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
731 |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
732 /* 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
|
733 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
|
734 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
|
735 Lisp_Object pt_marker; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
736 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
737 /* 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
|
738 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
|
739 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
|
740 Lisp_Object begv_marker; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
741 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
742 /* 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
|
743 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
|
744 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
|
745 Lisp_Object zv_marker; |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
746 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
747 /* 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
|
748 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
|
749 Lisp_Object point_before_scroll; |
10562
ddc863fd062b
(struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents:
10310
diff
changeset
|
750 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
751 /* 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
|
752 Lisp_Object file_truename; |
10750
7bf07f10bed3
(struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents:
10562
diff
changeset
|
753 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
754 /* Invisibility spec of this buffer. |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
755 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
|
756 A list => `invisible' property means invisible |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
757 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
|
758 Lisp_Object invisibility_spec; |
10966
e55f4cc120b6
(struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents:
10750
diff
changeset
|
759 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
760 /* 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
|
761 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
|
762 Lisp_Object last_selected_window; |
16066
2f421cfff6cc
(strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
763 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
764 /* 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
|
765 Lisp_Object display_count; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
766 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
767 /* 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
|
768 this buffer. */ |
51191
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
769 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
|
770 |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
771 /* 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
|
772 this buffer. */ |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
773 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
|
774 |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
775 /* 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
|
776 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
|
777 Lisp_Object fringes_outside_margins; |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
778 |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
779 /* 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
|
780 this buffer. */ |
6a9e67f99d23
(struct buffer): Rename members measured in columns:
Kim F. Storm <storm@cua.dk>
parents:
50627
diff
changeset
|
781 Lisp_Object scroll_bar_width, vertical_scroll_bar_type; |
25019 | 782 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
783 /* 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
|
784 like vi). */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
785 Lisp_Object indicate_empty_lines; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
786 |
53603
c7c62631959b
(struct buffer): New member indicate_buffer_boundaries.
Kim F. Storm <storm@cua.dk>
parents:
53362
diff
changeset
|
787 /* 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
|
788 Lisp_Object indicate_buffer_boundaries; |
c7c62631959b
(struct buffer): New member indicate_buffer_boundaries.
Kim F. Storm <storm@cua.dk>
parents:
53362
diff
changeset
|
789 |
69048
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
790 /* 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
|
791 Lisp_Object fringe_indicator_alist; |
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
792 |
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
793 /* 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
|
794 Lisp_Object fringe_cursor_alist; |
7e644ce20468
(struct buffer): New members fringe_indicator_alist and
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
795 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
796 /* 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
|
797 Lisp_Object display_time; |
25019 | 798 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
799 /* 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
|
800 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
|
801 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
|
802 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
|
803 Lisp_Object scroll_up_aggressively; |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47859
diff
changeset
|
804 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
805 /* 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
|
806 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
|
807 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
|
808 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
|
809 Lisp_Object scroll_down_aggressively; |
25019 | 810 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
811 /* 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
|
812 per-buffer variable `cursor-type'. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
813 Lisp_Object cursor_type; |
28345
7d1e7bfa5ae1
(struct buffer): Add cursor_type.
Gerd Moellmann <gerd@gnu.org>
parents:
28317
diff
changeset
|
814 |
28687
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
815 /* 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
|
816 in the display of this buffer. */ |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
817 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
|
818 |
12d1ea96b466
(struct buffer): Add cursor_in_non_selected_windows slot.
Richard M. Stallman <rms@gnu.org>
parents:
56975
diff
changeset
|
819 /* *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
|
820 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
|
821 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
|
822 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
|
823 }; |
fd361114073d
(struct buffer): Add extra_line_spacing, remove extra2
Gerd Moellmann <gerd@gnu.org>
parents:
28350
diff
changeset
|
824 |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
825 |
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
826 /* This points to the current buffer. */ |
193 | 827 |
828 extern struct buffer *current_buffer; | |
829 | |
830 /* 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
|
831 that have special slots in each buffer. |
193 | 832 The default value occupies the same slot in this structure |
833 as an individual buffer's value occupies in that buffer. | |
834 Setting the default value also goes through the alist of buffers | |
835 and stores into each buffer that does not say it has a local value. */ | |
836 | |
837 extern struct buffer buffer_defaults; | |
838 | |
839 /* This structure marks which slots in a buffer have corresponding | |
840 default values in buffer_defaults. | |
841 Each such slot has a nonzero value in this structure. | |
842 The value has only one nonzero bit. | |
843 | |
844 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
|
845 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
|
846 is turned on in the buffer's local_flags array. |
193 | 847 |
848 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
|
849 be a Lisp-level local variable for the slot, it has no default value, |
193 | 850 and the corresponding slot in buffer_defaults is not used. */ |
851 | |
107984
bef5d1738c0b
Make variable forwarding explicit rather the using special values.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107845
diff
changeset
|
852 |
193 | 853 extern struct buffer buffer_local_flags; |
854 | |
855 /* For each buffer slot, this points to the Lisp symbol name | |
856 for that slot in the current buffer. It is 0 for slots | |
857 that don't have such names. */ | |
858 | |
859 extern struct buffer buffer_local_symbols; | |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
860 |
109099 | 861 extern void delete_all_overlays (struct buffer *); |
862 extern void reset_buffer (struct buffer *); | |
863 extern void evaporate_overlays (EMACS_INT); | |
864 extern int overlays_at (EMACS_INT pos, int extend, Lisp_Object **vec_ptr, | |
865 int *len_ptr, EMACS_INT *next_ptr, | |
866 EMACS_INT *prev_ptr, int change_req); | |
867 extern int sort_overlays (Lisp_Object *, int, struct window *); | |
868 extern void recenter_overlay_lists (struct buffer *, EMACS_INT); | |
110554
e49fcbdc458f
Fix int/EMACS_INT in eval.c and indent.c, correct previous changes.
Eli Zaretskii <eliz@gnu.org>
parents:
109320
diff
changeset
|
869 extern EMACS_INT overlay_strings (EMACS_INT, struct window *, unsigned char **); |
109099 | 870 extern void validate_region (Lisp_Object *, Lisp_Object *); |
871 extern void set_buffer_internal (struct buffer *); | |
872 extern void set_buffer_internal_1 (struct buffer *); | |
873 extern void set_buffer_temp (struct buffer *); | |
874 extern void record_buffer (Lisp_Object); | |
875 extern void buffer_slot_type_mismatch (Lisp_Object, int) NO_RETURN; | |
876 extern void fix_overlays_before (struct buffer *, EMACS_INT, EMACS_INT); | |
877 extern void mmap_set_vars (int); | |
20304
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
878 |
55649
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
879 /* 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
|
880 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
|
881 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
|
882 |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
883 #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
|
884 do { \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
885 int maxlen = 40; \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
886 overlays = (Lisp_Object *) alloca (maxlen * sizeof (Lisp_Object)); \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
887 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
888 nextp, NULL, chrq); \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
889 if (noverlays > maxlen) \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
890 { \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
891 maxlen = noverlays; \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
892 overlays = (Lisp_Object *) alloca (maxlen * sizeof (Lisp_Object)); \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
893 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
894 nextp, NULL, chrq); \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
895 } \ |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
896 } while (0) |
10e402439453
(GET_OVERLAYS_AT): New macro.
Kim F. Storm <storm@cua.dk>
parents:
53603
diff
changeset
|
897 |
93037
cbb561d8b117
(Fbuffer_list): Declare (for use in callint.c).
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
92237
diff
changeset
|
898 EXFUN (Fbuffer_list, 1); |
88355 | 899 EXFUN (Fbuffer_live_p, 1); |
20304
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
900 EXFUN (Fbuffer_name, 1); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
901 EXFUN (Fget_file_buffer, 1); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
902 EXFUN (Fnext_overlay_change, 1); |
a385b772f453
Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents:
18241
diff
changeset
|
903 EXFUN (Fdelete_overlay, 1); |
40740
f2d03d1dc242
(Fbuffer_local_value): Add prototype.
Pavel Janík <Pavel@Janik.cz>
parents:
39320
diff
changeset
|
904 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
|
905 EXFUN (Fgenerate_new_buffer_name, 2); |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
906 |
10310
b0f6fc3f80b1
(struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents:
9951
diff
changeset
|
907 /* 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
|
908 extern Lisp_Object Vbefore_change_functions; |
25280492d514
(Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
6654
diff
changeset
|
909 extern Lisp_Object Vafter_change_functions; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
910 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
|
911 extern Lisp_Object Qbefore_change_functions; |
d12f56be7f87
(Qbefore_change_functions, Qafter_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents:
12471
diff
changeset
|
912 extern Lisp_Object Qafter_change_functions; |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1596
diff
changeset
|
913 extern Lisp_Object Qfirst_change_hook; |
193 | 914 |
23398
a80f6d8c1dc6
(inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22151
diff
changeset
|
915 /* If nonzero, all modification hooks are suppressed. */ |
a80f6d8c1dc6
(inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22151
diff
changeset
|
916 extern int inhibit_modification_hooks; |
a80f6d8c1dc6
(inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents:
22151
diff
changeset
|
917 |
2051
c1767ea45687
(struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents:
1910
diff
changeset
|
918 extern Lisp_Object Vdeactivate_mark; |
c1767ea45687
(struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents:
1910
diff
changeset
|
919 extern Lisp_Object Vtransient_mark_mode; |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
920 |
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
921 /* Overlays */ |
2051
c1767ea45687
(struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents:
1910
diff
changeset
|
922 |
6098
b91e19be1513
(OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents:
5557
diff
changeset
|
923 /* 1 if the OV is an overlay object. */ |
37753
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
924 |
2782
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2564
diff
changeset
|
925 #define OVERLAY_VALID(OV) (OVERLAYP (OV)) |
193 | 926 |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
927 /* 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
|
928 |
9925
b039e4156d74
(OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9784
diff
changeset
|
929 #define OVERLAY_START(OV) (XOVERLAY (OV)->start) |
193 | 930 |
2390
e611237d4420
(struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents:
2214
diff
changeset
|
931 /* 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
|
932 |
9925
b039e4156d74
(OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents:
9784
diff
changeset
|
933 #define OVERLAY_END(OV) (XOVERLAY (OV)->end) |
193 | 934 |
37753
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
935 /* Return the plist of overlay OV. */ |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
936 |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
937 #define OVERLAY_PLIST(OV) XOVERLAY ((OV))->plist |
3384f5e9fc90
(OVERLAY_PLIST): New macro.
Gerd Moellmann <gerd@gnu.org>
parents:
34498
diff
changeset
|
938 |
6098
b91e19be1513
(OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents:
5557
diff
changeset
|
939 /* 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
|
940 We assume you know which buffer it's pointing into. */ |
193 | 941 |
9951
586bb1122715
(OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9925
diff
changeset
|
942 #define OVERLAY_POSITION(P) \ |
90970
3371fc48749b
Replace uses of GC_* macros with the non-GC_ versions.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
90773
diff
changeset
|
943 (MARKERP (P) ? marker_position (P) : (abort (), 0)) |
193 | 944 |
31605
c3073b2c8dfa
(BUFFER_ALLOC, BUFFER_REALLOC, BUFFER_FREE): Removed.
Gerd Moellmann <gerd@gnu.org>
parents:
31411
diff
changeset
|
945 |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
946 /*********************************************************************** |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
947 Buffer-local Variables |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
948 ***********************************************************************/ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
949 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
950 /* Number of per-buffer variables used. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
951 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
952 extern int last_per_buffer_idx; |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
953 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
954 /* 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
|
955 from the start of a buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
956 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
957 #define PER_BUFFER_VAR_OFFSET(VAR) \ |
109320
a0d2db31314d
Use offsetof instead of own definition
Andreas Schwab <schwab@linux-m68k.org>
parents:
109099
diff
changeset
|
958 offsetof (struct buffer, VAR) |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
959 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
960 /* 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
|
961 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
|
962 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
|
963 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
|
964 buffer_local_flags wasn't intiialized. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
965 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
966 #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
|
967 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
|
968 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
969 /* 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
|
970 in buffer B. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
971 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
972 #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
|
973 (((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
|
974 ? (abort (), 0) \ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
975 : ((B)->local_flags[IDX] != 0)) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
976 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
977 /* 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
|
978 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
|
979 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
980 #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
|
981 do { \ |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
982 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
|
983 abort (); \ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
984 (B)->local_flags[IDX] = (VAL); \ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
985 } while (0) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
986 |
53362 | 987 /* Return the index value of the per-buffer variable at offset OFFSET |
988 in the buffer structure. | |
989 | |
990 If the slot OFFSET has a corresponding default value in | |
991 buffer_defaults, the index value is positive and has only one | |
992 nonzero bit. When a buffer has its own local value for a slot, the | |
993 bit for that slot (found in the same slot in this structure) is | |
994 turned on in the buffer's local_flags array. | |
995 | |
996 If the index value is -1, even though there may be a | |
997 DEFVAR_PER_BUFFER for the slot, there is no default value for it; | |
998 and the corresponding slot in buffer_defaults is not used. | |
999 | |
1000 If the index value is -2, then there is no DEFVAR_PER_BUFFER for | |
1001 the slot, but there is a default value which is copied into each | |
1002 new buffer. | |
1003 | |
1004 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is | |
1005 zero, that is a bug */ | |
1006 | |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1007 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
1008 #define PER_BUFFER_IDX(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1009 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
|
1010 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1011 /* 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
|
1012 OFFSET in the buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1013 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
1014 #define PER_BUFFER_DEFAULT(OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1015 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_defaults)) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1016 |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1017 /* 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
|
1018 OFFSET in the buffer structure. */ |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1019 |
28350
51fbfd80a45f
(MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
Gerd Moellmann <gerd@gnu.org>
parents:
28345
diff
changeset
|
1020 #define PER_BUFFER_VALUE(BUFFER, OFFSET) \ |
28317
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1021 (*(Lisp_Object *)((OFFSET) + (char *) (BUFFER))) |
a7da319e3765
(struct buffer): Remove member local_var_flags,
Gerd Moellmann <gerd@gnu.org>
parents:
26486
diff
changeset
|
1022 |