annotate src/buffer.h @ 25427:dde5fcbfa2af

(Info-tagify): Don't insert more than one newline before the tag table. (Info-tagify): Start by widening. Match node headers that don't list the file name, and more kinds of page separations. Strip properties during tagification. Use start of node header line as tag's position. Fix the "done" message. (Info-validate): Save and restore match data around narrowing down.
author Richard M. Stallman <rms@gnu.org>
date Sun, 29 Aug 1999 19:19:00 +0000
parents 7b65011c5136
children e98819a94512
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)
25369
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
160
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
161 #define BUF_UNCHANGED_MODIFIED(buf) \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
162 ((buf)->text->unchanged_modified)
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
163
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
164 #define BUF_OVERLAY_UNCHANGED_MODIFIED(buf) \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
165 ((buf)->text->overlay_unchanged_modified)
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
166 #define BUF_BEG_UNCHANGED(buf) ((buf)->text->beg_unchanged)
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
167 #define BUF_END_UNCHANGED(buf) ((buf)->text->end_unchanged)
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
168
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
169 #define UNCHANGED_MODIFIED \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
170 BUF_UNCHANGED_MODIFIED (current_buffer)
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
171 #define OVERLAY_UNCHANGED_MODIFIED \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
172 BUF_OVERLAY_UNCHANGED_MODIFIED (current_buffer)
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
173 #define BEG_UNCHANGED BUF_BEG_UNCHANGED (current_buffer)
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
174 #define END_UNCHANGED BUF_END_UNCHANGED (current_buffer)
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
175
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
176 /* Compute how many characters at the top and bottom of BUF are
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
177 unchanged when the range START..END is modified. This computation
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
178 must be done each time BUF is modified. */
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
179
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
180 #define BUF_COMPUTE_UNCHANGED(buf, start, end) \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
181 do \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
182 { \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
183 if (BUF_UNCHANGED_MODIFIED (buf) == MODIFF \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
184 && BUF_OVERLAY_UNCHANGED_MODIFIED (buf) == OVERLAY_MODIFF) \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
185 { \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
186 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
187 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
188 } \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
189 else \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
190 { \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
191 if (BUF_Z (buf) - (end) < BUF_END_UNCHANGED (buf)) \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
192 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
193 if ((start) - BUF_BEG (buf) < BUF_BEG_UNCHANGED (buf)) \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
194 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
195 } \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
196 } \
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
197 while (0)
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
198
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
199
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
200 /* Macros to set PT in the current buffer, or another buffer.. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
201
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
202 #ifdef USE_TEXT_PROPERTIES
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
203 #define SET_PT(position) (set_point (current_buffer, (position)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
204 #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
205
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
206 #define SET_PT_BOTH(position, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
207 (set_point_both (current_buffer, (position), (byte)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
208 #define TEMP_SET_PT_BOTH(position, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
209 (temp_set_point_both (current_buffer, (position), (byte)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
210
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
211 #define BUF_SET_PT(buffer, position) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
212 (set_point ((buffer), (position)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
213 #define BUF_TEMP_SET_PT(buffer, position) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
214 (temp_set_point ((buffer), (position)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
215
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
216 extern void set_point P_ ((struct buffer *, int));
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
217 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
218 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
219 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
220
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
221 #else /* don't support text properties */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
222
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
223 #define SET_PT(position) (current_buffer->pt = (position))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
224 #define TEMP_SET_PT(position) (current_buffer->pt = (position))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
225
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
226 #define SET_PT_BOTH(position, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
227 (current_buffer->pt = (position), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
228 current_buffer->pt_byte = (byte))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
229
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
230 #define TEMP_SET_PT_BOTH(position, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
231 (current_buffer->pt = (position), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
232 current_buffer->pt_byte = (byte))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
233
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
234 #define BUF_SET_PT(buffer, position) (buffer->pt = (position))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
235 #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
236 #endif /* don't support text properties */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
237
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
238 /* 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
239
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
240 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
241
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
242 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
243 which must correspond to each other.
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 The macros without ..._BOTH take just a charpos,
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
246 and compute the bytepos from it. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
247
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
248 #define SET_BUF_BEGV(buf, charpos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
249 ((buf)->begv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
250 (buf)->begv = (charpos))
17023
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
251
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
252 #define SET_BUF_ZV(buf, charpos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
253 ((buf)->zv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
254 (buf)->zv = (charpos))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
255
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
256 #define SET_BUF_BEGV_BOTH(buf, charpos, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
257 ((buf)->begv = (charpos), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
258 (buf)->begv_byte = (byte))
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 #define SET_BUF_ZV_BOTH(buf, charpos, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
261 ((buf)->zv = (charpos), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
262 (buf)->zv_byte = (byte))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
263
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
264 #define SET_BUF_PT_BOTH(buf, charpos, byte) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
265 ((buf)->pt = (charpos), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
266 (buf)->pt_byte = (byte))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
267
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
268 /* 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
269 or convert between a byte position and an address.
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
270 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
271
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
272 /* Access a Lisp position value in POS,
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
273 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
274
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
275 #define DECODE_POSITION(charpos, bytepos, pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
276 if (1) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
277 { \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
278 Lisp_Object __pos = (pos); \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
279 if (NUMBERP (__pos)) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
280 { \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
281 charpos = __pos; \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
282 bytepos = buf_charpos_to_bytepos (current_buffer, __pos); \
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 else if (MARKERP (__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 charpos = marker_position (__pos); \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
287 bytepos = marker_byte_position (__pos); \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
288 } \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
289 else \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
290 wrong_type_argument (Qinteger_or_marker_p, __pos); \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
291 } \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
292 else
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
293
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
294 /* 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
295
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
296 #define BYTE_POS_ADDR(n) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
297 (((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
298
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
299 /* Return the address of char position N. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
300
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
301 #define CHAR_POS_ADDR(n) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
302 (((n) >= GPT ? GAP_SIZE : 0) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
303 + buf_charpos_to_bytepos (current_buffer, n) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
304 + BEG_ADDR - 1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
305
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
306 /* Convert a character position to a byte position. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
307
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
308 #define CHAR_TO_BYTE(charpos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
309 (buf_charpos_to_bytepos (current_buffer, charpos))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
310
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
311 /* Convert a byte position to a character position. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
312
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
313 #define BYTE_TO_CHAR(bytepos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
314 (buf_bytepos_to_charpos (current_buffer, bytepos))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
315
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
316 /* 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
317
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
318 #define PTR_BYTE_POS(ptr) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
319 ((ptr) - (current_buffer)->text->beg \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
320 - (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
321 + 1)
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
322
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
323 /* Return character at position POS. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
324
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
325 #define FETCH_CHAR(pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
326 (!NILP (current_buffer->enable_multibyte_characters) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
327 ? FETCH_MULTIBYTE_CHAR ((pos)) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
328 : FETCH_BYTE ((pos)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
329
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
330 /* Return the byte at byte position N. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
331
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
332 #define FETCH_BYTE(n) *(BYTE_POS_ADDR ((n)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
333
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
334 /* Variables used locally in FETCH_MULTIBYTE_CHAR. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
335 extern unsigned char *_fetch_multibyte_char_p;
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
336 extern int _fetch_multibyte_char_len;
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
337
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
338 /* 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
339 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
340 POS is returned. No range checking. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
341
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
342 #define FETCH_MULTIBYTE_CHAR(pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
343 (_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
344 + (pos) + BEG_ADDR - 1), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
345 _fetch_multibyte_char_len \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
346 = ((pos) >= GPT_BYTE ? ZV_BYTE : GPT_BYTE) - (pos), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
347 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
348
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
349 /* Macros for accessing a character or byte,
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
350 or converting between byte positions and addresses,
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
351 in a specified buffer. */
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 /* Return the address of character at byte position POS in buffer BUF.
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
354 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
355
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
356 #define BUF_BYTE_ADDRESS(buf, pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
357 ((buf)->text->beg + (pos) - 1 \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
358 + ((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
359
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
360 /* 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
361 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
362
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
363 #define BUF_CHAR_ADDRESS(buf, pos) \
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
364 ((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
365 + ((pos) >= (buf)->text->gpt ? (buf)->text->gap_size : 0))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
366
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
367 /* 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
368 into a character position. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
369
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
370 #define BUF_PTR_BYTE_POS(buf, ptr) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
371 ((ptr) - (buf)->text->beg \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
372 - (ptr - (buf)->text->beg < (unsigned) BUF_GPT_BYTE ((buf)) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
373 ? 0 : BUF_GAP_SIZE ((buf))) \
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
374 + 1)
8061
ce94573db44d (BUF_PTR_CHAR_POS): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
375
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
376 /* 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
377
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
378 #define BUF_FETCH_CHAR(buf, pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
379 (!NILP (buf->enable_multibyte_characters) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
380 ? BUF_FETCH_MULTIBYTE_CHAR ((buf), (pos)) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
381 : BUF_FETCH_BYTE ((buf), (pos)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
382
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
383 /* 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
384
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
385 #define BUF_FETCH_BYTE(buf, n) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
386 *(BUF_BYTE_ADDRESS ((buf), (n)))
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
387
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
388 /* 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
389 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
390 POS is returned. No range checking. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
391
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
392 #define BUF_FETCH_MULTIBYTE_CHAR(buf, pos) \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
393 (_fetch_multibyte_char_p \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
394 = (((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
395 + (pos) + BUF_BEG_ADDR (buf) - 1), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
396 _fetch_multibyte_char_len \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
397 = (((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
398 - (pos)), \
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
399 STRING_CHAR (_fetch_multibyte_char_p, _fetch_multibyte_char_len))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
400
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
401 /* Define the actual buffer data structures. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
402
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
403 /* 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
404 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
405
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
406 struct buffer_text
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
407 {
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
408 unsigned char *beg; /* Actual address of buffer contents. */
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
409 int gpt; /* Char pos of gap in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
410 int z; /* Char pos of end of buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
411 int gpt_byte; /* Byte pos of gap in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
412 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
413 int gap_size; /* Size of buffer's gap. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
414 int modiff; /* This counts buffer-modification events
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
415 for this buffer. It is incremented for
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
416 each such event, and never otherwise
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
417 changed. */
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
418 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
419 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
420
16190
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
421 int overlay_modiff; /* Counts modifications to overlays. */
45a956359a95 (struct buffer): New field overlay_modiff.
Richard M. Stallman <rms@gnu.org>
parents: 16066
diff changeset
422
25369
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
423 /* Minimum value of GPT - BEG since last redisplay that finished. */
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
424 int beg_unchanged;
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
425
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
426 /* Minimum value of Z - GPT since last redisplay that finished. */
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
427 int end_unchanged;
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
428
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
429 /* MODIFF as of last redisplay that finished; if it matches MODIFF,
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
430 beg_unchanged and end_unchanged contain no useful information. */
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
431 int unchanged_modified;
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
432
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
433 /* BUF_OVERLAY_MODIFF of current buffer, as of last redisplay that
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
434 finished; if it matches BUF_OVERLAY_MODIFF, beg_unchanged and
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
435 end_unchanged contain no useful information. */
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
436 int overlay_unchanged_modified;
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
437
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
438 /* 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
439 DECLARE_INTERVALS
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
440
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
441 /* 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
442 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
443 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
444 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
445 Lisp_Object markers;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
446 };
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
447
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
448 /* 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
449
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
450 struct buffer
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
451 {
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
452 /* Everything before the `name' slot must be of a non-Lisp_Object type,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
453 and every slot after `name' must be a Lisp_Object.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
454
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
455 Check out mark_buffer (alloc.c) to see why. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
456
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
457 EMACS_INT size;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
458
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
459 /* Next buffer, in chain of all buffers including killed buffers.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
460 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
461 collect killed buffers properly.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
462 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
463 but buffers are on a separate chain of their own. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
464 struct buffer *next;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
465
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
466 /* 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
467 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
468 struct buffer_text own_text;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
469
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
470 /* 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
471 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
472 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
473 struct buffer_text *text;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
474
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
475 /* 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
476 int pt;
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
477 /* Byte position of point in buffer. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
478 int pt_byte;
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
479 /* 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
480 int begv;
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
481 /* Byte position of beginning of accessible range. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
482 int begv_byte;
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
483 /* 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
484 int zv;
20553
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
485 /* Byte position of end of accessible range. */
a49deda9f5e6 (DECODE_POSITION): New macro.
Richard M. Stallman <rms@gnu.org>
parents: 20304
diff changeset
486 int zv_byte;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
487
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
488 /* 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
489 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
490 struct buffer *base_buffer;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
491
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
492 /* Flags saying which DEFVAR_PER_BUFFER variables
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
493 are local to this buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
494 int local_var_flags;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
495 /* Set to the modtime of the visited file when read or written.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
496 -1 means visited file was nonexistent.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
497 0 means visited file modtime unknown; in no case complain
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
498 about any mismatch on next save attempt. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
499 int modtime;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
500 /* the value of text->modiff at the last auto-save. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
501 int auto_save_modified;
5557
d3c064f0062e (struct buffer): New field auto_save_failure_time.
Richard M. Stallman <rms@gnu.org>
parents: 5502
diff changeset
502 /* 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
503 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
504 int auto_save_failure_time;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
505 /* 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
506 the last time this buffer was displayed. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
507 int last_window_start;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
508
12471
a188da6410e4 (struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents: 11681
diff changeset
509 /* 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
510 int clip_changed;
a188da6410e4 (struct buffer): New field clip_changed.
Richard M. Stallman <rms@gnu.org>
parents: 11681
diff changeset
511
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
512 /* 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
513 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
514 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
515 width run cache.
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
516
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
517 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
518 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
519 quickly when we search for newlines.
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
520
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
521 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
522 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
523 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
524 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
525 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
526 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
527 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
528 struct region_cache *newline_cache;
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
529 struct region_cache *width_run_cache;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
530
25369
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
531 /* Non-zero means don't use redisplay optimizations for
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
532 displaying this buffer. */
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
533 unsigned prevent_redisplay_optimizations_p : 1;
7b65011c5136 (BUF_COMPUTE_UNCHANGED): New.
Gerd Moellmann <gerd@gnu.org>
parents: 25351
diff changeset
534
21305
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
535 /* 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
536 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
537 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
538 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
539 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
540 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
541 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
542 Lisp_Object undo_list;
c26bceb68019 (struct buffer): Field `undo_list' moved before `name'
Richard M. Stallman <rms@gnu.org>
parents: 20994
diff changeset
543
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
544 /* Everything from here down must be a Lisp_Object */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
545
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
546 /* The name of this buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
547 Lisp_Object name;
25019
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
548
25351
c7247eabc834 Remove conditional compilation on NO_PROMPT_IN_BUFFER.
Gerd Moellmann <gerd@gnu.org>
parents: 25019
diff changeset
549 /* Length in characters of the prompt in a mini-buffer, or nil if
c7247eabc834 Remove conditional compilation on NO_PROMPT_IN_BUFFER.
Gerd Moellmann <gerd@gnu.org>
parents: 25019
diff changeset
550 this buffer is not a mini-buffer. */
25019
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
551 Lisp_Object minibuffer_prompt_length;
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
552
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
553 /* The name of the file visited in this buffer, or nil. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
554 Lisp_Object filename;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
555 /* Dir for expanding relative file names. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
556 Lisp_Object directory;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
557 /* 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
558 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
559 be made). */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
560 /* This isn't really used by the C code, so could be deleted. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
561 Lisp_Object backed_up;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
562 /* 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
563 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
564 because it's not used in indirect buffers at all. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
565 Lisp_Object save_length;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
566 /* 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
567 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
568 because it's not used in indirect buffers at all. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
569 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
570
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
571 /* Non-nil if buffer read-only. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
572 Lisp_Object read_only;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
573 /* "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
574 point into this buffer or may point nowhere. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
575 Lisp_Object mark;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
576
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
577 /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
578 for all per-buffer variables of this buffer. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
579 Lisp_Object local_var_alist;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
580
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
581 /* Symbol naming major mode (eg, lisp-mode). */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
582 Lisp_Object major_mode;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
583 /* Pretty name of major mode (eg, "Lisp"). */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
584 Lisp_Object mode_name;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
585 /* Mode line element that controls format of mode line. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
586 Lisp_Object mode_line_format;
25019
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
587
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
588 /* Analogous to mode_line_format for the line displayed at the top
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
589 of windows. Nil means don't display that line. */
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
590 Lisp_Object top_line_format;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
591
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
592 /* Keys that are bound local to this buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
593 Lisp_Object keymap;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
594 /* This buffer's local abbrev table. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
595 Lisp_Object abbrev_table;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
596 /* This buffer's syntax table. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
597 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
598 /* 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
599 Lisp_Object category_table;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
600
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
601 /* Values of several buffer-local variables */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
602 /* tab-width is buffer-local so that redisplay can find it
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
603 in buffers that are not current */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
604 Lisp_Object case_fold_search;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
605 Lisp_Object tab_width;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
606 Lisp_Object fill_column;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
607 Lisp_Object left_margin;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
608 /* Function to call when insert space past fill column. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
609 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
610 /* nil: text, t: binary.
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
611 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
612 /* 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
613 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
614 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
615 Lisp_Object buffer_file_type;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
616
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
617 /* Case table for case-conversion in this buffer.
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
618 This char-table maps each char into its lower-case version. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
619 Lisp_Object downcase_table;
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
620 /* Char-table mapping each char to its upper-case version. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
621 Lisp_Object upcase_table;
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
622 /* 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
623 Lisp_Object case_canon_table;
13239
bb56f8799f36 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 12786
diff changeset
624 /* 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
625 Lisp_Object case_eqv_table;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
626
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
627 /* Non-nil means do not display continuation lines. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
628 Lisp_Object truncate_lines;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
629 /* Non-nil means display ctl chars with uparrow. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
630 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
631 /* 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
632 Lisp_Object direction_reversed;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
633 /* 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
634 see doc string in syms_of_buffer (buffer.c) for details. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
635 Lisp_Object selective_display;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
636 #ifndef old
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
637 /* Non-nil means show ... at end of line followed by invisible lines. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
638 Lisp_Object selective_display_ellipses;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
639 #endif
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
640 /* Alist of (FUNCTION . STRING) for each minor mode enabled in buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
641 Lisp_Object minor_modes;
2214
e5928bec8d5d * cmds.c (overwrite_binary_mode): Deleted; this implements the
Jim Blandy <jimb@redhat.com>
parents: 2051
diff changeset
642 /* 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
643 overwrite newlines and tabs - for editing executables and the like. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
644 Lisp_Object overwrite_mode;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
645 /* non-nil means abbrev mode is on. Expand abbrevs automatically. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
646 Lisp_Object abbrev_mode;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
647 /* Display table to use for text in this buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
648 Lisp_Object display_table;
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
649 /* 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
650 Lisp_Object mark_active;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
651
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
652 /* 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
653 in order of end-position. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
654 Lisp_Object overlays_before;
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
655
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
656 /* 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
657 in order of start-position. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
658 Lisp_Object overlays_after;
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
659
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
660 /* Position where the overlay lists are centered. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
661 Lisp_Object overlay_center;
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
662
17023
78f7b873184b (BEGV_ADDR, PT_ADDR, ZV_ADDR): Use macro POS_ADDR.
Karl Heuer <kwzh@gnu.org>
parents: 16442
diff changeset
663 /* 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
664 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
665 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
666
18179
371736608f2f (struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents: 17219
diff changeset
667 /* 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
668 saving. */
371736608f2f (struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents: 17219
diff changeset
669 Lisp_Object buffer_file_coding_system;
371736608f2f (struct buffer): New member buffer_file_coding_system.
Kenichi Handa <handa@m17n.org>
parents: 17219
diff changeset
670
16442
e07564b5ca82 Fix typo in comment.
Karl Heuer <kwzh@gnu.org>
parents: 16191
diff changeset
671 /* 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
672 Lisp_Object file_format;
e1e834b78a79 (struct buffer): Add file_format member.
Boris Goldowsky <boris@gnu.org>
parents: 10966
diff changeset
673
9404
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
674 /* 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
675 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
676 Lisp_Object cache_long_line_scans;
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
677
698990d4feca * buffer.h (struct buffer): New members: newline_cache,
Jim Blandy <jimb@redhat.com>
parents: 8847
diff changeset
678 /* 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
679 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
680 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
681 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
682 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
683 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
684 Lisp_Object width_table;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
685
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
686 /* 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
687 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
688 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
689 Lisp_Object pt_marker;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
690
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
691 /* 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
692 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
693 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
694 Lisp_Object begv_marker;
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
695
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
696 /* 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
697 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
698 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
699 Lisp_Object zv_marker;
10562
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
700
ddc863fd062b (struct buffer): New field point_before_scroll.
Richard M. Stallman <rms@gnu.org>
parents: 10310
diff changeset
701 /* 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
702 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
703 Lisp_Object point_before_scroll;
10750
7bf07f10bed3 (struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents: 10562
diff changeset
704
7bf07f10bed3 (struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents: 10562
diff changeset
705 /* Truename of the visited file, or nil. */
7bf07f10bed3 (struct buffer): New field file_truename.
Richard M. Stallman <rms@gnu.org>
parents: 10562
diff changeset
706 Lisp_Object file_truename;
10966
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
707
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
708 /* Invisibility spec of this buffer.
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
709 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
710 A list => `invisible' property means invisible
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
711 if it is memq in that list. */
e55f4cc120b6 (struct buffer): New field `invisibility_spec'.
Richard M. Stallman <rms@gnu.org>
parents: 10750
diff changeset
712 Lisp_Object invisibility_spec;
13264
4e7bb697c847 (struct buffer): New slot redisplay_end_trigger.
Richard M. Stallman <rms@gnu.org>
parents: 13239
diff changeset
713
16066
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
714 /* 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
715 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
716 Lisp_Object last_selected_window;
2f421cfff6cc (strict buffer): New slot last_selected_window.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
717
17219
e3db9264789e (struct buffer): New field display_count.
Richard M. Stallman <rms@gnu.org>
parents: 17023
diff changeset
718 /* 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
719 Lisp_Object display_count;
e3db9264789e (struct buffer): New field display_count.
Richard M. Stallman <rms@gnu.org>
parents: 17023
diff changeset
720
25019
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
721 /* Widths of left and right marginal areas for windows displaying
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
722 this buffer. */
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
723 Lisp_Object left_margin_width, right_margin_width;
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
724
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
725 /* Non-nil means indicate lines not displaying text (in a style
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
726 like vi). */
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
727 Lisp_Object indicate_empty_lines;
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
728
22151
a48831a21513 (struct buffer): New slot display_time.
Richard M. Stallman <rms@gnu.org>
parents: 21305
diff changeset
729 /* 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
730 Lisp_Object display_time;
a48831a21513 (struct buffer): New slot display_time.
Richard M. Stallman <rms@gnu.org>
parents: 21305
diff changeset
731
25019
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
732 /* If scrolling the display because point is below the bottom of a
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
733 window showing this buffer, try to choose a window start so
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
734 that point ends up this number of lines from the top of the
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
735 window. Nil means that scrolling method isn't used. */
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
736 Lisp_Object scroll_up_aggressively;
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
737
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
738 /* If scrolling the display because point is above the top of a
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
739 window showing this buffer, try to choose a window start so
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
740 that point ends up this number of lines from the bottom of the
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
741 window. Nil means that scrolling method isn't used. */
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
742 Lisp_Object scroll_down_aggressively;
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
743
13264
4e7bb697c847 (struct buffer): New slot redisplay_end_trigger.
Richard M. Stallman <rms@gnu.org>
parents: 13239
diff changeset
744 /* 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
745 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
746 Lisp_Object extra2, extra3;
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
747 };
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
748
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
749 /* This points to the current buffer. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
750
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
751 extern struct buffer *current_buffer;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
752
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
753 /* 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
754 that have special slots in each buffer.
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
755 The default value occupies the same slot in this structure
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
756 as an individual buffer's value occupies in that buffer.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
757 Setting the default value also goes through the alist of buffers
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
758 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
759
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
760 extern struct buffer buffer_defaults;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
761
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
762 /* This structure marks which slots in a buffer have corresponding
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
763 default values in buffer_defaults.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
764 Each such slot has a nonzero value in this structure.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
765 The value has only one nonzero bit.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
766
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
767 When a buffer has its own local value for a slot,
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
768 the bit for that slot (found in the same slot in this structure)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
769 is turned on in the buffer's local_var_flags slot.
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
770
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
771 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
772 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
773 and the corresponding slot in buffer_defaults is not used. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
774
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
775 extern struct buffer buffer_local_flags;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
776
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
777 /* For each buffer slot, this points to the Lisp symbol name
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
778 for that slot in the current buffer. It is 0 for slots
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
779 that don't have such names. */
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
780
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
781 extern struct buffer buffer_local_symbols;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
782
998
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
783 /* This structure holds the required types for the values in the
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
784 buffer-local slots. If a slot contains Qnil, then the
61c6983219ff entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 672
diff changeset
785 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
786 slot contains an integer, then prospective values' tags must be
20994
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
787 equal to that integer (except nil is always allowed).
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
788 When a tag does not match, the function
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
789 buffer_slot_type_mismatch will signal an error.
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
790
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
791 If a slot here contains -1, the corresponding variable is read-only. */
4d4daf482e68 Fix comment.
Karl Heuer <kwzh@gnu.org>
parents: 20708
diff changeset
792
1502
fa4c1f1c744d * buffer.h (Fbuffer_name, Fget_file_buffer): Added external
Jim Blandy <jimb@redhat.com>
parents: 1286
diff changeset
793 extern struct buffer buffer_local_types;
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
794
20304
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
795 extern void reset_buffer P_ ((struct buffer *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
796 extern void evaporate_overlays P_ ((int));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
797 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
798 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
799 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
800 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
801 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
802 extern void set_buffer_internal P_ ((struct buffer *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
803 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
804 extern void set_buffer_temp P_ ((struct buffer *));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
805 extern void record_buffer P_ ((Lisp_Object));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
806 extern void buffer_slot_type_mismatch P_ ((int));
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
807 extern void fix_overlays_before P_ ((struct buffer *, int, int));
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
808
20304
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
809
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
810 EXFUN (Fbuffer_name, 1);
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
811 EXFUN (Fget_file_buffer, 1);
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
812 EXFUN (Fnext_overlay_change, 1);
a385b772f453 Add more protypes and function declarations.
Andreas Schwab <schwab@suse.de>
parents: 18241
diff changeset
813 EXFUN (Fdelete_overlay, 1);
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
814
10310
b0f6fc3f80b1 (struct buffer): Fields markers and intervals moved out.
Richard M. Stallman <rms@gnu.org>
parents: 9951
diff changeset
815 /* Functions to call before and after each text change. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
816 extern Lisp_Object Vbefore_change_function;
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
817 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
818 extern Lisp_Object Vbefore_change_functions;
25280492d514 (Vafter_change_functions, Vbefore_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 6654
diff changeset
819 extern Lisp_Object Vafter_change_functions;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1596
diff changeset
820 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
821 extern Lisp_Object Qbefore_change_functions;
d12f56be7f87 (Qbefore_change_functions, Qafter_change_functions): Declared.
Richard M. Stallman <rms@gnu.org>
parents: 12471
diff changeset
822 extern Lisp_Object Qafter_change_functions;
1821
04fb1d3d6992 JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents: 1596
diff changeset
823 extern Lisp_Object Qfirst_change_hook;
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
824
23398
a80f6d8c1dc6 (inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents: 22151
diff changeset
825 /* If nonzero, all modification hooks are suppressed. */
a80f6d8c1dc6 (inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents: 22151
diff changeset
826 extern int inhibit_modification_hooks;
a80f6d8c1dc6 (inhibit_modification_hooks): Extern it.
Kenichi Handa <handa@m17n.org>
parents: 22151
diff changeset
827
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
828 extern Lisp_Object Vdeactivate_mark;
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
829 extern Lisp_Object Vtransient_mark_mode;
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
830
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
831 /* Overlays */
2051
c1767ea45687 (struct buffer): New field mark_active.
Richard M. Stallman <rms@gnu.org>
parents: 1910
diff changeset
832
6098
b91e19be1513 (OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents: 5557
diff changeset
833 /* 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
834 #define OVERLAY_VALID(OV) (OVERLAYP (OV))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
835
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
836 /* Return the marker that stands for where OV starts in the buffer. */
9925
b039e4156d74 (OVERLAY_START, OVERLAY_END): Use new overlay substructure.
Karl Heuer <kwzh@gnu.org>
parents: 9784
diff changeset
837 #define OVERLAY_START(OV) (XOVERLAY (OV)->start)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
838
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
839 /* 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
840 #define OVERLAY_END(OV) (XOVERLAY (OV)->end)
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
841
6098
b91e19be1513 (OVERLAY_POSITION): Don't check which buffer it points to.
Karl Heuer <kwzh@gnu.org>
parents: 5557
diff changeset
842 /* 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
843 We assume you know which buffer it's pointing into. */
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
844
9951
586bb1122715 (OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents: 9925
diff changeset
845 #define OVERLAY_POSITION(P) \
586bb1122715 (OVERLAY_POSITION): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents: 9925
diff changeset
846 (GC_MARKERP (P) ? marker_position (P) : (abort (), 0))
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
847
2390
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
848 /* Allocation of buffer text. */
e611237d4420 (struct buffer): Field `fieldlist' deleted.
Richard M. Stallman <rms@gnu.org>
parents: 2214
diff changeset
849
193
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
850 #ifdef REL_ALLOC
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
851 #define BUFFER_ALLOC(data,size) ((unsigned char *) r_alloc (&data, (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
852 #define BUFFER_REALLOC(data,size) ((unsigned char *) r_re_alloc (&data, (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
853 #define BUFFER_FREE(data) (r_alloc_free (&data))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
854 #define R_ALLOC_DECLARE(var,data) (r_alloc_declare (&var, (data)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
855 #else
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
856 #define BUFFER_ALLOC(data,size) (data = (unsigned char *) malloc ((size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
857 #define BUFFER_REALLOC(data,size) ((unsigned char *) realloc ((data), (size)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
858 #define BUFFER_FREE(data) (free ((data)))
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
859 #define R_ALLOC_DECLARE(var,data)
596cfc339998 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
860 #endif
25019
c5eb87f3571e Add top_line_format.
Gerd Moellmann <gerd@gnu.org>
parents: 23398
diff changeset
861