annotate src/buffer.h @ 23323:0800a4f84757

(underlying_strftime): Set the buffer to a nonzero value before calling strftime, and check to see whether strftime has set the buffer to zero. This lets us distinguish between an empty buffer and an error. I'm installing this patch by hand now; it will be superseded whenever the glibc sources are propagated back to fsf.org.
author Paul Eggert <eggert@twinsun.com>
date Fri, 25 Sep 1998 21:40:23 +0000
parents a48831a21513
children a80f6d8c1dc6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
1 /* Header file for the buffer manipulation primitives.
20708
ed9ed828415e Update copyright year.
Richard M. Stallman <rms@gnu.org>
parents: 20553
diff changeset
2 Copyright (C) 1985, 86, 93, 94, 95, 97, 1998 Free Software Foundation, Inc.
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4 This file is part of GNU Emacs.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6 GNU Emacs is free software; you can redistribute it and/or modify
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
998
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
8 the Free Software Foundation; either version 2, or (at your option)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9 any later version.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 GNU General Public License for more details.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 along with GNU Emacs; see the file COPYING. If not, write to
14186
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 13763
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
ee40177f6c68 Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents: 13763
diff changeset
19 Boston, MA 02111-1307, USA. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
22 /* 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
23
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
24 /* 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
25 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
26
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
27 /* Position of beginning of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
28 #define BEG (1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
29 #define BEG_BYTE (1)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
30
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
31 /* Position of beginning of accessible range of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
32 #define BEGV (current_buffer->begv)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
33 #define BEGV_BYTE (current_buffer->begv_byte)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
34
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
35 /* Position of point in buffer. The "+ 0" makes this
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
36 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
37 #define PT (current_buffer->pt + 0)
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
38 #define PT_BYTE (current_buffer->pt_byte + 0)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
39
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
40 /* 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
41 #define GPT (current_buffer->text->gpt)
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
42 #define GPT_BYTE (current_buffer->text->gpt_byte)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
43
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
44 /* 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
45 #define ZV (current_buffer->zv)
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
46 #define ZV_BYTE (current_buffer->zv_byte)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
47
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
48 /* 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
49 #define Z (current_buffer->text->z)
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
50 #define Z_BYTE (current_buffer->text->z_byte)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
51
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
52 /* Macros for the addresses of places in the buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
53
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
54 /* Address of beginning of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
55 #define BEG_ADDR (current_buffer->text->beg)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
56
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
57 /* Address of beginning of accessible range of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
58 #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
59
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
60 /* Address of point in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
61 #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
62
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
63 /* Address of beginning of gap in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
64 #define GPT_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte - 1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
65
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
66 /* Address of end of gap in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
67 #define GAP_END_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte + current_buffer->text->gap_size - 1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
68
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
69 /* Address of end of accessible range of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
70 #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
71
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
72 /* Address of end of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
73 #define Z_ADDR (current_buffer->text->beg + current_buffer->text->gap_size + current_buffer->text->z_byte - 1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
74
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
75 /* Size of gap. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
76 #define GAP_SIZE (current_buffer->text->gap_size)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
77
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
78 /* 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
79 #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
80
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
81 /* Modification count. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
82 #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
83
16190
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
84 /* Overlay modification count. */
16191
7397d7d0ed17 Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 16190
diff changeset
85 #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
86
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
87 /* 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
88 #define SAVE_MODIFF (current_buffer->text->save_modiff)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
89
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
90 /* 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
91 the max (resp. min) p such that
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
92
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
93 BYTE_POS_ADDR (p) - BYTE_POS_ADDR (n) == p - n */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
94
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
95 #define BUFFER_CEILING_OF(BYTEPOS) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
96 (((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
97 #define BUFFER_FLOOR_OF(BYTEPOS) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
98 (BEGV <= GPT && GPT_BYTE <= (BYTEPOS) ? GPT_BYTE : BEGV_BYTE)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
99
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
100 /* Similar macros to operate on a specified buffer.
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
101 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
102
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
103 /* Position of beginning of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
104 #define BUF_BEG(buf) (1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
105 #define BUF_BEG_BYTE(buf) (1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
106
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
107 /* Position of beginning of accessible range of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
108 #define BUF_BEGV(buf) ((buf)->begv)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
109 #define BUF_BEGV_BYTE(buf) ((buf)->begv_byte)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
110
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
111 /* Position of point in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
112 #define BUF_PT(buf) ((buf)->pt)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
113 #define BUF_PT_BYTE(buf) ((buf)->pt_byte)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
114
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
115 /* Position of gap in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
116 #define BUF_GPT(buf) ((buf)->text->gpt)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
117 #define BUF_GPT_BYTE(buf) ((buf)->text->gpt_byte)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
118
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
119 /* Position of end of accessible range of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
120 #define BUF_ZV(buf) ((buf)->zv)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
121 #define BUF_ZV_BYTE(buf) ((buf)->zv_byte)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
122
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
123 /* Position of end of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
124 #define BUF_Z(buf) ((buf)->text->z)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
125 #define BUF_Z_BYTE(buf) ((buf)->text->z_byte)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
126
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
127 /* Address of beginning of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
128 #define BUF_BEG_ADDR(buf) ((buf)->text->beg)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
129
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
130 /* Address of beginning of gap of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
131 #define BUF_GPT_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte - 1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
132
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
133 /* Address of end of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
134 #define BUF_Z_ADDR(buf) ((buf)->text->beg + (buf)->text->gap_size + (buf)->text->z_byte - 1)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
135
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
136 /* Address of end of gap in buffer. */
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
137 #define BUF_GAP_END_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte + (buf)->text->gap_size - 1)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
138
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
139 /* Size of gap. */
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
140 #define BUF_GAP_SIZE(buf) ((buf)->text->gap_size)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
141
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
142 /* Is this buffer narrowed? */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
143 #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
144 || (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
145
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
146 /* Modification count. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
147 #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
148
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
149 /* 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
150 #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
151
16190
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
152 /* Overlay modification count. */
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
153 #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
154
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
155 /* Interval tree of buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
156 #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
157
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
158 /* Marker chain of buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
159 #define BUF_MARKERS(buf) ((buf)->text->markers)
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
160
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
161 /* Macros to set PT in the current buffer, or another buffer.. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
162
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
163 #ifdef USE_TEXT_PROPERTIES
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
164 #define SET_PT(position) (set_point (current_buffer, (position)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
165 #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
166
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
167 #define SET_PT_BOTH(position, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
168 (set_point_both (current_buffer, (position), (byte)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
169 #define TEMP_SET_PT_BOTH(position, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
170 (temp_set_point_both (current_buffer, (position), (byte)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
171
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
172 #define BUF_SET_PT(buffer, position) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
173 (set_point ((buffer), (position)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
174 #define BUF_TEMP_SET_PT(buffer, position) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
175 (temp_set_point ((buffer), (position)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
176
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
177 extern void set_point P_ ((struct buffer *, int));
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
178 extern INLINE void temp_set_point P_ ((struct buffer *, int));
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
179 extern void set_point_both P_ ((struct buffer *, int, int));
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
180 extern INLINE void temp_set_point_both P_ ((struct buffer *, int, int));
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
181
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
182 #else /* don't support text properties */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
183
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
184 #define SET_PT(position) (current_buffer->pt = (position))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
185 #define TEMP_SET_PT(position) (current_buffer->pt = (position))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
186
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
187 #define SET_PT_BOTH(position, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
188 (current_buffer->pt = (position), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
189 current_buffer->pt_byte = (byte))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
190
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
191 #define TEMP_SET_PT_BOTH(position, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
192 (current_buffer->pt = (position), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
193 current_buffer->pt_byte = (byte))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
194
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
195 #define BUF_SET_PT(buffer, position) (buffer->pt = (position))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
196 #define BUF_TEMP_SET_PT(buffer, position) (buffer->pt = (position))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
197 #endif /* don't support text properties */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
198
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
199 /* 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
200
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
201 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
202
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
203 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
204 which must correspond to each other.
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
205
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
206 The macros without ..._BOTH take just a charpos,
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
207 and compute the bytepos from it. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
208
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
209 #define SET_BUF_BEGV(buf, charpos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
210 ((buf)->begv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
211 (buf)->begv = (charpos))
17023
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
212
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
213 #define SET_BUF_ZV(buf, charpos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
214 ((buf)->zv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
215 (buf)->zv = (charpos))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
216
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
217 #define SET_BUF_BEGV_BOTH(buf, charpos, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
218 ((buf)->begv = (charpos), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
219 (buf)->begv_byte = (byte))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
220
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
221 #define SET_BUF_ZV_BOTH(buf, charpos, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
222 ((buf)->zv = (charpos), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
223 (buf)->zv_byte = (byte))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
224
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
225 #define SET_BUF_PT_BOTH(buf, charpos, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
226 ((buf)->pt = (charpos), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
227 (buf)->pt_byte = (byte))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
228
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
229 /* 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
230 or convert between a byte position and an address.
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
231 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
232
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
233 /* Access a Lisp position value in POS,
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
234 and store the charpos in CHARPOS and the bypepos in BYPEPOS. */
17023
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
235
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
236 #define DECODE_POSITION(charpos, bytepos, pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
237 if (1) \
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 Lisp_Object __pos = (pos); \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
240 if (NUMBERP (__pos)) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
241 { \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
242 charpos = __pos; \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
243 bytepos = buf_charpos_to_bytepos (current_buffer, __pos); \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
244 } \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
245 else if (MARKERP (__pos)) \
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 charpos = marker_position (__pos); \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
248 bytepos = marker_byte_position (__pos); \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
249 } \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
250 else \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
251 wrong_type_argument (Qinteger_or_marker_p, __pos); \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
252 } \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
253 else
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 /* 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
256
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
257 #define BYTE_POS_ADDR(n) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
258 (((n) >= GPT_BYTE ? GAP_SIZE : 0) + (n) + BEG_ADDR - 1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
259
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
260 /* Return the address of char position N. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
261
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
262 #define CHAR_POS_ADDR(n) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
263 (((n) >= GPT ? GAP_SIZE : 0) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
264 + buf_charpos_to_bytepos (current_buffer, n) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
265 + BEG_ADDR - 1)
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 /* Convert a character position to a byte position. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
268
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
269 #define CHAR_TO_BYTE(charpos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
270 (buf_charpos_to_bytepos (current_buffer, charpos))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
271
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
272 /* Convert a byte position to a character position. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
273
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
274 #define BYTE_TO_CHAR(bytepos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
275 (buf_bytepos_to_charpos (current_buffer, bytepos))
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 /* Convert PTR, the address of a byte in the buffer, into a byte position. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
278
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
279 #define PTR_BYTE_POS(ptr) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
280 ((ptr) - (current_buffer)->text->beg \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
281 - (ptr - (current_buffer)->text->beg < (unsigned) GPT_BYTE ? 0 : GAP_SIZE) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
282 + 1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
283
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
284 /* Return character at position POS. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
285
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
286 #define FETCH_CHAR(pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
287 (!NILP (current_buffer->enable_multibyte_characters) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
288 ? FETCH_MULTIBYTE_CHAR ((pos)) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
289 : FETCH_BYTE ((pos)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
290
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
291 /* Return the byte at byte position N. */
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 #define FETCH_BYTE(n) *(BYTE_POS_ADDR ((n)))
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 /* Variables used locally in FETCH_MULTIBYTE_CHAR. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
296 extern unsigned char *_fetch_multibyte_char_p;
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
297 extern int _fetch_multibyte_char_len;
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
298
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
299 /* Return character code of multi-byte form at position POS. If POS
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
300 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
301 POS is returned. No range checking. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
302
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
303 #define FETCH_MULTIBYTE_CHAR(pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
304 (_fetch_multibyte_char_p = (((pos) >= GPT_BYTE ? GAP_SIZE : 0) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
305 + (pos) + BEG_ADDR - 1), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
306 _fetch_multibyte_char_len \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
307 = ((pos) >= GPT_BYTE ? ZV_BYTE : GPT_BYTE) - (pos), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
308 STRING_CHAR (_fetch_multibyte_char_p, _fetch_multibyte_char_len))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
309
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
310 /* Macros for accessing a character or byte,
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
311 or converting between byte positions and addresses,
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
312 in a specified buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
313
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
314 /* Return the address of character at byte position POS in buffer BUF.
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
315 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
316
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
317 #define BUF_BYTE_ADDRESS(buf, pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
318 ((buf)->text->beg + (pos) - 1 \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
319 + ((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
320
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
321 /* Return the address of character at char position POS in buffer BUF.
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
322 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
323
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
324 #define BUF_CHAR_ADDRESS(buf, pos) \
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
325 ((buf)->text->beg + buf_charpos_to_bytepos ((buf), (pos)) - 1 \
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
326 + ((pos) >= (buf)->text->gpt ? (buf)->text->gap_size : 0))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
327
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
328 /* 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
329 into a character position. */
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 BUF_PTR_BYTE_POS(buf, ptr) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
332 ((ptr) - (buf)->text->beg \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
333 - (ptr - (buf)->text->beg < (unsigned) BUF_GPT_BYTE ((buf)) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
334 ? 0 : BUF_GAP_SIZE ((buf))) \
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
335 + 1)
8061
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
336
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
337 /* 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
338
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
339 #define BUF_FETCH_CHAR(buf, pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
340 (!NILP (buf->enable_multibyte_characters) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
341 ? BUF_FETCH_MULTIBYTE_CHAR ((buf), (pos)) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
342 : BUF_FETCH_BYTE ((buf), (pos)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
343
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
344 /* 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
345
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
346 #define BUF_FETCH_BYTE(buf, n) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
347 *(BUF_BYTE_ADDRESS ((buf), (n)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
348
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
349 /* 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
350 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
351 POS is returned. No range checking. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
352
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
353 #define BUF_FETCH_MULTIBYTE_CHAR(buf, pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
354 (_fetch_multibyte_char_p \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
355 = (((pos) >= BUF_GPT_BYTE (buf) ? BUF_GAP_SIZE (buf) : 0) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
356 + (pos) + BUF_BEG_ADDR (buf) - 1), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
357 _fetch_multibyte_char_len \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
358 = (((pos) >= BUF_GPT_BYTE (buf) ? BUF_ZV_BYTE (buf) : BUF_GPT_BYTE (buf)) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
359 - (pos)), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
360 STRING_CHAR (_fetch_multibyte_char_p, _fetch_multibyte_char_len))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
361
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
362 /* Define the actual buffer data structures. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
363
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
364 /* 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
365 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
366
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
367 struct buffer_text
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
368 {
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
369 unsigned char *beg; /* Actual address of buffer contents. */
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
370 int gpt; /* Char pos of gap in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
371 int z; /* Char pos of end of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
372 int gpt_byte; /* Byte pos of gap in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
373 int z_byte; /* Byte pos of end of buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
374 int gap_size; /* Size of buffer's gap. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
375 int modiff; /* This counts buffer-modification events
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
376 for this buffer. It is incremented for
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
377 each such event, and never otherwise
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
378 changed. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
379 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
380 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
381
16190
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
382 int overlay_modiff; /* Counts modifications to overlays. */
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
383
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
384 /* Properties of this buffer's text -- conditionally compiled. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
385 DECLARE_INTERVALS
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
386
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
387 /* 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
388 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
389 successive elements in its marker `chain'
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
390 are the other markers referring to this buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
391 Lisp_Object markers;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
392 };
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
393
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
394 /* 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
395
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
396 struct buffer
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
397 {
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
398 /* Everything before the `name' slot must be of a non-Lisp_Object type,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
399 and every slot after `name' must be a Lisp_Object.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
400
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
401 Check out mark_buffer (alloc.c) to see why. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
402
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
403 EMACS_INT size;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
404
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
405 /* Next buffer, in chain of all buffers including killed buffers.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
406 This chain is used only for garbage collection, in order to
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
407 collect killed buffers properly.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
408 Note that vectors and most pseudovectors are all on one chain,
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
409 but buffers are on a separate chain of their own. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
410 struct buffer *next;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
411
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
412 /* This structure holds the coordinates of the buffer contents
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
413 in ordinary buffers. In indirect buffers, this is not used. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
414 struct buffer_text own_text;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
415
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
416 /* This points to the `struct buffer_text' that used for this buffer.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
417 In an ordinary buffer, this is the own_text field above.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
418 In an indirect buffer, this is the own_text field of another buffer. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
419 struct buffer_text *text;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
420
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
421 /* Char position of point in buffer. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
422 int pt;
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
423 /* Byte position of point in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
424 int pt_byte;
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
425 /* Char position of beginning of accessible range. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
426 int begv;
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
427 /* Byte position of beginning of accessible range. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
428 int begv_byte;
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
429 /* Char position of end of accessible range. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
430 int zv;
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
431 /* Byte position of end of accessible range. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
432 int zv_byte;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
433
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
434 /* In an indirect buffer, this points to the base buffer.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
435 In an ordinary buffer, it is 0. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
436 struct buffer *base_buffer;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
437
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
438 /* Flags saying which DEFVAR_PER_BUFFER variables
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
439 are local to this buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
440 int local_var_flags;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
441 /* Set to the modtime of the visited file when read or written.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
442 -1 means visited file was nonexistent.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
443 0 means visited file modtime unknown; in no case complain
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
444 about any mismatch on next save attempt. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
445 int modtime;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
446 /* the value of text->modiff at the last auto-save. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
447 int auto_save_modified;
5557
d3c064f0062e (struct buffer): New field auto_save_failure_time.
Richard M. Stallman <rms@gnu.org>
parents: 5502
diff changeset
448 /* The time at which we detected a failure to auto-save,
d3c064f0062e (struct buffer): New field auto_save_failure_time.
Richard M. Stallman <rms@gnu.org>
parents: 5502
diff changeset
449 Or -1 if we didn't have a failure. */
d3c064f0062e (struct buffer): New field auto_save_failure_time.
Richard M. Stallman <rms@gnu.org>
parents: 5502
diff changeset
450 int auto_save_failure_time;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
451 /* Position in buffer at which display started
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
452 the last time this buffer was displayed. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
453 int last_window_start;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
454
12471
a188da6410e4 (struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents: 11681
diff changeset
455 /* Set nonzero whenever the narrowing is changed in this buffer. */
a188da6410e4 (struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents: 11681
diff changeset
456 int clip_changed;
a188da6410e4 (struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents: 11681
diff changeset
457
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
458 /* If the long line scan cache is enabled (i.e. the buffer-local
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
459 variable cache-long-line-scans is non-nil), newline_cache
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
460 points to the newline cache, and width_run_cache points to the
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
461 width run cache.
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
462
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
463 The newline cache records which stretches of the buffer are
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
464 known *not* to contain newlines, so that they can be skipped
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
465 quickly when we search for newlines.
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
466
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
467 The width run cache records which stretches of the buffer are
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
468 known to contain characters whose widths are all the same. If
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
469 the width run cache maps a character to a value > 0, that value is
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
470 the character's width; if it maps a character to zero, we don't
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
471 know what its width is. This allows compute_motion to process
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
472 such regions very quickly, using algebra instead of inspecting
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
473 each character. See also width_table, below. */
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
474 struct region_cache *newline_cache;
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
475 struct region_cache *width_run_cache;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
476
21305
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
477 /* Changes in the buffer are recorded here for undo.
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
478 t means don't record anything.
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
479 This information belongs to the base buffer of an indirect buffer,
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
480 But we can't store it in the struct buffer_text
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
481 because local variables have to be right in the struct buffer.
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
482 So we copy it around in set_buffer_internal.
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
483 This comes before `name' because it is marked in a special way. */
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
484 Lisp_Object undo_list;
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
485
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
486 /* Everything from here down must be a Lisp_Object */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
487
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
488
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
489 /* The name of this buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
490 Lisp_Object name;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
491 /* The name of the file visited in this buffer, or nil. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
492 Lisp_Object filename;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
493 /* Dir for expanding relative file names. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
494 Lisp_Object directory;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
495 /* True iff this buffer has been backed up (if you write to the
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
496 visited file and it hasn't been backed up, then a backup will
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
497 be made). */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
498 /* This isn't really used by the C code, so could be deleted. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499 Lisp_Object backed_up;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
500 /* Length of file when last read or saved.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
501 This is not in the struct buffer_text
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
502 because it's not used in indirect buffers at all. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
503 Lisp_Object save_length;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
504 /* File name used for auto-saving this buffer.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
505 This is not in the struct buffer_text
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
506 because it's not used in indirect buffers at all. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
507 Lisp_Object auto_save_file_name;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
508
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
509 /* Non-nil if buffer read-only. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
510 Lisp_Object read_only;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
511 /* "The mark". This is a marker which may
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
512 point into this buffer or may point nowhere. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
513 Lisp_Object mark;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
514
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
515 /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
516 for all per-buffer variables of this buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
517 Lisp_Object local_var_alist;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
518
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
519 /* Symbol naming major mode (eg, lisp-mode). */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
520 Lisp_Object major_mode;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
521 /* Pretty name of major mode (eg, "Lisp"). */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
522 Lisp_Object mode_name;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
523 /* Mode line element that controls format of mode line. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
524 Lisp_Object mode_line_format;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
525
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
526 /* Keys that are bound local to this buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
527 Lisp_Object keymap;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
528 /* This buffer's local abbrev table. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
529 Lisp_Object abbrev_table;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
530 /* This buffer's syntax table. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
531 Lisp_Object syntax_table;
17023
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
532 /* This buffer's category table. */
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
533 Lisp_Object category_table;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
534
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
535 /* Values of several buffer-local variables */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
536 /* tab-width is buffer-local so that redisplay can find it
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
537 in buffers that are not current */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
538 Lisp_Object case_fold_search;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
539 Lisp_Object tab_width;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
540 Lisp_Object fill_column;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
541 Lisp_Object left_margin;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
542 /* Function to call when insert space past fill column. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
543 Lisp_Object auto_fill_function;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
544 /* nil: text, t: binary.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
545 This value is meaningful only on certain operating systems. */
17023
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
546 /* Actually, we don't need this flag any more because end-of-line
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
547 is handled correctly according to the buffer-file-coding-system
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
548 of the buffer. Just keeping it for backward compatibility. */
5502
2b48fd9bc80e [MSDOS]: New buffer-local variable:
Richard M. Stallman <rms@gnu.org>
parents: 2961
diff changeset
549 Lisp_Object buffer_file_type;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
550
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
551 /* Case table for case-conversion in this buffer.
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
552 This char-table maps each char into its lower-case version. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
553 Lisp_Object downcase_table;
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
554 /* Char-table mapping each char to its upper-case version. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
555 Lisp_Object upcase_table;
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
556 /* Char-table for conversion for case-folding search. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
557 Lisp_Object case_canon_table;
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
558 /* Char-table of equivalences for case-folding search. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
559 Lisp_Object case_eqv_table;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
560
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
561 /* Non-nil means do not display continuation lines. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
562 Lisp_Object truncate_lines;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
563 /* Non-nil means display ctl chars with uparrow. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
564 Lisp_Object ctl_arrow;
17023
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
565 /* Non-nil means display text from right to left. */
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
566 Lisp_Object direction_reversed;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
567 /* Non-nil means do selective display;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
568 see doc string in syms_of_buffer (buffer.c) for details. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
569 Lisp_Object selective_display;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
570 #ifndef old
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
571 /* Non-nil means show ... at end of line followed by invisible lines. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
572 Lisp_Object selective_display_ellipses;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
573 #endif
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
574 /* Alist of (FUNCTION . STRING) for each minor mode enabled in buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
575 Lisp_Object minor_modes;
2214
e5928bec8d5d * cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents: 2051
diff changeset
576 /* t if "self-insertion" should overwrite; `binary' if it should also
e5928bec8d5d * cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents: 2051
diff changeset
577 overwrite newlines and tabs - for editing executables and the like. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
578 Lisp_Object overwrite_mode;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
579 /* non-nil means abbrev mode is on. Expand abbrevs automatically. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
580 Lisp_Object abbrev_mode;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
581 /* Display table to use for text in this buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
582 Lisp_Object display_table;
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
583 /* t means the mark and region are currently active. */
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
584 Lisp_Object mark_active;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
585
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
586 /* List of overlays that end at or before the current center,
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
587 in order of end-position. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
588 Lisp_Object overlays_before;
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
589
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
590 /* List of overlays that end after the current center,
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
591 in order of start-position. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
592 Lisp_Object overlays_after;
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
593
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
594 /* Position where the overlay lists are centered. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
595 Lisp_Object overlay_center;
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
596
17023
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
597 /* Non-nil means the buffer contents are regarded as multi-byte
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
598 form of characters, not a binary code. */
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
599 Lisp_Object enable_multibyte_characters;
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
600
18179
371736608f2f (struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents: 17219
diff changeset
601 /* Coding system to be used for encoding the buffer contents on
371736608f2f (struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents: 17219
diff changeset
602 saving. */
371736608f2f (struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents: 17219
diff changeset
603 Lisp_Object buffer_file_coding_system;
371736608f2f (struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents: 17219
diff changeset
604
16442
e07564b5ca82 Fix typo in comment.
Karl Heuer <kwzh@gnu.org>
parents: 16191
diff changeset
605 /* List of symbols naming the file format used for visited file. */
11051
e1e834b78a79 (struct buffer): Add file_format member.
Boris Goldowsky <boris@gnu.org>
parents: 10966
diff changeset
606 Lisp_Object file_format;
e1e834b78a79 (struct buffer): Add file_format member.
Boris Goldowsky <boris@gnu.org>
parents: 10966
diff changeset
607
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
608 /* True if the newline position cache and width run cache are
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
609 enabled. See search.c and indent.c. */
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
610 Lisp_Object cache_long_line_scans;
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
611
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
612 /* If the width run cache is enabled, this table contains the
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
613 character widths width_run_cache (see above) assumes. When we
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
614 do a thorough redisplay, we compare this against the buffer's
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
615 current display table to see whether the display table has
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
616 affected the widths of any characters. If it has, we
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
617 invalidate the width run cache, and re-initialize width_table. */
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
618 Lisp_Object width_table;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
619
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
620 /* In an indirect buffer, or a buffer that is the base of an
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
621 indirect buffer, this holds a marker that records
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
622 PT for this buffer when the buffer is not current. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
623 Lisp_Object pt_marker;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
624
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
625 /* In an indirect buffer, or a buffer that is the base of an
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
626 indirect buffer, this holds a marker that records
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
627 BEGV for this buffer when the buffer is not current. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
628 Lisp_Object begv_marker;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
629
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
630 /* In an indirect buffer, or a buffer that is the base of an
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
631 indirect buffer, this holds a marker that records
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
632 ZV for this buffer when the buffer is not current. */
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
633 Lisp_Object zv_marker;
10562
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
634
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
635 /* This holds the point value before the last scroll operation.
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
636 Explicitly setting point sets this to nil. */
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
637 Lisp_Object point_before_scroll;
10750
7bf07f10bed3 (struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents: 10562
diff changeset
638
7bf07f10bed3 (struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents: 10562
diff changeset
639 /* Truename of the visited file, or nil. */
7bf07f10bed3 (struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents: 10562
diff changeset
640 Lisp_Object file_truename;
10966
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
641
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
642 /* Invisibility spec of this buffer.
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
643 t => any non-nil `invisible' property means invisible.
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
644 A list => `invisible' property means invisible
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
645 if it is memq in that list. */
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
646 Lisp_Object invisibility_spec;
13264
4e7bb697c847 (struct buffer): New slot redisplay_end_trigger.
Richard M. Stallman <rms@gnu.org>
parents: 13239
diff changeset
647
16066
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
648 /* This is the last window that was selected with this buffer in it,
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
649 or nil if that window no longer displays this buffer. */
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
650 Lisp_Object last_selected_window;
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
651
17219
e3db9264789e (struct buffer): New field display_count.
Richard M. Stallman <rms@gnu.org>
parents: 17023
diff changeset
652 /* Incremented each time the buffer is displayed in a window. */
e3db9264789e (struct buffer): New field display_count.
Richard M. Stallman <rms@gnu.org>
parents: 17023
diff changeset
653 Lisp_Object display_count;
e3db9264789e (struct buffer): New field display_count.
Richard M. Stallman <rms@gnu.org>
parents: 17023
diff changeset
654
22151
a48831a21513 (struct buffer): New slot display_time.
Richard M. Stallman <rms@gnu.org>
parents: 21305
diff changeset
655 /* Time stamp updated each time this buffer is displayed in a window. */
a48831a21513 (struct buffer): New slot display_time.
Richard M. Stallman <rms@gnu.org>
parents: 21305
diff changeset
656 Lisp_Object display_time;
a48831a21513 (struct buffer): New slot display_time.
Richard M. Stallman <rms@gnu.org>
parents: 21305
diff changeset
657
13264
4e7bb697c847 (struct buffer): New slot redisplay_end_trigger.
Richard M. Stallman <rms@gnu.org>
parents: 13239
diff changeset
658 /* These are so we don't have to recompile everything
4e7bb697c847 (struct buffer): New slot redisplay_end_trigger.
Richard M. Stallman <rms@gnu.org>
parents: 13239
diff changeset
659 the next few times we add a new slot. */
16066
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
660 Lisp_Object extra2, extra3;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
661 };
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
662
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
663 /* This points to the current buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
664
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
665 extern struct buffer *current_buffer;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
666
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
667 /* 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
668 that have special slots in each buffer.
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
669 The default value occupies the same slot in this structure
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
670 as an individual buffer's value occupies in that buffer.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
671 Setting the default value also goes through the alist of buffers
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
672 and stores into each buffer that does not say it has a local value. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
673
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
674 extern struct buffer buffer_defaults;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
675
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
676 /* This structure marks which slots in a buffer have corresponding
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
677 default values in buffer_defaults.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
678 Each such slot has a nonzero value in this structure.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
679 The value has only one nonzero bit.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
680
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
681 When a buffer has its own local value for a slot,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
682 the bit for that slot (found in the same slot in this structure)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
683 is turned on in the buffer's local_var_flags slot.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
684
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
685 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
686 be a Lisp-level local variable for the slot, it has no default value,
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
687 and the corresponding slot in buffer_defaults is not used. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
688
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
689 extern struct buffer buffer_local_flags;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
690
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
691 /* For each buffer slot, this points to the Lisp symbol name
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
692 for that slot in the current buffer. It is 0 for slots
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
693 that don't have such names. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
694
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
695 extern struct buffer buffer_local_symbols;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
696
998
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
697 /* This structure holds the required types for the values in the
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
698 buffer-local slots. If a slot contains Qnil, then the
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
699 corresponding buffer slot may contain a value of any type. If a
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
700 slot contains an integer, then prospective values' tags must be
20994
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
701 equal to that integer (except nil is always allowed).
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
702 When a tag does not match, the function
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
703 buffer_slot_type_mismatch will signal an error.
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
704
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
705 If a slot here contains -1, the corresponding variable is read-only. */
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
706
1502
fa4c1f1c744d * buffer.h (Fbuffer_name, Fget_file_buffer): Added external
Jim Blandy <jimb@redhat.com>
parents: 1286
diff changeset
707 extern struct buffer buffer_local_types;
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
708
20304
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
709 extern void reset_buffer P_ ((struct buffer *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
710 extern void evaporate_overlays P_ ((int));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
711 extern int overlays_at P_ ((int, int, Lisp_Object **, int *, int *, int *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
712 extern int sort_overlays P_ ((Lisp_Object *, int, struct window *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
713 extern void recenter_overlay_lists P_ ((struct buffer *, int));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
714 extern int overlay_strings P_ ((int, struct window *, unsigned char **));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
715 extern void validate_region P_ ((Lisp_Object *, Lisp_Object *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
716 extern void set_buffer_internal P_ ((struct buffer *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
717 extern void set_buffer_internal_1 P_ ((struct buffer *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
718 extern void set_buffer_temp P_ ((struct buffer *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
719 extern void record_buffer P_ ((Lisp_Object));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
720 extern void buffer_slot_type_mismatch P_ ((int));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
721 extern void fix_overlays_before P_ ((struct buffer *, int, int));
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
722
20304
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
723
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
724 EXFUN (Fbuffer_name, 1);
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
725 EXFUN (Fget_file_buffer, 1);
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
726 EXFUN (Fnext_overlay_change, 1);
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
727 EXFUN (Fdelete_overlay, 1);
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
728
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
729 /* Functions to call before and after each text change. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
730 extern Lisp_Object Vbefore_change_function;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
731 extern Lisp_Object Vafter_change_function;
6786
25280492d514 (Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 6654
diff changeset
732 extern Lisp_Object Vbefore_change_functions;
25280492d514 (Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 6654
diff changeset
733 extern Lisp_Object Vafter_change_functions;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1596
diff changeset
734 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
735 extern Lisp_Object Qbefore_change_functions;
d12f56be7f87 (Qbefore_change_functions, Qafter_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 12471
diff changeset
736 extern Lisp_Object Qafter_change_functions;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1596
diff changeset
737 extern Lisp_Object Qfirst_change_hook;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
738
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
739 extern Lisp_Object Vdeactivate_mark;
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
740 extern Lisp_Object Vtransient_mark_mode;
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
741
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
742 /* Overlays */
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
743
6098
b91e19be1513 (OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents: 5557
diff changeset
744 /* 1 if the OV is an overlay object. */
2782
683f4472f1c8 * lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents: 2564
diff changeset
745 #define OVERLAY_VALID(OV) (OVERLAYP (OV))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
746
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
747 /* Return the marker that stands for where OV starts in the buffer. */
9925
b039e4156d74 (OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents: 9784
diff changeset
748 #define OVERLAY_START(OV) (XOVERLAY (OV)->start)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
749
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
750 /* Return the marker that stands for where OV ends in the buffer. */
9925
b039e4156d74 (OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents: 9784
diff changeset
751 #define OVERLAY_END(OV) (XOVERLAY (OV)->end)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
752
6098
b91e19be1513 (OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents: 5557
diff changeset
753 /* 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
754 We assume you know which buffer it's pointing into. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
755
9951
586bb1122715 (OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents: 9925
diff changeset
756 #define OVERLAY_POSITION(P) \
586bb1122715 (OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents: 9925
diff changeset
757 (GC_MARKERP (P) ? marker_position (P) : (abort (), 0))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
758
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
759 /* Allocation of buffer text. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
760
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
761 #ifdef REL_ALLOC
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
762 #define BUFFER_ALLOC(data,size) ((unsigned char *) r_alloc (&data, (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
763 #define BUFFER_REALLOC(data,size) ((unsigned char *) r_re_alloc (&data, (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
764 #define BUFFER_FREE(data) (r_alloc_free (&data))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
765 #define R_ALLOC_DECLARE(var,data) (r_alloc_declare (&var, (data)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
766 #else
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
767 #define BUFFER_ALLOC(data,size) (data = (unsigned char *) malloc ((size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
768 #define BUFFER_REALLOC(data,size) ((unsigned char *) realloc ((data), (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
769 #define BUFFER_FREE(data) (free ((data)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
770 #define R_ALLOC_DECLARE(var,data)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
771 #endif