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