Changes from arch/CVS synchronization
[bpt/emacs.git] / src / buffer.h
CommitLineData
b3ec245a 1/* Header file for the buffer manipulation primitives.
a0ecb2ac 2 Copyright (C) 1985,86,93,94,95,97,98,99,2000,01,03,04
a7be34e5 3 Free Software Foundation, Inc.
b3ec245a
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
fbfed6f0 9the Free Software Foundation; either version 2, or (at your option)
b3ec245a
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
b3ec245a
JB
21
22
69f9064e 23/* Accessing the parameters of the current buffer. */
1b92beaf 24
69f9064e
RS
25/* These macros come in pairs, one for the char position
26 and one for the byte position. */
b3ec245a 27
177c0ea7 28/* Position of beginning of buffer. */
b3ec245a 29#define BEG (1)
8aa91000 30#define BEG_BYTE (BEG)
b3ec245a 31
177c0ea7 32/* Position of beginning of accessible range of buffer. */
c1ea566e 33#define BEGV (current_buffer->begv)
69f9064e 34#define BEGV_BYTE (current_buffer->begv_byte)
b3ec245a 35
69f9064e 36/* Position of point in buffer. The "+ 0" makes this
177c0ea7 37 not an l-value, so you can't assign to it. Use SET_PT instead. */
c1ea566e 38#define PT (current_buffer->pt + 0)
69f9064e 39#define PT_BYTE (current_buffer->pt_byte + 0)
b3ec245a 40
177c0ea7 41/* Position of gap in buffer. */
c1ea566e 42#define GPT (current_buffer->text->gpt)
69f9064e 43#define GPT_BYTE (current_buffer->text->gpt_byte)
b3ec245a 44
177c0ea7 45/* Position of end of accessible range of buffer. */
c1ea566e 46#define ZV (current_buffer->zv)
69f9064e 47#define ZV_BYTE (current_buffer->zv_byte)
b3ec245a 48
177c0ea7 49/* Position of end of buffer. */
c1ea566e 50#define Z (current_buffer->text->z)
69f9064e 51#define Z_BYTE (current_buffer->text->z_byte)
b3ec245a 52
69f9064e 53/* Macros for the addresses of places in the buffer. */
b3ec245a 54
177c0ea7 55/* Address of beginning of buffer. */
c1ea566e 56#define BEG_ADDR (current_buffer->text->beg)
b3ec245a 57
177c0ea7 58/* Address of beginning of accessible range of buffer. */
69f9064e 59#define BEGV_ADDR (BYTE_POS_ADDR (current_buffer->begv_byte))
b3ec245a 60
177c0ea7 61/* Address of point in buffer. */
69f9064e 62#define PT_ADDR (BYTE_POS_ADDR (current_buffer->pt_byte))
b3ec245a 63
177c0ea7 64/* Address of beginning of gap in buffer. */
d895183d 65#define GPT_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte - BEG_BYTE)
b3ec245a
JB
66
67/* Address of end of gap in buffer. */
d895183d 68#define GAP_END_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte + current_buffer->text->gap_size - BEG_BYTE)
b3ec245a 69
177c0ea7 70/* Address of end of accessible range of buffer. */
69f9064e 71#define ZV_ADDR (BYTE_POS_ADDR (current_buffer->zv_byte))
96b65d4e 72
177c0ea7 73/* Address of end of buffer. */
d895183d 74#define Z_ADDR (current_buffer->text->beg + current_buffer->text->gap_size + current_buffer->text->z_byte - BEG_BYTE)
b3ec245a
JB
75
76/* Size of gap. */
c1ea566e 77#define GAP_SIZE (current_buffer->text->gap_size)
b3ec245a 78
69f9064e
RS
79/* Is the current buffer narrowed? */
80#define NARROWED ((BEGV != BEG) || (ZV != Z))
81
82/* Modification count. */
83#define MODIFF (current_buffer->text->modiff)
84
85/* Overlay modification count. */
86#define OVERLAY_MODIFF (current_buffer->text->overlay_modiff)
87
88/* Modification count as of last visit or save. */
89#define SAVE_MODIFF (current_buffer->text->save_modiff)
90
91/* BUFFER_CEILING_OF (resp. BUFFER_FLOOR_OF), when applied to n, return
92 the max (resp. min) p such that
93
94 BYTE_POS_ADDR (p) - BYTE_POS_ADDR (n) == p - n */
95
96#define BUFFER_CEILING_OF(BYTEPOS) \
97 (((BYTEPOS) < GPT_BYTE && GPT < ZV ? GPT_BYTE : ZV_BYTE) - 1)
98#define BUFFER_FLOOR_OF(BYTEPOS) \
99 (BEGV <= GPT && GPT_BYTE <= (BYTEPOS) ? GPT_BYTE : BEGV_BYTE)
100\f
101/* Similar macros to operate on a specified buffer.
b3ec245a
JB
102 Note that many of these evaluate the buffer argument more than once. */
103
177c0ea7 104/* Position of beginning of buffer. */
d895183d
SM
105#define BUF_BEG(buf) (BEG)
106#define BUF_BEG_BYTE(buf) (BEG_BYTE)
b3ec245a 107
177c0ea7 108/* Position of beginning of accessible range of buffer. */
c1ea566e 109#define BUF_BEGV(buf) ((buf)->begv)
69f9064e 110#define BUF_BEGV_BYTE(buf) ((buf)->begv_byte)
b3ec245a 111
177c0ea7 112/* Position of point in buffer. */
c1ea566e 113#define BUF_PT(buf) ((buf)->pt)
69f9064e 114#define BUF_PT_BYTE(buf) ((buf)->pt_byte)
b3ec245a 115
177c0ea7 116/* Position of gap in buffer. */
c1ea566e 117#define BUF_GPT(buf) ((buf)->text->gpt)
69f9064e 118#define BUF_GPT_BYTE(buf) ((buf)->text->gpt_byte)
b3ec245a 119
177c0ea7 120/* Position of end of accessible range of buffer. */
c1ea566e 121#define BUF_ZV(buf) ((buf)->zv)
69f9064e 122#define BUF_ZV_BYTE(buf) ((buf)->zv_byte)
b3ec245a 123
177c0ea7 124/* Position of end of buffer. */
c1ea566e 125#define BUF_Z(buf) ((buf)->text->z)
69f9064e
RS
126#define BUF_Z_BYTE(buf) ((buf)->text->z_byte)
127
128/* Address of beginning of buffer. */
129#define BUF_BEG_ADDR(buf) ((buf)->text->beg)
130
131/* Address of beginning of gap of buffer. */
d895183d 132#define BUF_GPT_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte - BEG_BYTE)
69f9064e
RS
133
134/* Address of end of buffer. */
d895183d 135#define BUF_Z_ADDR(buf) ((buf)->text->beg + (buf)->text->gap_size + (buf)->text->z_byte - BEG_BYTE)
69f9064e
RS
136
137/* Address of end of gap in buffer. */
d895183d 138#define BUF_GAP_END_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte + (buf)->text->gap_size - BEG_BYTE)
b3ec245a 139
69f9064e
RS
140/* Size of gap. */
141#define BUF_GAP_SIZE(buf) ((buf)->text->gap_size)
142
143/* Is this buffer narrowed? */
c1ea566e
RS
144#define BUF_NARROWED(buf) ((BUF_BEGV (buf) != BUF_BEG (buf)) \
145 || (BUF_ZV (buf) != BUF_Z (buf)))
e12f3519 146
b3ec245a 147/* Modification count. */
c1ea566e
RS
148#define BUF_MODIFF(buf) ((buf)->text->modiff)
149
150/* Modification count as of last visit or save. */
151#define BUF_SAVE_MODIFF(buf) ((buf)->text->save_modiff)
152
2e50b9cc
RS
153/* Overlay modification count. */
154#define BUF_OVERLAY_MODIFF(buf) ((buf)->text->overlay_modiff)
155
c1ea566e
RS
156/* Interval tree of buffer. */
157#define BUF_INTERVALS(buf) ((buf)->text->intervals)
158
159/* Marker chain of buffer. */
160#define BUF_MARKERS(buf) ((buf)->text->markers)
133a3962
GM
161
162#define BUF_UNCHANGED_MODIFIED(buf) \
163 ((buf)->text->unchanged_modified)
164
165#define BUF_OVERLAY_UNCHANGED_MODIFIED(buf) \
166 ((buf)->text->overlay_unchanged_modified)
167#define BUF_BEG_UNCHANGED(buf) ((buf)->text->beg_unchanged)
168#define BUF_END_UNCHANGED(buf) ((buf)->text->end_unchanged)
169
170#define UNCHANGED_MODIFIED \
171 BUF_UNCHANGED_MODIFIED (current_buffer)
172#define OVERLAY_UNCHANGED_MODIFIED \
173 BUF_OVERLAY_UNCHANGED_MODIFIED (current_buffer)
174#define BEG_UNCHANGED BUF_BEG_UNCHANGED (current_buffer)
175#define END_UNCHANGED BUF_END_UNCHANGED (current_buffer)
176
177/* Compute how many characters at the top and bottom of BUF are
178 unchanged when the range START..END is modified. This computation
179 must be done each time BUF is modified. */
180
181#define BUF_COMPUTE_UNCHANGED(buf, start, end) \
182 do \
183 { \
9a6bd51a
GM
184 if (BUF_UNCHANGED_MODIFIED (buf) == BUF_MODIFF (buf) \
185 && (BUF_OVERLAY_UNCHANGED_MODIFIED (buf) \
186 == BUF_OVERLAY_MODIFF (buf))) \
133a3962
GM
187 { \
188 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \
189 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \
190 } \
191 else \
192 { \
193 if (BUF_Z (buf) - (end) < BUF_END_UNCHANGED (buf)) \
194 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \
195 if ((start) - BUF_BEG (buf) < BUF_BEG_UNCHANGED (buf)) \
196 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \
197 } \
198 } \
199 while (0)
177c0ea7 200
69f9064e 201\f
33f1148d 202/* Macros to set PT in the current buffer, or another buffer. */
b3ec245a 203
69f9064e
RS
204#define SET_PT(position) (set_point (current_buffer, (position)))
205#define TEMP_SET_PT(position) (temp_set_point (current_buffer, (position)))
b3ec245a 206
69f9064e
RS
207#define SET_PT_BOTH(position, byte) \
208 (set_point_both (current_buffer, (position), (byte)))
209#define TEMP_SET_PT_BOTH(position, byte) \
210 (temp_set_point_both (current_buffer, (position), (byte)))
96b65d4e 211
69f9064e
RS
212#define BUF_SET_PT(buffer, position) \
213 (set_point ((buffer), (position)))
214#define BUF_TEMP_SET_PT(buffer, position) \
215 (temp_set_point ((buffer), (position)))
96b65d4e 216
69f9064e
RS
217extern void set_point P_ ((struct buffer *, int));
218extern INLINE void temp_set_point P_ ((struct buffer *, int));
219extern void set_point_both P_ ((struct buffer *, int, int));
220extern INLINE void temp_set_point_both P_ ((struct buffer *, int, int));
39c75ccb 221extern void enlarge_buffer_text P_ ((struct buffer *, int));
b3ec245a 222
69f9064e
RS
223\f
224/* Macros for setting the BEGV, ZV or PT of a given buffer.
225
226 SET_BUF_PT* seet to be redundant. Get rid of them?
227
228 The ..._BOTH macros take both a charpos and a bytepos,
229 which must correspond to each other.
230
231 The macros without ..._BOTH take just a charpos,
232 and compute the bytepos from it. */
b3ec245a 233
69f9064e
RS
234#define SET_BUF_BEGV(buf, charpos) \
235 ((buf)->begv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \
236 (buf)->begv = (charpos))
237
238#define SET_BUF_ZV(buf, charpos) \
239 ((buf)->zv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \
240 (buf)->zv = (charpos))
241
242#define SET_BUF_BEGV_BOTH(buf, charpos, byte) \
243 ((buf)->begv = (charpos), \
244 (buf)->begv_byte = (byte))
245
246#define SET_BUF_ZV_BOTH(buf, charpos, byte) \
247 ((buf)->zv = (charpos), \
248 (buf)->zv_byte = (byte))
249
250#define SET_BUF_PT_BOTH(buf, charpos, byte) \
251 ((buf)->pt = (charpos), \
252 (buf)->pt_byte = (byte))
253\f
254/* Macros to access a character or byte in the current buffer,
255 or convert between a byte position and an address.
256 These macros do not check that the position is in range. */
257
258/* Access a Lisp position value in POS,
8b4baa7b 259 and store the charpos in CHARPOS and the bytepos in BYTEPOS. */
69f9064e
RS
260
261#define DECODE_POSITION(charpos, bytepos, pos) \
262if (1) \
263 { \
264 Lisp_Object __pos = (pos); \
265 if (NUMBERP (__pos)) \
266 { \
267 charpos = __pos; \
268 bytepos = buf_charpos_to_bytepos (current_buffer, __pos); \
269 } \
270 else if (MARKERP (__pos)) \
271 { \
272 charpos = marker_position (__pos); \
273 bytepos = marker_byte_position (__pos); \
274 } \
275 else \
276 wrong_type_argument (Qinteger_or_marker_p, __pos); \
277 } \
278else
279
280/* Return the address of byte position N in current buffer. */
281
282#define BYTE_POS_ADDR(n) \
d895183d 283 (((n) >= GPT_BYTE ? GAP_SIZE : 0) + (n) + BEG_ADDR - BEG_BYTE)
69f9064e
RS
284
285/* Return the address of char position N. */
286
287#define CHAR_POS_ADDR(n) \
288 (((n) >= GPT ? GAP_SIZE : 0) \
289 + buf_charpos_to_bytepos (current_buffer, n) \
d895183d 290 + BEG_ADDR - BEG_BYTE)
69f9064e
RS
291
292/* Convert a character position to a byte position. */
293
294#define CHAR_TO_BYTE(charpos) \
295 (buf_charpos_to_bytepos (current_buffer, charpos))
296
297/* Convert a byte position to a character position. */
298
299#define BYTE_TO_CHAR(bytepos) \
300 (buf_bytepos_to_charpos (current_buffer, bytepos))
301
302/* Convert PTR, the address of a byte in the buffer, into a byte position. */
303
304#define PTR_BYTE_POS(ptr) \
305((ptr) - (current_buffer)->text->beg \
d895183d
SM
306 - (ptr - (current_buffer)->text->beg <= (unsigned) (GPT_BYTE - BEG_BYTE) ? 0 : GAP_SIZE) \
307 + BEG_BYTE)
69f9064e
RS
308
309/* Return character at position POS. */
310
311#define FETCH_CHAR(pos) \
312 (!NILP (current_buffer->enable_multibyte_characters) \
313 ? FETCH_MULTIBYTE_CHAR ((pos)) \
314 : FETCH_BYTE ((pos)))
315
316/* Return the byte at byte position N. */
317
318#define FETCH_BYTE(n) *(BYTE_POS_ADDR ((n)))
319
320/* Variables used locally in FETCH_MULTIBYTE_CHAR. */
321extern unsigned char *_fetch_multibyte_char_p;
69f9064e
RS
322
323/* Return character code of multi-byte form at position POS. If POS
324 doesn't point the head of valid multi-byte form, only the byte at
325 POS is returned. No range checking. */
326
327#define FETCH_MULTIBYTE_CHAR(pos) \
328 (_fetch_multibyte_char_p = (((pos) >= GPT_BYTE ? GAP_SIZE : 0) \
8f924df7 329 + (pos) + BEG_ADDR - BEG_BYTE), \
feb3066c
KH
330 STRING_CHAR (_fetch_multibyte_char_p, 0))
331
332/* Return character at position POS. If the current buffer is unibyte
333 and the character is not ASCII, make the returning character
334 multibyte. */
335
336#define FETCH_CHAR_AS_MULTIBYTE(pos) \
337 (!NILP (current_buffer->enable_multibyte_characters) \
338 ? FETCH_MULTIBYTE_CHAR ((pos)) \
339 : unibyte_char_to_multibyte (FETCH_BYTE ((pos))))
340
69f9064e
RS
341\f
342/* Macros for accessing a character or byte,
343 or converting between byte positions and addresses,
344 in a specified buffer. */
345
177c0ea7 346/* Return the address of character at byte position POS in buffer BUF.
b3ec245a 347 Note that both arguments can be computed more than once. */
69f9064e
RS
348
349#define BUF_BYTE_ADDRESS(buf, pos) \
d895183d 350((buf)->text->beg + (pos) - BEG_BYTE \
69f9064e
RS
351 + ((pos) >= (buf)->text->gpt_byte ? (buf)->text->gap_size : 0))
352
177c0ea7 353/* Return the address of character at char position POS in buffer BUF.
69f9064e
RS
354 Note that both arguments can be computed more than once. */
355
356#define BUF_CHAR_ADDRESS(buf, pos) \
d895183d 357((buf)->text->beg + buf_charpos_to_bytepos ((buf), (pos)) - BEG_BYTE \
c1ea566e 358 + ((pos) >= (buf)->text->gpt ? (buf)->text->gap_size : 0))
b3ec245a 359
69f9064e
RS
360/* Convert PTR, the address of a char in buffer BUF,
361 into a character position. */
790f39e7 362
69f9064e
RS
363#define BUF_PTR_BYTE_POS(buf, ptr) \
364((ptr) - (buf)->text->beg \
d895183d 365 - (ptr - (buf)->text->beg <= (unsigned) (BUF_GPT_BYTE ((buf)) - BEG_BYTE)\
69f9064e 366 ? 0 : BUF_GAP_SIZE ((buf))) \
d895183d 367 + BEG_BYTE)
69f9064e
RS
368
369/* Return the character at byte position POS in buffer BUF. */
370
371#define BUF_FETCH_CHAR(buf, pos) \
372 (!NILP (buf->enable_multibyte_characters) \
373 ? BUF_FETCH_MULTIBYTE_CHAR ((buf), (pos)) \
374 : BUF_FETCH_BYTE ((buf), (pos)))
375
376/* Return the byte at byte position N in buffer BUF. */
377
378#define BUF_FETCH_BYTE(buf, n) \
379 *(BUF_BYTE_ADDRESS ((buf), (n)))
380
381/* Return character code of multi-byte form at byte position POS in BUF.
382 If POS doesn't point the head of valid multi-byte form, only the byte at
383 POS is returned. No range checking. */
384
385#define BUF_FETCH_MULTIBYTE_CHAR(buf, pos) \
386 (_fetch_multibyte_char_p \
387 = (((pos) >= BUF_GPT_BYTE (buf) ? BUF_GAP_SIZE (buf) : 0) \
d895183d 388 + (pos) + BUF_BEG_ADDR (buf) - BEG_BYTE), \
feb3066c 389 STRING_CHAR (_fetch_multibyte_char_p, 0))
b3ec245a 390\f
69f9064e
RS
391/* Define the actual buffer data structures. */
392
393/* This data structure describes the actual text contents of a buffer.
394 It is shared between indirect buffers and their base buffer. */
395
b3ec245a
JB
396struct buffer_text
397 {
0afdfe38
GM
398 /* Actual address of buffer contents. If REL_ALLOC is defined,
399 this address might change when blocks are relocated which can
400 e.g. happen when malloc is called. So, don't pass a pointer
401 into a buffer's text to functions that malloc. */
402 unsigned char *beg;
177c0ea7 403
8aa91000
SM
404 EMACS_INT gpt; /* Char pos of gap in buffer. */
405 EMACS_INT z; /* Char pos of end of buffer. */
406 EMACS_INT gpt_byte; /* Byte pos of gap in buffer. */
407 EMACS_INT z_byte; /* Byte pos of end of buffer. */
408 EMACS_INT gap_size; /* Size of buffer's gap. */
b3ec245a
JB
409 int modiff; /* This counts buffer-modification events
410 for this buffer. It is incremented for
411 each such event, and never otherwise
412 changed. */
c1ea566e
RS
413 int save_modiff; /* Previous value of modiff, as of last
414 time buffer visited or saved a file. */
415
2e50b9cc
RS
416 int overlay_modiff; /* Counts modifications to overlays. */
417
133a3962 418 /* Minimum value of GPT - BEG since last redisplay that finished. */
8aa91000 419 EMACS_INT beg_unchanged;
133a3962
GM
420
421 /* Minimum value of Z - GPT since last redisplay that finished. */
8aa91000 422 EMACS_INT end_unchanged;
133a3962
GM
423
424 /* MODIFF as of last redisplay that finished; if it matches MODIFF,
425 beg_unchanged and end_unchanged contain no useful information. */
426 int unchanged_modified;
427
428 /* BUF_OVERLAY_MODIFF of current buffer, as of last redisplay that
429 finished; if it matches BUF_OVERLAY_MODIFF, beg_unchanged and
430 end_unchanged contain no useful information. */
431 int overlay_unchanged_modified;
432
bb4fee02
DL
433 /* Properties of this buffer's text. */
434 INTERVAL intervals;
c1ea566e
RS
435
436 /* The markers that refer to this buffer.
437 This is actually a single marker ---
438 successive elements in its marker `chain'
439 are the other markers referring to this buffer. */
568c168c 440 struct Lisp_Marker *markers;
b3ec245a
JB
441 };
442
69f9064e
RS
443/* This is the structure that the buffer Lisp object points to. */
444
b3ec245a 445struct buffer
82b911fd
GM
446{
447 /* Everything before the `name' slot must be of a non-Lisp_Object type,
448 and every slot after `name' must be a Lisp_Object.
449
450 Check out mark_buffer (alloc.c) to see why. */
451
452 EMACS_INT size;
453
454 /* Next buffer, in chain of all buffers including killed buffers.
455 This chain is used only for garbage collection, in order to
456 collect killed buffers properly.
457 Note that vectors and most pseudovectors are all on one chain,
458 but buffers are on a separate chain of their own. */
459 struct buffer *next;
460
461 /* This structure holds the coordinates of the buffer contents
462 in ordinary buffers. In indirect buffers, this is not used. */
463 struct buffer_text own_text;
464
465 /* This points to the `struct buffer_text' that used for this buffer.
466 In an ordinary buffer, this is the own_text field above.
467 In an indirect buffer, this is the own_text field of another buffer. */
468 struct buffer_text *text;
469
470 /* Char position of point in buffer. */
8aa91000 471 EMACS_INT pt;
82b911fd 472 /* Byte position of point in buffer. */
8aa91000 473 EMACS_INT pt_byte;
82b911fd 474 /* Char position of beginning of accessible range. */
8aa91000 475 EMACS_INT begv;
82b911fd 476 /* Byte position of beginning of accessible range. */
8aa91000 477 EMACS_INT begv_byte;
82b911fd 478 /* Char position of end of accessible range. */
8aa91000 479 EMACS_INT zv;
82b911fd 480 /* Byte position of end of accessible range. */
8aa91000 481 EMACS_INT zv_byte;
82b911fd
GM
482
483 /* In an indirect buffer, this points to the base buffer.
484 In an ordinary buffer, it is 0. */
485 struct buffer *base_buffer;
486
487 /* A non-zero value in slot IDX means that per-buffer variable
488 with index IDX has a local value in this buffer. The index IDX
489 for a buffer-local variable is stored in that variable's slot
490 in buffer_local_flags as a Lisp integer. If the index is -1,
491 this means the variable is always local in all buffers. */
ddebaaa9 492#define MAX_PER_BUFFER_VARS 50
82b911fd 493 char local_flags[MAX_PER_BUFFER_VARS];
177c0ea7 494
82b911fd
GM
495 /* Set to the modtime of the visited file when read or written.
496 -1 means visited file was nonexistent.
497 0 means visited file modtime unknown; in no case complain
498 about any mismatch on next save attempt. */
499 int modtime;
5e309390 500 /* The value of text->modiff at the last auto-save. */
82b911fd 501 int auto_save_modified;
5e309390
RS
502 /* The value of text->modiff at the last display error.
503 Redisplay of this buffer is inhibited until it changes again. */
504 int display_error_modiff;
82b911fd
GM
505 /* The time at which we detected a failure to auto-save,
506 Or -1 if we didn't have a failure. */
507 int auto_save_failure_time;
508 /* Position in buffer at which display started
509 the last time this buffer was displayed. */
8aa91000 510 EMACS_INT last_window_start;
82b911fd
GM
511
512 /* Set nonzero whenever the narrowing is changed in this buffer. */
513 int clip_changed;
514
515 /* If the long line scan cache is enabled (i.e. the buffer-local
516 variable cache-long-line-scans is non-nil), newline_cache
517 points to the newline cache, and width_run_cache points to the
518 width run cache.
519
520 The newline cache records which stretches of the buffer are
521 known *not* to contain newlines, so that they can be skipped
522 quickly when we search for newlines.
523
524 The width run cache records which stretches of the buffer are
525 known to contain characters whose widths are all the same. If
526 the width run cache maps a character to a value > 0, that value is
527 the character's width; if it maps a character to zero, we don't
528 know what its width is. This allows compute_motion to process
529 such regions very quickly, using algebra instead of inspecting
530 each character. See also width_table, below. */
531 struct region_cache *newline_cache;
532 struct region_cache *width_run_cache;
533
534 /* Non-zero means don't use redisplay optimizations for
535 displaying this buffer. */
536 unsigned prevent_redisplay_optimizations_p : 1;
537
87359a3d
SM
538 /* List of overlays that end at or before the current center,
539 in order of end-position. */
540 struct Lisp_Overlay *overlays_before;
541
542 /* List of overlays that end after the current center,
543 in order of start-position. */
544 struct Lisp_Overlay *overlays_after;
545
58c8ea37
SM
546 /* Position where the overlay lists are centered. */
547 EMACS_INT overlay_center;
548
33f1148d 549 /* Everything from here down must be a Lisp_Object. */
82b911fd
GM
550
551 /* The name of this buffer. */
552 Lisp_Object name;
553
554 /* The name of the file visited in this buffer, or nil. */
555 Lisp_Object filename;
556 /* Dir for expanding relative file names. */
557 Lisp_Object directory;
558 /* True iff this buffer has been backed up (if you write to the
559 visited file and it hasn't been backed up, then a backup will
560 be made). */
561 /* This isn't really used by the C code, so could be deleted. */
562 Lisp_Object backed_up;
563 /* Length of file when last read or saved.
564 This is not in the struct buffer_text
565 because it's not used in indirect buffers at all. */
566 Lisp_Object save_length;
567 /* File name used for auto-saving this buffer.
568 This is not in the struct buffer_text
569 because it's not used in indirect buffers at all. */
570 Lisp_Object auto_save_file_name;
571
572 /* Non-nil if buffer read-only. */
573 Lisp_Object read_only;
574 /* "The mark". This is a marker which may
575 point into this buffer or may point nowhere. */
576 Lisp_Object mark;
577
578 /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER)
579 for all per-buffer variables of this buffer. */
580 Lisp_Object local_var_alist;
581
582 /* Symbol naming major mode (eg, lisp-mode). */
583 Lisp_Object major_mode;
584 /* Pretty name of major mode (eg, "Lisp"). */
585 Lisp_Object mode_name;
586 /* Mode line element that controls format of mode line. */
587 Lisp_Object mode_line_format;
517e7945
RS
588
589 /* Changes in the buffer are recorded here for undo.
590 t means don't record anything.
591 This information belongs to the base buffer of an indirect buffer,
592 But we can't store it in the struct buffer_text
593 because local variables have to be right in the struct buffer.
594 So we copy it around in set_buffer_internal.
595 This comes before `name' because it is marked in a special way. */
596 Lisp_Object undo_list;
177c0ea7 597
82b911fd
GM
598 /* Analogous to mode_line_format for the line displayed at the top
599 of windows. Nil means don't display that line. */
600 Lisp_Object header_line_format;
601
602 /* Keys that are bound local to this buffer. */
603 Lisp_Object keymap;
604 /* This buffer's local abbrev table. */
605 Lisp_Object abbrev_table;
606 /* This buffer's syntax table. */
607 Lisp_Object syntax_table;
608 /* This buffer's category table. */
609 Lisp_Object category_table;
610
33f1148d 611 /* Values of several buffer-local variables. */
82b911fd 612 /* tab-width is buffer-local so that redisplay can find it
33f1148d 613 in buffers that are not current. */
82b911fd
GM
614 Lisp_Object case_fold_search;
615 Lisp_Object tab_width;
616 Lisp_Object fill_column;
617 Lisp_Object left_margin;
618 /* Function to call when insert space past fill column. */
619 Lisp_Object auto_fill_function;
620 /* nil: text, t: binary.
621 This value is meaningful only on certain operating systems. */
622 /* Actually, we don't need this flag any more because end-of-line
623 is handled correctly according to the buffer-file-coding-system
624 of the buffer. Just keeping it for backward compatibility. */
625 Lisp_Object buffer_file_type;
626
627 /* Case table for case-conversion in this buffer.
628 This char-table maps each char into its lower-case version. */
629 Lisp_Object downcase_table;
630 /* Char-table mapping each char to its upper-case version. */
631 Lisp_Object upcase_table;
632 /* Char-table for conversion for case-folding search. */
633 Lisp_Object case_canon_table;
634 /* Char-table of equivalences for case-folding search. */
635 Lisp_Object case_eqv_table;
636
637 /* Non-nil means do not display continuation lines. */
638 Lisp_Object truncate_lines;
639 /* Non-nil means display ctl chars with uparrow. */
640 Lisp_Object ctl_arrow;
641 /* Non-nil means display text from right to left. */
642 Lisp_Object direction_reversed;
643 /* Non-nil means do selective display;
644 see doc string in syms_of_buffer (buffer.c) for details. */
645 Lisp_Object selective_display;
b3ec245a 646#ifndef old
82b911fd
GM
647 /* Non-nil means show ... at end of line followed by invisible lines. */
648 Lisp_Object selective_display_ellipses;
b3ec245a 649#endif
82b911fd
GM
650 /* Alist of (FUNCTION . STRING) for each minor mode enabled in buffer. */
651 Lisp_Object minor_modes;
652 /* t if "self-insertion" should overwrite; `binary' if it should also
653 overwrite newlines and tabs - for editing executables and the like. */
654 Lisp_Object overwrite_mode;
655 /* non-nil means abbrev mode is on. Expand abbrevs automatically. */
656 Lisp_Object abbrev_mode;
657 /* Display table to use for text in this buffer. */
658 Lisp_Object display_table;
659 /* t means the mark and region are currently active. */
660 Lisp_Object mark_active;
661
82b911fd
GM
662 /* Non-nil means the buffer contents are regarded as multi-byte
663 form of characters, not a binary code. */
664 Lisp_Object enable_multibyte_characters;
665
666 /* Coding system to be used for encoding the buffer contents on
667 saving. */
668 Lisp_Object buffer_file_coding_system;
669
33f1148d 670 /* List of symbols naming the file format used for visited file. */
82b911fd
GM
671 Lisp_Object file_format;
672
dc511a66
LT
673 /* List of symbols naming the file format used for auto-save file. */
674 Lisp_Object auto_save_file_format;
675
82b911fd
GM
676 /* True if the newline position cache and width run cache are
677 enabled. See search.c and indent.c. */
678 Lisp_Object cache_long_line_scans;
679
680 /* If the width run cache is enabled, this table contains the
681 character widths width_run_cache (see above) assumes. When we
682 do a thorough redisplay, we compare this against the buffer's
683 current display table to see whether the display table has
684 affected the widths of any characters. If it has, we
685 invalidate the width run cache, and re-initialize width_table. */
686 Lisp_Object width_table;
687
688 /* In an indirect buffer, or a buffer that is the base of an
689 indirect buffer, this holds a marker that records
690 PT for this buffer when the buffer is not current. */
691 Lisp_Object pt_marker;
692
693 /* In an indirect buffer, or a buffer that is the base of an
694 indirect buffer, this holds a marker that records
695 BEGV for this buffer when the buffer is not current. */
696 Lisp_Object begv_marker;
697
698 /* In an indirect buffer, or a buffer that is the base of an
699 indirect buffer, this holds a marker that records
700 ZV for this buffer when the buffer is not current. */
701 Lisp_Object zv_marker;
702
703 /* This holds the point value before the last scroll operation.
704 Explicitly setting point sets this to nil. */
705 Lisp_Object point_before_scroll;
706
707 /* Truename of the visited file, or nil. */
708 Lisp_Object file_truename;
709
710 /* Invisibility spec of this buffer.
711 t => any non-nil `invisible' property means invisible.
712 A list => `invisible' property means invisible
713 if it is memq in that list. */
714 Lisp_Object invisibility_spec;
715
716 /* This is the last window that was selected with this buffer in it,
717 or nil if that window no longer displays this buffer. */
718 Lisp_Object last_selected_window;
719
720 /* Incremented each time the buffer is displayed in a window. */
721 Lisp_Object display_count;
177c0ea7 722
82b911fd
GM
723 /* Widths of left and right marginal areas for windows displaying
724 this buffer. */
7e10f254
KS
725 Lisp_Object left_margin_cols, right_margin_cols;
726
727 /* Widths of left and right fringe areas for windows displaying
728 this buffer. */
729 Lisp_Object left_fringe_width, right_fringe_width;
730
731 /* Non-nil means fringes are drawn outside display margins;
732 othersize draw them between margin areas and text. */
733 Lisp_Object fringes_outside_margins;
734
735 /* Width and type of scroll bar areas for windows displaying
736 this buffer. */
737 Lisp_Object scroll_bar_width, vertical_scroll_bar_type;
82b911fd
GM
738
739 /* Non-nil means indicate lines not displaying text (in a style
740 like vi). */
741 Lisp_Object indicate_empty_lines;
742
6b61353c
KH
743 /* Non-nil means indicate buffer boundaries and scrolling. */
744 Lisp_Object indicate_buffer_boundaries;
745
82b911fd
GM
746 /* Time stamp updated each time this buffer is displayed in a window. */
747 Lisp_Object display_time;
748
749 /* If scrolling the display because point is below the bottom of a
750 window showing this buffer, try to choose a window start so
751 that point ends up this number of lines from the top of the
752 window. Nil means that scrolling method isn't used. */
753 Lisp_Object scroll_up_aggressively;
177c0ea7 754
82b911fd
GM
755 /* If scrolling the display because point is above the top of a
756 window showing this buffer, try to choose a window start so
757 that point ends up this number of lines from the bottom of the
758 window. Nil means that scrolling method isn't used. */
759 Lisp_Object scroll_down_aggressively;
2d8c80b1 760
82b911fd
GM
761 /* Desired cursor type in this buffer. See the doc string of
762 per-buffer variable `cursor-type'. */
763 Lisp_Object cursor_type;
764
765 /* An integer > 0 means put that number of pixels below text lines
766 in the display of this buffer. */
767 Lisp_Object extra_line_spacing;
768};
a698b358 769
440d350c
RS
770\f
771/* This points to the current buffer. */
b3ec245a
JB
772
773extern struct buffer *current_buffer;
774
775/* This structure holds the default values of the buffer-local variables
440d350c 776 that have special slots in each buffer.
b3ec245a
JB
777 The default value occupies the same slot in this structure
778 as an individual buffer's value occupies in that buffer.
779 Setting the default value also goes through the alist of buffers
780 and stores into each buffer that does not say it has a local value. */
781
782extern struct buffer buffer_defaults;
783
784/* This structure marks which slots in a buffer have corresponding
785 default values in buffer_defaults.
786 Each such slot has a nonzero value in this structure.
787 The value has only one nonzero bit.
788
789 When a buffer has its own local value for a slot,
979332f6
GM
790 the entry for that slot (found in the same slot in this structure)
791 is turned on in the buffer's local_flags array.
b3ec245a
JB
792
793 If a slot in this structure is zero, then even though there may
440d350c 794 be a Lisp-level local variable for the slot, it has no default value,
b3ec245a
JB
795 and the corresponding slot in buffer_defaults is not used. */
796
797extern struct buffer buffer_local_flags;
798
799/* For each buffer slot, this points to the Lisp symbol name
800 for that slot in the current buffer. It is 0 for slots
801 that don't have such names. */
802
803extern struct buffer buffer_local_symbols;
804
fbfed6f0
JB
805/* This structure holds the required types for the values in the
806 buffer-local slots. If a slot contains Qnil, then the
807 corresponding buffer slot may contain a value of any type. If a
808 slot contains an integer, then prospective values' tags must be
f00008bc
KH
809 equal to that integer (except nil is always allowed).
810 When a tag does not match, the function
811 buffer_slot_type_mismatch will signal an error.
812
813 If a slot here contains -1, the corresponding variable is read-only. */
814
ea47125f 815extern struct buffer buffer_local_types;
440d350c 816\f
ae15c6c7 817extern void delete_all_overlays P_ ((struct buffer *));
4b7610a9 818extern void reset_buffer P_ ((struct buffer *));
58c8ea37
SM
819extern void evaporate_overlays P_ ((EMACS_INT));
820extern int overlays_at P_ ((EMACS_INT, int, Lisp_Object **, int *, int *, int *, int));
4b7610a9 821extern int sort_overlays P_ ((Lisp_Object *, int, struct window *));
58c8ea37
SM
822extern void recenter_overlay_lists P_ ((struct buffer *, EMACS_INT));
823extern int overlay_strings P_ ((EMACS_INT, struct window *, unsigned char **));
4b7610a9
AS
824extern void validate_region P_ ((Lisp_Object *, Lisp_Object *));
825extern void set_buffer_internal P_ ((struct buffer *));
826extern void set_buffer_internal_1 P_ ((struct buffer *));
827extern void set_buffer_temp P_ ((struct buffer *));
828extern void record_buffer P_ ((Lisp_Object));
829extern void buffer_slot_type_mismatch P_ ((int));
58c8ea37 830extern void fix_overlays_before P_ ((struct buffer *, EMACS_INT, EMACS_INT));
a465f86b 831extern void mmap_set_vars P_ ((int));
4b7610a9 832
002571dd
KS
833/* Get overlays at POSN into array OVERLAYS with NOVERLAYS elements.
834 If NEXTP is non-NULL, return next overlay there.
835 See overlay_at arg CHANGE_REQ for meaning of CHRQ arg. */
836
837#define GET_OVERLAYS_AT(posn, overlays, noverlays, nextp, chrq) \
838 do { \
839 int maxlen = 40; \
840 overlays = (Lisp_Object *) alloca (maxlen * sizeof (Lisp_Object)); \
841 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \
842 nextp, NULL, chrq); \
843 if (noverlays > maxlen) \
844 { \
845 maxlen = noverlays; \
846 overlays = (Lisp_Object *) alloca (maxlen * sizeof (Lisp_Object)); \
847 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \
848 nextp, NULL, chrq); \
849 } \
850 } while (0)
851
d6af5f0c 852EXFUN (Fbuffer_live_p, 1);
4b7610a9
AS
853EXFUN (Fbuffer_name, 1);
854EXFUN (Fget_file_buffer, 1);
855EXFUN (Fnext_overlay_change, 1);
856EXFUN (Fdelete_overlay, 1);
7dd73b78 857EXFUN (Fbuffer_local_value, 2);
440d350c 858
c1ea566e 859/* Functions to call before and after each text change. */
03c6309a
RS
860extern Lisp_Object Vbefore_change_functions;
861extern Lisp_Object Vafter_change_functions;
dbc4e1c1 862extern Lisp_Object Vfirst_change_hook;
23f73711
RS
863extern Lisp_Object Qbefore_change_functions;
864extern Lisp_Object Qafter_change_functions;
dbc4e1c1 865extern Lisp_Object Qfirst_change_hook;
b3ec245a 866
347d3e9c
KH
867/* If nonzero, all modification hooks are suppressed. */
868extern int inhibit_modification_hooks;
869
83ec8b67
RS
870extern Lisp_Object Vdeactivate_mark;
871extern Lisp_Object Vtransient_mark_mode;
440d350c
RS
872\f
873/* Overlays */
874
d00c875c 875/* 1 if the OV is an overlay object. */
a7be34e5 876
6c523803 877#define OVERLAY_VALID(OV) (OVERLAYP (OV))
b3ec245a 878
440d350c 879/* Return the marker that stands for where OV starts in the buffer. */
a7be34e5 880
21f7c864 881#define OVERLAY_START(OV) (XOVERLAY (OV)->start)
b3ec245a 882
440d350c 883/* Return the marker that stands for where OV ends in the buffer. */
a7be34e5 884
21f7c864 885#define OVERLAY_END(OV) (XOVERLAY (OV)->end)
b3ec245a 886
a7be34e5
GM
887/* Return the plist of overlay OV. */
888
889#define OVERLAY_PLIST(OV) XOVERLAY ((OV))->plist
890
d00c875c
KH
891/* Return the actual buffer position for the marker P.
892 We assume you know which buffer it's pointing into. */
b3ec245a 893
915857ff
KH
894#define OVERLAY_POSITION(P) \
895 (GC_MARKERP (P) ? marker_position (P) : (abort (), 0))
b3ec245a 896
39c75ccb 897\f
979332f6
GM
898/***********************************************************************
899 Buffer-local Variables
900 ***********************************************************************/
901
902/* Number of per-buffer variables used. */
903
ddebaaa9 904extern int last_per_buffer_idx;
979332f6
GM
905
906/* Return the offset in bytes of member VAR of struct buffer
907 from the start of a buffer structure. */
908
ddebaaa9 909#define PER_BUFFER_VAR_OFFSET(VAR) \
979332f6
GM
910 ((char *) &buffer_local_flags.VAR - (char *) &buffer_local_flags)
911
912/* Return the index of buffer-local variable VAR. Each per-buffer
913 variable has an index > 0 associated with it, except when it always
914 has buffer-local values, in which case the index is -1. If this is
915 0, this is a bug and means that the slot of VAR in
916 buffer_local_flags wasn't intiialized. */
917
ddebaaa9
GM
918#define PER_BUFFER_VAR_IDX(VAR) \
919 PER_BUFFER_IDX (PER_BUFFER_VAR_OFFSET (VAR))
979332f6
GM
920
921/* Value is non-zero if the variable with index IDX has a local value
922 in buffer B. */
923
ddebaaa9
GM
924#define PER_BUFFER_VALUE_P(B, IDX) \
925 (((IDX) < 0 || IDX >= last_per_buffer_idx) \
979332f6
GM
926 ? (abort (), 0) \
927 : ((B)->local_flags[IDX] != 0))
928
929/* Set whether per-buffer variable with index IDX has a buffer-local
930 value in buffer B. VAL zero means it hasn't. */
931
ddebaaa9 932#define SET_PER_BUFFER_VALUE_P(B, IDX, VAL) \
979332f6 933 do { \
ddebaaa9 934 if ((IDX) < 0 || (IDX) >= last_per_buffer_idx) \
979332f6
GM
935 abort (); \
936 (B)->local_flags[IDX] = (VAL); \
937 } while (0)
938
6b61353c
KH
939/* Return the index value of the per-buffer variable at offset OFFSET
940 in the buffer structure.
941
942 If the slot OFFSET has a corresponding default value in
943 buffer_defaults, the index value is positive and has only one
944 nonzero bit. When a buffer has its own local value for a slot, the
945 bit for that slot (found in the same slot in this structure) is
946 turned on in the buffer's local_flags array.
947
948 If the index value is -1, even though there may be a
949 DEFVAR_PER_BUFFER for the slot, there is no default value for it;
950 and the corresponding slot in buffer_defaults is not used.
951
952 If the index value is -2, then there is no DEFVAR_PER_BUFFER for
953 the slot, but there is a default value which is copied into each
954 new buffer.
955
956 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is
957 zero, that is a bug */
958
979332f6 959
ddebaaa9 960#define PER_BUFFER_IDX(OFFSET) \
979332f6
GM
961 XINT (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_flags))
962
963/* Return the default value of the per-buffer variable at offset
964 OFFSET in the buffer structure. */
965
ddebaaa9 966#define PER_BUFFER_DEFAULT(OFFSET) \
979332f6
GM
967 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_defaults))
968
969/* Return the buffer-local value of the per-buffer variable at offset
970 OFFSET in the buffer structure. */
971
ddebaaa9 972#define PER_BUFFER_VALUE(BUFFER, OFFSET) \
979332f6
GM
973 (*(Lisp_Object *)((OFFSET) + (char *) (BUFFER)))
974
975/* Return the symbol of the per-buffer variable at offset OFFSET in
976 the buffer structure. */
977
ddebaaa9 978#define PER_BUFFER_SYMBOL(OFFSET) \
979332f6
GM
979 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_symbols))
980
981/* Return the type of the per-buffer variable at offset OFFSET in the
982 buffer structure. */
983
ddebaaa9 984#define PER_BUFFER_TYPE(OFFSET) \
979332f6 985 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_types))
6b61353c
KH
986
987/* arch-tag: 679305dd-d41c-4a50-b170-3caf5c97b2d1
988 (do not change this comment) */