annotate src/buffer.h @ 25019:c5eb87f3571e

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