Remove the build-time option CLASH_DETECTION
[bpt/emacs.git] / src / buffer.c
1 /* Buffer manipulation primitives for GNU Emacs.
2
3 Copyright (C) 1985-1989, 1993-1995, 1997-2014 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 3 of the License, or
10 (at your option) 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. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include <config.h>
21
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <sys/param.h>
25 #include <errno.h>
26 #include <stdio.h>
27 #include <unistd.h>
28
29 #include <verify.h>
30
31 #include "lisp.h"
32 #include "intervals.h"
33 #include "window.h"
34 #include "commands.h"
35 #include "character.h"
36 #include "buffer.h"
37 #include "region-cache.h"
38 #include "indent.h"
39 #include "blockinput.h"
40 #include "keyboard.h"
41 #include "keymap.h"
42 #include "frame.h"
43
44 struct buffer *current_buffer; /* The current buffer. */
45
46 /* First buffer in chain of all buffers (in reverse order of creation).
47 Threaded through ->header.next.buffer. */
48
49 struct buffer *all_buffers;
50
51 /* This structure holds the default values of the buffer-local variables
52 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer.
53 The default value occupies the same slot in this structure
54 as an individual buffer's value occupies in that buffer.
55 Setting the default value also goes through the alist of buffers
56 and stores into each buffer that does not say it has a local value. */
57
58 struct buffer alignas (GCALIGNMENT) buffer_defaults;
59
60 /* This structure marks which slots in a buffer have corresponding
61 default values in buffer_defaults.
62 Each such slot has a nonzero value in this structure.
63 The value has only one nonzero bit.
64
65 When a buffer has its own local value for a slot,
66 the entry for that slot (found in the same slot in this structure)
67 is turned on in the buffer's local_flags array.
68
69 If a slot in this structure is -1, then even though there may
70 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it;
71 and the corresponding slot in buffer_defaults is not used.
72
73 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is
74 zero, that is a bug. */
75
76 struct buffer buffer_local_flags;
77
78 /* This structure holds the names of symbols whose values may be
79 buffer-local. It is indexed and accessed in the same way as the above. */
80
81 struct buffer alignas (GCALIGNMENT) buffer_local_symbols;
82
83 /* Return the symbol of the per-buffer variable at offset OFFSET in
84 the buffer structure. */
85
86 #define PER_BUFFER_SYMBOL(OFFSET) \
87 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_symbols))
88
89 /* Maximum length of an overlay vector. */
90 #define OVERLAY_COUNT_MAX \
91 ((ptrdiff_t) min (MOST_POSITIVE_FIXNUM, \
92 min (PTRDIFF_MAX, SIZE_MAX) / word_size))
93
94 /* Flags indicating which built-in buffer-local variables
95 are permanent locals. */
96 static char buffer_permanent_local_flags[MAX_PER_BUFFER_VARS];
97
98 /* Number of per-buffer variables used. */
99
100 int last_per_buffer_idx;
101
102 static void call_overlay_mod_hooks (Lisp_Object list, Lisp_Object overlay,
103 bool after, Lisp_Object arg1,
104 Lisp_Object arg2, Lisp_Object arg3);
105 static void swap_out_buffer_local_variables (struct buffer *b);
106 static void reset_buffer_local_variables (struct buffer *, bool);
107
108 /* Alist of all buffer names vs the buffers. This used to be
109 a Lisp-visible variable, but is no longer, to prevent lossage
110 due to user rplac'ing this alist or its elements. */
111 Lisp_Object Vbuffer_alist;
112
113 static Lisp_Object Qkill_buffer_query_functions;
114
115 /* Hook run before changing a major mode. */
116 static Lisp_Object Qchange_major_mode_hook;
117
118 Lisp_Object Qfirst_change_hook;
119 Lisp_Object Qbefore_change_functions;
120 Lisp_Object Qafter_change_functions;
121
122 static Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local;
123 static Lisp_Object Qpermanent_local_hook;
124
125 static Lisp_Object Qprotected_field;
126
127 static Lisp_Object QSFundamental; /* A string "Fundamental". */
128
129 static Lisp_Object Qkill_buffer_hook;
130 static Lisp_Object Qbuffer_list_update_hook;
131
132 static Lisp_Object Qget_file_buffer;
133
134 static Lisp_Object Qoverlayp;
135
136 Lisp_Object Qpriority, Qbefore_string, Qafter_string;
137
138 static Lisp_Object Qevaporate;
139
140 Lisp_Object Qmodification_hooks;
141 Lisp_Object Qinsert_in_front_hooks;
142 Lisp_Object Qinsert_behind_hooks;
143
144 static void alloc_buffer_text (struct buffer *, ptrdiff_t);
145 static void free_buffer_text (struct buffer *b);
146 static struct Lisp_Overlay * copy_overlays (struct buffer *, struct Lisp_Overlay *);
147 static void modify_overlay (struct buffer *, ptrdiff_t, ptrdiff_t);
148 static Lisp_Object buffer_lisp_local_variables (struct buffer *, bool);
149
150 static void
151 CHECK_OVERLAY (Lisp_Object x)
152 {
153 CHECK_TYPE (OVERLAYP (x), Qoverlayp, x);
154 }
155
156 /* These setters are used only in this file, so they can be private.
157 The public setters are inline functions defined in buffer.h. */
158 static void
159 bset_abbrev_mode (struct buffer *b, Lisp_Object val)
160 {
161 b->INTERNAL_FIELD (abbrev_mode) = val;
162 }
163 static void
164 bset_abbrev_table (struct buffer *b, Lisp_Object val)
165 {
166 b->INTERNAL_FIELD (abbrev_table) = val;
167 }
168 static void
169 bset_auto_fill_function (struct buffer *b, Lisp_Object val)
170 {
171 b->INTERNAL_FIELD (auto_fill_function) = val;
172 }
173 static void
174 bset_auto_save_file_format (struct buffer *b, Lisp_Object val)
175 {
176 b->INTERNAL_FIELD (auto_save_file_format) = val;
177 }
178 static void
179 bset_auto_save_file_name (struct buffer *b, Lisp_Object val)
180 {
181 b->INTERNAL_FIELD (auto_save_file_name) = val;
182 }
183 static void
184 bset_backed_up (struct buffer *b, Lisp_Object val)
185 {
186 b->INTERNAL_FIELD (backed_up) = val;
187 }
188 static void
189 bset_begv_marker (struct buffer *b, Lisp_Object val)
190 {
191 b->INTERNAL_FIELD (begv_marker) = val;
192 }
193 static void
194 bset_bidi_display_reordering (struct buffer *b, Lisp_Object val)
195 {
196 b->INTERNAL_FIELD (bidi_display_reordering) = val;
197 }
198 static void
199 bset_buffer_file_coding_system (struct buffer *b, Lisp_Object val)
200 {
201 b->INTERNAL_FIELD (buffer_file_coding_system) = val;
202 }
203 static void
204 bset_case_fold_search (struct buffer *b, Lisp_Object val)
205 {
206 b->INTERNAL_FIELD (case_fold_search) = val;
207 }
208 static void
209 bset_ctl_arrow (struct buffer *b, Lisp_Object val)
210 {
211 b->INTERNAL_FIELD (ctl_arrow) = val;
212 }
213 static void
214 bset_cursor_in_non_selected_windows (struct buffer *b, Lisp_Object val)
215 {
216 b->INTERNAL_FIELD (cursor_in_non_selected_windows) = val;
217 }
218 static void
219 bset_cursor_type (struct buffer *b, Lisp_Object val)
220 {
221 b->INTERNAL_FIELD (cursor_type) = val;
222 }
223 static void
224 bset_display_table (struct buffer *b, Lisp_Object val)
225 {
226 b->INTERNAL_FIELD (display_table) = val;
227 }
228 static void
229 bset_extra_line_spacing (struct buffer *b, Lisp_Object val)
230 {
231 b->INTERNAL_FIELD (extra_line_spacing) = val;
232 }
233 static void
234 bset_file_format (struct buffer *b, Lisp_Object val)
235 {
236 b->INTERNAL_FIELD (file_format) = val;
237 }
238 static void
239 bset_file_truename (struct buffer *b, Lisp_Object val)
240 {
241 b->INTERNAL_FIELD (file_truename) = val;
242 }
243 static void
244 bset_fringe_cursor_alist (struct buffer *b, Lisp_Object val)
245 {
246 b->INTERNAL_FIELD (fringe_cursor_alist) = val;
247 }
248 static void
249 bset_fringe_indicator_alist (struct buffer *b, Lisp_Object val)
250 {
251 b->INTERNAL_FIELD (fringe_indicator_alist) = val;
252 }
253 static void
254 bset_fringes_outside_margins (struct buffer *b, Lisp_Object val)
255 {
256 b->INTERNAL_FIELD (fringes_outside_margins) = val;
257 }
258 static void
259 bset_header_line_format (struct buffer *b, Lisp_Object val)
260 {
261 b->INTERNAL_FIELD (header_line_format) = val;
262 }
263 static void
264 bset_indicate_buffer_boundaries (struct buffer *b, Lisp_Object val)
265 {
266 b->INTERNAL_FIELD (indicate_buffer_boundaries) = val;
267 }
268 static void
269 bset_indicate_empty_lines (struct buffer *b, Lisp_Object val)
270 {
271 b->INTERNAL_FIELD (indicate_empty_lines) = val;
272 }
273 static void
274 bset_invisibility_spec (struct buffer *b, Lisp_Object val)
275 {
276 b->INTERNAL_FIELD (invisibility_spec) = val;
277 }
278 static void
279 bset_left_fringe_width (struct buffer *b, Lisp_Object val)
280 {
281 b->INTERNAL_FIELD (left_fringe_width) = val;
282 }
283 static void
284 bset_major_mode (struct buffer *b, Lisp_Object val)
285 {
286 b->INTERNAL_FIELD (major_mode) = val;
287 }
288 static void
289 bset_mark (struct buffer *b, Lisp_Object val)
290 {
291 b->INTERNAL_FIELD (mark) = val;
292 }
293 static void
294 bset_minor_modes (struct buffer *b, Lisp_Object val)
295 {
296 b->INTERNAL_FIELD (minor_modes) = val;
297 }
298 static void
299 bset_mode_line_format (struct buffer *b, Lisp_Object val)
300 {
301 b->INTERNAL_FIELD (mode_line_format) = val;
302 }
303 static void
304 bset_mode_name (struct buffer *b, Lisp_Object val)
305 {
306 b->INTERNAL_FIELD (mode_name) = val;
307 }
308 static void
309 bset_name (struct buffer *b, Lisp_Object val)
310 {
311 b->INTERNAL_FIELD (name) = val;
312 }
313 static void
314 bset_overwrite_mode (struct buffer *b, Lisp_Object val)
315 {
316 b->INTERNAL_FIELD (overwrite_mode) = val;
317 }
318 static void
319 bset_pt_marker (struct buffer *b, Lisp_Object val)
320 {
321 b->INTERNAL_FIELD (pt_marker) = val;
322 }
323 static void
324 bset_right_fringe_width (struct buffer *b, Lisp_Object val)
325 {
326 b->INTERNAL_FIELD (right_fringe_width) = val;
327 }
328 static void
329 bset_save_length (struct buffer *b, Lisp_Object val)
330 {
331 b->INTERNAL_FIELD (save_length) = val;
332 }
333 static void
334 bset_scroll_bar_width (struct buffer *b, Lisp_Object val)
335 {
336 b->INTERNAL_FIELD (scroll_bar_width) = val;
337 }
338 static void
339 bset_scroll_down_aggressively (struct buffer *b, Lisp_Object val)
340 {
341 b->INTERNAL_FIELD (scroll_down_aggressively) = val;
342 }
343 static void
344 bset_scroll_up_aggressively (struct buffer *b, Lisp_Object val)
345 {
346 b->INTERNAL_FIELD (scroll_up_aggressively) = val;
347 }
348 static void
349 bset_selective_display (struct buffer *b, Lisp_Object val)
350 {
351 b->INTERNAL_FIELD (selective_display) = val;
352 }
353 static void
354 bset_selective_display_ellipses (struct buffer *b, Lisp_Object val)
355 {
356 b->INTERNAL_FIELD (selective_display_ellipses) = val;
357 }
358 static void
359 bset_vertical_scroll_bar_type (struct buffer *b, Lisp_Object val)
360 {
361 b->INTERNAL_FIELD (vertical_scroll_bar_type) = val;
362 }
363 static void
364 bset_word_wrap (struct buffer *b, Lisp_Object val)
365 {
366 b->INTERNAL_FIELD (word_wrap) = val;
367 }
368 static void
369 bset_zv_marker (struct buffer *b, Lisp_Object val)
370 {
371 b->INTERNAL_FIELD (zv_marker) = val;
372 }
373
374 void
375 nsberror (Lisp_Object spec)
376 {
377 if (STRINGP (spec))
378 error ("No buffer named %s", SDATA (spec));
379 error ("Invalid buffer argument");
380 }
381 \f
382 DEFUN ("buffer-live-p", Fbuffer_live_p, Sbuffer_live_p, 1, 1, 0,
383 doc: /* Return non-nil if OBJECT is a buffer which has not been killed.
384 Value is nil if OBJECT is not a buffer or if it has been killed. */)
385 (Lisp_Object object)
386 {
387 return ((BUFFERP (object) && BUFFER_LIVE_P (XBUFFER (object)))
388 ? Qt : Qnil);
389 }
390
391 DEFUN ("buffer-list", Fbuffer_list, Sbuffer_list, 0, 1, 0,
392 doc: /* Return a list of all existing live buffers.
393 If the optional arg FRAME is a frame, we return the buffer list in the
394 proper order for that frame: the buffers show in FRAME come first,
395 followed by the rest of the buffers. */)
396 (Lisp_Object frame)
397 {
398 Lisp_Object general;
399 general = Fmapcar (Qcdr, Vbuffer_alist);
400
401 if (FRAMEP (frame))
402 {
403 Lisp_Object framelist, prevlist, tail;
404 Lisp_Object args[3];
405
406 framelist = Fcopy_sequence (XFRAME (frame)->buffer_list);
407 prevlist = Fnreverse (Fcopy_sequence
408 (XFRAME (frame)->buried_buffer_list));
409
410 /* Remove from GENERAL any buffer that duplicates one in
411 FRAMELIST or PREVLIST. */
412 tail = framelist;
413 while (CONSP (tail))
414 {
415 general = Fdelq (XCAR (tail), general);
416 tail = XCDR (tail);
417 }
418 tail = prevlist;
419 while (CONSP (tail))
420 {
421 general = Fdelq (XCAR (tail), general);
422 tail = XCDR (tail);
423 }
424
425 args[0] = framelist;
426 args[1] = general;
427 args[2] = prevlist;
428 return Fnconc (3, args);
429 }
430 else
431 return general;
432 }
433
434 /* Like Fassoc, but use Fstring_equal to compare
435 (which ignores text properties),
436 and don't ever QUIT. */
437
438 static Lisp_Object
439 assoc_ignore_text_properties (register Lisp_Object key, Lisp_Object list)
440 {
441 register Lisp_Object tail;
442 for (tail = list; CONSP (tail); tail = XCDR (tail))
443 {
444 register Lisp_Object elt, tem;
445 elt = XCAR (tail);
446 tem = Fstring_equal (Fcar (elt), key);
447 if (!NILP (tem))
448 return elt;
449 }
450 return Qnil;
451 }
452
453 DEFUN ("get-buffer", Fget_buffer, Sget_buffer, 1, 1, 0,
454 doc: /* Return the buffer named BUFFER-OR-NAME.
455 BUFFER-OR-NAME must be either a string or a buffer. If BUFFER-OR-NAME
456 is a string and there is no buffer with that name, return nil. If
457 BUFFER-OR-NAME is a buffer, return it as given. */)
458 (register Lisp_Object buffer_or_name)
459 {
460 if (BUFFERP (buffer_or_name))
461 return buffer_or_name;
462 CHECK_STRING (buffer_or_name);
463
464 return Fcdr (assoc_ignore_text_properties (buffer_or_name, Vbuffer_alist));
465 }
466
467 DEFUN ("get-file-buffer", Fget_file_buffer, Sget_file_buffer, 1, 1, 0,
468 doc: /* Return the buffer visiting file FILENAME (a string).
469 The buffer's `buffer-file-name' must match exactly the expansion of FILENAME.
470 If there is no such live buffer, return nil.
471 See also `find-buffer-visiting'. */)
472 (register Lisp_Object filename)
473 {
474 register Lisp_Object tail, buf, handler;
475
476 CHECK_STRING (filename);
477 filename = Fexpand_file_name (filename, Qnil);
478
479 /* If the file name has special constructs in it,
480 call the corresponding file handler. */
481 handler = Ffind_file_name_handler (filename, Qget_file_buffer);
482 if (!NILP (handler))
483 {
484 Lisp_Object handled_buf = call2 (handler, Qget_file_buffer,
485 filename);
486 return BUFFERP (handled_buf) ? handled_buf : Qnil;
487 }
488
489 FOR_EACH_LIVE_BUFFER (tail, buf)
490 {
491 if (!STRINGP (BVAR (XBUFFER (buf), filename))) continue;
492 if (!NILP (Fstring_equal (BVAR (XBUFFER (buf), filename), filename)))
493 return buf;
494 }
495 return Qnil;
496 }
497
498 Lisp_Object
499 get_truename_buffer (register Lisp_Object filename)
500 {
501 register Lisp_Object tail, buf;
502
503 FOR_EACH_LIVE_BUFFER (tail, buf)
504 {
505 if (!STRINGP (BVAR (XBUFFER (buf), file_truename))) continue;
506 if (!NILP (Fstring_equal (BVAR (XBUFFER (buf), file_truename), filename)))
507 return buf;
508 }
509 return Qnil;
510 }
511
512 DEFUN ("get-buffer-create", Fget_buffer_create, Sget_buffer_create, 1, 1, 0,
513 doc: /* Return the buffer specified by BUFFER-OR-NAME, creating a new one if needed.
514 If BUFFER-OR-NAME is a string and a live buffer with that name exists,
515 return that buffer. If no such buffer exists, create a new buffer with
516 that name and return it. If BUFFER-OR-NAME starts with a space, the new
517 buffer does not keep undo information.
518
519 If BUFFER-OR-NAME is a buffer instead of a string, return it as given,
520 even if it is dead. The return value is never nil. */)
521 (register Lisp_Object buffer_or_name)
522 {
523 register Lisp_Object buffer, name;
524 register struct buffer *b;
525
526 buffer = Fget_buffer (buffer_or_name);
527 if (!NILP (buffer))
528 return buffer;
529
530 if (SCHARS (buffer_or_name) == 0)
531 error ("Empty string for buffer name is not allowed");
532
533 b = allocate_buffer ();
534
535 /* An ordinary buffer uses its own struct buffer_text. */
536 b->text = &b->own_text;
537 b->base_buffer = NULL;
538 /* No one shares the text with us now. */
539 b->indirections = 0;
540 /* No one shows us now. */
541 b->window_count = 0;
542
543 BUF_GAP_SIZE (b) = 20;
544 block_input ();
545 /* We allocate extra 1-byte at the tail and keep it always '\0' for
546 anchoring a search. */
547 alloc_buffer_text (b, BUF_GAP_SIZE (b) + 1);
548 unblock_input ();
549 if (! BUF_BEG_ADDR (b))
550 buffer_memory_full (BUF_GAP_SIZE (b) + 1);
551
552 b->pt = BEG;
553 b->begv = BEG;
554 b->zv = BEG;
555 b->pt_byte = BEG_BYTE;
556 b->begv_byte = BEG_BYTE;
557 b->zv_byte = BEG_BYTE;
558
559 BUF_GPT (b) = BEG;
560 BUF_GPT_BYTE (b) = BEG_BYTE;
561
562 BUF_Z (b) = BEG;
563 BUF_Z_BYTE (b) = BEG_BYTE;
564 BUF_MODIFF (b) = 1;
565 BUF_CHARS_MODIFF (b) = 1;
566 BUF_OVERLAY_MODIFF (b) = 1;
567 BUF_SAVE_MODIFF (b) = 1;
568 BUF_COMPACT (b) = 1;
569 set_buffer_intervals (b, NULL);
570 BUF_UNCHANGED_MODIFIED (b) = 1;
571 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = 1;
572 BUF_END_UNCHANGED (b) = 0;
573 BUF_BEG_UNCHANGED (b) = 0;
574 *(BUF_GPT_ADDR (b)) = *(BUF_Z_ADDR (b)) = 0; /* Put an anchor '\0'. */
575 b->text->inhibit_shrinking = false;
576 b->text->redisplay = false;
577
578 b->newline_cache = 0;
579 b->width_run_cache = 0;
580 b->bidi_paragraph_cache = 0;
581 bset_width_table (b, Qnil);
582 b->prevent_redisplay_optimizations_p = 1;
583
584 /* An ordinary buffer normally doesn't need markers
585 to handle BEGV and ZV. */
586 bset_pt_marker (b, Qnil);
587 bset_begv_marker (b, Qnil);
588 bset_zv_marker (b, Qnil);
589
590 name = Fcopy_sequence (buffer_or_name);
591 set_string_intervals (name, NULL);
592 bset_name (b, name);
593
594 bset_undo_list (b, SREF (name, 0) != ' ' ? Qnil : Qt);
595
596 reset_buffer (b);
597 reset_buffer_local_variables (b, 1);
598
599 bset_mark (b, Fmake_marker ());
600 BUF_MARKERS (b) = NULL;
601
602 /* Put this in the alist of all live buffers. */
603 XSETBUFFER (buffer, b);
604 Vbuffer_alist = nconc2 (Vbuffer_alist, list1 (Fcons (name, buffer)));
605 /* And run buffer-list-update-hook. */
606 if (!NILP (Vrun_hooks))
607 call1 (Vrun_hooks, Qbuffer_list_update_hook);
608
609 return buffer;
610 }
611
612
613 /* Return a list of overlays which is a copy of the overlay list
614 LIST, but for buffer B. */
615
616 static struct Lisp_Overlay *
617 copy_overlays (struct buffer *b, struct Lisp_Overlay *list)
618 {
619 struct Lisp_Overlay *result = NULL, *tail = NULL;
620
621 for (; list; list = list->next)
622 {
623 Lisp_Object overlay, start, end;
624 struct Lisp_Marker *m;
625
626 eassert (MARKERP (list->start));
627 m = XMARKER (list->start);
628 start = build_marker (b, m->charpos, m->bytepos);
629 XMARKER (start)->insertion_type = m->insertion_type;
630
631 eassert (MARKERP (list->end));
632 m = XMARKER (list->end);
633 end = build_marker (b, m->charpos, m->bytepos);
634 XMARKER (end)->insertion_type = m->insertion_type;
635
636 overlay = build_overlay (start, end, Fcopy_sequence (list->plist));
637 if (tail)
638 tail = tail->next = XOVERLAY (overlay);
639 else
640 result = tail = XOVERLAY (overlay);
641 }
642
643 return result;
644 }
645
646 /* Set an appropriate overlay of B. */
647
648 static void
649 set_buffer_overlays_before (struct buffer *b, struct Lisp_Overlay *o)
650 {
651 b->overlays_before = o;
652 }
653
654 static void
655 set_buffer_overlays_after (struct buffer *b, struct Lisp_Overlay *o)
656 {
657 b->overlays_after = o;
658 }
659
660 /* Clone per-buffer values of buffer FROM.
661
662 Buffer TO gets the same per-buffer values as FROM, with the
663 following exceptions: (1) TO's name is left untouched, (2) markers
664 are copied and made to refer to TO, and (3) overlay lists are
665 copied. */
666
667 static void
668 clone_per_buffer_values (struct buffer *from, struct buffer *to)
669 {
670 int offset;
671
672 FOR_EACH_PER_BUFFER_OBJECT_AT (offset)
673 {
674 Lisp_Object obj;
675
676 /* Don't touch the `name' which should be unique for every buffer. */
677 if (offset == PER_BUFFER_VAR_OFFSET (name))
678 continue;
679
680 obj = per_buffer_value (from, offset);
681 if (MARKERP (obj) && XMARKER (obj)->buffer == from)
682 {
683 struct Lisp_Marker *m = XMARKER (obj);
684
685 obj = build_marker (to, m->charpos, m->bytepos);
686 XMARKER (obj)->insertion_type = m->insertion_type;
687 }
688
689 set_per_buffer_value (to, offset, obj);
690 }
691
692 memcpy (to->local_flags, from->local_flags, sizeof to->local_flags);
693
694 set_buffer_overlays_before (to, copy_overlays (to, from->overlays_before));
695 set_buffer_overlays_after (to, copy_overlays (to, from->overlays_after));
696
697 /* Get (a copy of) the alist of Lisp-level local variables of FROM
698 and install that in TO. */
699 bset_local_var_alist (to, buffer_lisp_local_variables (from, 1));
700 }
701
702
703 /* If buffer B has markers to record PT, BEGV and ZV when it is not
704 current, update these markers. */
705
706 static void
707 record_buffer_markers (struct buffer *b)
708 {
709 if (! NILP (BVAR (b, pt_marker)))
710 {
711 Lisp_Object buffer;
712
713 eassert (!NILP (BVAR (b, begv_marker)));
714 eassert (!NILP (BVAR (b, zv_marker)));
715
716 XSETBUFFER (buffer, b);
717 set_marker_both (BVAR (b, pt_marker), buffer, b->pt, b->pt_byte);
718 set_marker_both (BVAR (b, begv_marker), buffer, b->begv, b->begv_byte);
719 set_marker_both (BVAR (b, zv_marker), buffer, b->zv, b->zv_byte);
720 }
721 }
722
723
724 /* If buffer B has markers to record PT, BEGV and ZV when it is not
725 current, fetch these values into B->begv etc. */
726
727 static void
728 fetch_buffer_markers (struct buffer *b)
729 {
730 if (! NILP (BVAR (b, pt_marker)))
731 {
732 Lisp_Object m;
733
734 eassert (!NILP (BVAR (b, begv_marker)));
735 eassert (!NILP (BVAR (b, zv_marker)));
736
737 m = BVAR (b, pt_marker);
738 SET_BUF_PT_BOTH (b, marker_position (m), marker_byte_position (m));
739
740 m = BVAR (b, begv_marker);
741 SET_BUF_BEGV_BOTH (b, marker_position (m), marker_byte_position (m));
742
743 m = BVAR (b, zv_marker);
744 SET_BUF_ZV_BOTH (b, marker_position (m), marker_byte_position (m));
745 }
746 }
747
748
749 DEFUN ("make-indirect-buffer", Fmake_indirect_buffer, Smake_indirect_buffer,
750 2, 3,
751 "bMake indirect buffer (to buffer): \nBName of indirect buffer: ",
752 doc: /* Create and return an indirect buffer for buffer BASE-BUFFER, named NAME.
753 BASE-BUFFER should be a live buffer, or the name of an existing buffer.
754 NAME should be a string which is not the name of an existing buffer.
755 Optional argument CLONE non-nil means preserve BASE-BUFFER's state,
756 such as major and minor modes, in the indirect buffer.
757 CLONE nil means the indirect buffer's state is reset to default values. */)
758 (Lisp_Object base_buffer, Lisp_Object name, Lisp_Object clone)
759 {
760 Lisp_Object buf, tem;
761 struct buffer *b;
762
763 CHECK_STRING (name);
764 buf = Fget_buffer (name);
765 if (!NILP (buf))
766 error ("Buffer name `%s' is in use", SDATA (name));
767
768 tem = base_buffer;
769 base_buffer = Fget_buffer (base_buffer);
770 if (NILP (base_buffer))
771 error ("No such buffer: `%s'", SDATA (tem));
772 if (!BUFFER_LIVE_P (XBUFFER (base_buffer)))
773 error ("Base buffer has been killed");
774
775 if (SCHARS (name) == 0)
776 error ("Empty string for buffer name is not allowed");
777
778 b = allocate_buffer ();
779
780 /* No double indirection - if base buffer is indirect,
781 new buffer becomes an indirect to base's base. */
782 b->base_buffer = (XBUFFER (base_buffer)->base_buffer
783 ? XBUFFER (base_buffer)->base_buffer
784 : XBUFFER (base_buffer));
785
786 /* Use the base buffer's text object. */
787 b->text = b->base_buffer->text;
788 /* We have no own text. */
789 b->indirections = -1;
790 /* Notify base buffer that we share the text now. */
791 b->base_buffer->indirections++;
792 /* Always -1 for an indirect buffer. */
793 b->window_count = -1;
794
795 b->pt = b->base_buffer->pt;
796 b->begv = b->base_buffer->begv;
797 b->zv = b->base_buffer->zv;
798 b->pt_byte = b->base_buffer->pt_byte;
799 b->begv_byte = b->base_buffer->begv_byte;
800 b->zv_byte = b->base_buffer->zv_byte;
801
802 b->newline_cache = 0;
803 b->width_run_cache = 0;
804 b->bidi_paragraph_cache = 0;
805 bset_width_table (b, Qnil);
806
807 name = Fcopy_sequence (name);
808 set_string_intervals (name, NULL);
809 bset_name (b, name);
810
811 reset_buffer (b);
812 reset_buffer_local_variables (b, 1);
813
814 /* Put this in the alist of all live buffers. */
815 XSETBUFFER (buf, b);
816 Vbuffer_alist = nconc2 (Vbuffer_alist, list1 (Fcons (name, buf)));
817
818 bset_mark (b, Fmake_marker ());
819
820 /* The multibyte status belongs to the base buffer. */
821 bset_enable_multibyte_characters
822 (b, BVAR (b->base_buffer, enable_multibyte_characters));
823
824 /* Make sure the base buffer has markers for its narrowing. */
825 if (NILP (BVAR (b->base_buffer, pt_marker)))
826 {
827 eassert (NILP (BVAR (b->base_buffer, begv_marker)));
828 eassert (NILP (BVAR (b->base_buffer, zv_marker)));
829
830 bset_pt_marker (b->base_buffer,
831 build_marker (b->base_buffer, b->base_buffer->pt,
832 b->base_buffer->pt_byte));
833
834 bset_begv_marker (b->base_buffer,
835 build_marker (b->base_buffer, b->base_buffer->begv,
836 b->base_buffer->begv_byte));
837
838 bset_zv_marker (b->base_buffer,
839 build_marker (b->base_buffer, b->base_buffer->zv,
840 b->base_buffer->zv_byte));
841
842 XMARKER (BVAR (b->base_buffer, zv_marker))->insertion_type = 1;
843 }
844
845 if (NILP (clone))
846 {
847 /* Give the indirect buffer markers for its narrowing. */
848 bset_pt_marker (b, build_marker (b, b->pt, b->pt_byte));
849 bset_begv_marker (b, build_marker (b, b->begv, b->begv_byte));
850 bset_zv_marker (b, build_marker (b, b->zv, b->zv_byte));
851 XMARKER (BVAR (b, zv_marker))->insertion_type = 1;
852 }
853 else
854 {
855 struct buffer *old_b = current_buffer;
856
857 clone_per_buffer_values (b->base_buffer, b);
858 bset_filename (b, Qnil);
859 bset_file_truename (b, Qnil);
860 bset_display_count (b, make_number (0));
861 bset_backed_up (b, Qnil);
862 bset_auto_save_file_name (b, Qnil);
863 set_buffer_internal_1 (b);
864 Fset (intern ("buffer-save-without-query"), Qnil);
865 Fset (intern ("buffer-file-number"), Qnil);
866 Fset (intern ("buffer-stale-function"), Qnil);
867 set_buffer_internal_1 (old_b);
868 }
869
870 /* Run buffer-list-update-hook. */
871 if (!NILP (Vrun_hooks))
872 call1 (Vrun_hooks, Qbuffer_list_update_hook);
873
874 return buf;
875 }
876
877 /* Mark OV as no longer associated with B. */
878
879 static void
880 drop_overlay (struct buffer *b, struct Lisp_Overlay *ov)
881 {
882 eassert (b == XBUFFER (Fmarker_buffer (ov->start)));
883 modify_overlay (b, marker_position (ov->start),
884 marker_position (ov->end));
885 unchain_marker (XMARKER (ov->start));
886 unchain_marker (XMARKER (ov->end));
887
888 }
889
890 /* Delete all overlays of B and reset it's overlay lists. */
891
892 void
893 delete_all_overlays (struct buffer *b)
894 {
895 struct Lisp_Overlay *ov, *next;
896
897 /* FIXME: Since each drop_overlay will scan BUF_MARKERS to unlink its
898 markers, we have an unneeded O(N^2) behavior here. */
899 for (ov = b->overlays_before; ov; ov = next)
900 {
901 drop_overlay (b, ov);
902 next = ov->next;
903 ov->next = NULL;
904 }
905
906 for (ov = b->overlays_after; ov; ov = next)
907 {
908 drop_overlay (b, ov);
909 next = ov->next;
910 ov->next = NULL;
911 }
912
913 set_buffer_overlays_before (b, NULL);
914 set_buffer_overlays_after (b, NULL);
915 }
916
917 /* Reinitialize everything about a buffer except its name and contents
918 and local variables.
919 If called on an already-initialized buffer, the list of overlays
920 should be deleted before calling this function, otherwise we end up
921 with overlays that claim to belong to the buffer but the buffer
922 claims it doesn't belong to it. */
923
924 void
925 reset_buffer (register struct buffer *b)
926 {
927 bset_filename (b, Qnil);
928 bset_file_truename (b, Qnil);
929 bset_directory (b, current_buffer ? BVAR (current_buffer, directory) : Qnil);
930 b->modtime = make_timespec (0, UNKNOWN_MODTIME_NSECS);
931 b->modtime_size = -1;
932 XSETFASTINT (BVAR (b, save_length), 0);
933 b->last_window_start = 1;
934 /* It is more conservative to start out "changed" than "unchanged". */
935 b->clip_changed = 0;
936 b->prevent_redisplay_optimizations_p = 1;
937 bset_backed_up (b, Qnil);
938 BUF_AUTOSAVE_MODIFF (b) = 0;
939 b->auto_save_failure_time = 0;
940 bset_auto_save_file_name (b, Qnil);
941 bset_read_only (b, Qnil);
942 set_buffer_overlays_before (b, NULL);
943 set_buffer_overlays_after (b, NULL);
944 b->overlay_center = BEG;
945 bset_mark_active (b, Qnil);
946 bset_point_before_scroll (b, Qnil);
947 bset_file_format (b, Qnil);
948 bset_auto_save_file_format (b, Qt);
949 bset_last_selected_window (b, Qnil);
950 bset_display_count (b, make_number (0));
951 bset_display_time (b, Qnil);
952 bset_enable_multibyte_characters
953 (b, BVAR (&buffer_defaults, enable_multibyte_characters));
954 bset_cursor_type (b, BVAR (&buffer_defaults, cursor_type));
955 bset_extra_line_spacing (b, BVAR (&buffer_defaults, extra_line_spacing));
956
957 b->display_error_modiff = 0;
958 }
959
960 /* Reset buffer B's local variables info.
961 Don't use this on a buffer that has already been in use;
962 it does not treat permanent locals consistently.
963 Instead, use Fkill_all_local_variables.
964
965 If PERMANENT_TOO, reset permanent buffer-local variables.
966 If not, preserve those. */
967
968 static void
969 reset_buffer_local_variables (struct buffer *b, bool permanent_too)
970 {
971 int offset, i;
972
973 /* Reset the major mode to Fundamental, together with all the
974 things that depend on the major mode.
975 default-major-mode is handled at a higher level.
976 We ignore it here. */
977 bset_major_mode (b, Qfundamental_mode);
978 bset_keymap (b, Qnil);
979 bset_mode_name (b, QSFundamental);
980 bset_minor_modes (b, Qnil);
981
982 /* If the standard case table has been altered and invalidated,
983 fix up its insides first. */
984 if (! (CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[0])
985 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[1])
986 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[2])))
987 Fset_standard_case_table (Vascii_downcase_table);
988
989 bset_downcase_table (b, Vascii_downcase_table);
990 bset_upcase_table (b, XCHAR_TABLE (Vascii_downcase_table)->extras[0]);
991 bset_case_canon_table (b, XCHAR_TABLE (Vascii_downcase_table)->extras[1]);
992 bset_case_eqv_table (b, XCHAR_TABLE (Vascii_downcase_table)->extras[2]);
993 bset_invisibility_spec (b, Qt);
994
995 /* Reset all (or most) per-buffer variables to their defaults. */
996 if (permanent_too)
997 bset_local_var_alist (b, Qnil);
998 else
999 {
1000 Lisp_Object tmp, prop, last = Qnil;
1001 for (tmp = BVAR (b, local_var_alist); CONSP (tmp); tmp = XCDR (tmp))
1002 if (!NILP (prop = Fget (XCAR (XCAR (tmp)), Qpermanent_local)))
1003 {
1004 /* If permanent-local, keep it. */
1005 last = tmp;
1006 if (EQ (prop, Qpermanent_local_hook))
1007 {
1008 /* This is a partially permanent hook variable.
1009 Preserve only the elements that want to be preserved. */
1010 Lisp_Object list, newlist;
1011 list = XCDR (XCAR (tmp));
1012 if (!CONSP (list))
1013 newlist = list;
1014 else
1015 for (newlist = Qnil; CONSP (list); list = XCDR (list))
1016 {
1017 Lisp_Object elt = XCAR (list);
1018 /* Preserve element ELT if it's t,
1019 if it is a function with a `permanent-local-hook' property,
1020 or if it's not a symbol. */
1021 if (! SYMBOLP (elt)
1022 || EQ (elt, Qt)
1023 || !NILP (Fget (elt, Qpermanent_local_hook)))
1024 newlist = Fcons (elt, newlist);
1025 }
1026 XSETCDR (XCAR (tmp), Fnreverse (newlist));
1027 }
1028 }
1029 /* Delete this local variable. */
1030 else if (NILP (last))
1031 bset_local_var_alist (b, XCDR (tmp));
1032 else
1033 XSETCDR (last, XCDR (tmp));
1034 }
1035
1036 for (i = 0; i < last_per_buffer_idx; ++i)
1037 if (permanent_too || buffer_permanent_local_flags[i] == 0)
1038 SET_PER_BUFFER_VALUE_P (b, i, 0);
1039
1040 /* For each slot that has a default value, copy that into the slot. */
1041 FOR_EACH_PER_BUFFER_OBJECT_AT (offset)
1042 {
1043 int idx = PER_BUFFER_IDX (offset);
1044 if ((idx > 0
1045 && (permanent_too
1046 || buffer_permanent_local_flags[idx] == 0)))
1047 set_per_buffer_value (b, offset, per_buffer_default (offset));
1048 }
1049 }
1050
1051 /* We split this away from generate-new-buffer, because rename-buffer
1052 and set-visited-file-name ought to be able to use this to really
1053 rename the buffer properly. */
1054
1055 DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name,
1056 Sgenerate_new_buffer_name, 1, 2, 0,
1057 doc: /* Return a string that is the name of no existing buffer based on NAME.
1058 If there is no live buffer named NAME, then return NAME.
1059 Otherwise modify name by appending `<NUMBER>', incrementing NUMBER
1060 \(starting at 2) until an unused name is found, and then return that name.
1061 Optional second argument IGNORE specifies a name that is okay to use (if
1062 it is in the sequence to be tried) even if a buffer with that name exists.
1063
1064 If NAME begins with a space (i.e., a buffer that is not normally
1065 visible to users), then if buffer NAME already exists a random number
1066 is first appended to NAME, to speed up finding a non-existent buffer. */)
1067 (register Lisp_Object name, Lisp_Object ignore)
1068 {
1069 register Lisp_Object gentemp, tem, tem2;
1070 ptrdiff_t count;
1071 char number[INT_BUFSIZE_BOUND (ptrdiff_t) + sizeof "<>"];
1072
1073 CHECK_STRING (name);
1074
1075 tem = Fstring_equal (name, ignore);
1076 if (!NILP (tem))
1077 return name;
1078 tem = Fget_buffer (name);
1079 if (NILP (tem))
1080 return name;
1081
1082 if (!strncmp (SSDATA (name), " ", 1)) /* see bug#1229 */
1083 {
1084 /* Note fileio.c:make_temp_name does random differently. */
1085 tem2 = concat2 (name, make_formatted_string
1086 (number, "-%"pI"d",
1087 XFASTINT (Frandom (make_number (999999)))));
1088 tem = Fget_buffer (tem2);
1089 if (NILP (tem))
1090 return tem2;
1091 }
1092 else
1093 tem2 = name;
1094
1095 count = 1;
1096 while (1)
1097 {
1098 gentemp = concat2 (tem2, make_formatted_string
1099 (number, "<%"pD"d>", ++count));
1100 tem = Fstring_equal (gentemp, ignore);
1101 if (!NILP (tem))
1102 return gentemp;
1103 tem = Fget_buffer (gentemp);
1104 if (NILP (tem))
1105 return gentemp;
1106 }
1107 }
1108
1109 \f
1110 DEFUN ("buffer-name", Fbuffer_name, Sbuffer_name, 0, 1, 0,
1111 doc: /* Return the name of BUFFER, as a string.
1112 BUFFER defaults to the current buffer.
1113 Return nil if BUFFER has been killed. */)
1114 (register Lisp_Object buffer)
1115 {
1116 if (NILP (buffer))
1117 return BVAR (current_buffer, name);
1118 CHECK_BUFFER (buffer);
1119 return BVAR (XBUFFER (buffer), name);
1120 }
1121
1122 DEFUN ("buffer-file-name", Fbuffer_file_name, Sbuffer_file_name, 0, 1, 0,
1123 doc: /* Return name of file BUFFER is visiting, or nil if none.
1124 No argument or nil as argument means use the current buffer. */)
1125 (register Lisp_Object buffer)
1126 {
1127 if (NILP (buffer))
1128 return BVAR (current_buffer, filename);
1129 CHECK_BUFFER (buffer);
1130 return BVAR (XBUFFER (buffer), filename);
1131 }
1132
1133 DEFUN ("buffer-base-buffer", Fbuffer_base_buffer, Sbuffer_base_buffer,
1134 0, 1, 0,
1135 doc: /* Return the base buffer of indirect buffer BUFFER.
1136 If BUFFER is not indirect, return nil.
1137 BUFFER defaults to the current buffer. */)
1138 (register Lisp_Object buffer)
1139 {
1140 struct buffer *base;
1141 Lisp_Object base_buffer;
1142
1143 if (NILP (buffer))
1144 base = current_buffer->base_buffer;
1145 else
1146 {
1147 CHECK_BUFFER (buffer);
1148 base = XBUFFER (buffer)->base_buffer;
1149 }
1150
1151 if (! base)
1152 return Qnil;
1153 XSETBUFFER (base_buffer, base);
1154 return base_buffer;
1155 }
1156
1157 DEFUN ("buffer-local-value", Fbuffer_local_value,
1158 Sbuffer_local_value, 2, 2, 0,
1159 doc: /* Return the value of VARIABLE in BUFFER.
1160 If VARIABLE does not have a buffer-local binding in BUFFER, the value
1161 is the default binding of the variable. */)
1162 (register Lisp_Object variable, register Lisp_Object buffer)
1163 {
1164 register Lisp_Object result = buffer_local_value_1 (variable, buffer);
1165
1166 if (EQ (result, Qunbound))
1167 xsignal1 (Qvoid_variable, variable);
1168
1169 return result;
1170 }
1171
1172
1173 /* Like Fbuffer_local_value, but return Qunbound if the variable is
1174 locally unbound. */
1175
1176 Lisp_Object
1177 buffer_local_value_1 (Lisp_Object variable, Lisp_Object buffer)
1178 {
1179 register struct buffer *buf;
1180 register Lisp_Object result;
1181 struct Lisp_Symbol *sym;
1182
1183 CHECK_SYMBOL (variable);
1184 CHECK_BUFFER (buffer);
1185 buf = XBUFFER (buffer);
1186 sym = XSYMBOL (variable);
1187
1188 start:
1189 switch (sym->redirect)
1190 {
1191 case SYMBOL_VARALIAS: sym = indirect_variable (sym); goto start;
1192 case SYMBOL_PLAINVAL: result = SYMBOL_VAL (sym); break;
1193 case SYMBOL_LOCALIZED:
1194 { /* Look in local_var_alist. */
1195 struct Lisp_Buffer_Local_Value *blv = SYMBOL_BLV (sym);
1196 XSETSYMBOL (variable, sym); /* Update In case of aliasing. */
1197 result = Fassoc (variable, BVAR (buf, local_var_alist));
1198 if (!NILP (result))
1199 {
1200 if (blv->fwd)
1201 { /* What binding is loaded right now? */
1202 Lisp_Object current_alist_element = blv->valcell;
1203
1204 /* The value of the currently loaded binding is not
1205 stored in it, but rather in the realvalue slot.
1206 Store that value into the binding it belongs to
1207 in case that is the one we are about to use. */
1208
1209 XSETCDR (current_alist_element,
1210 do_symval_forwarding (blv->fwd));
1211 }
1212 /* Now get the (perhaps updated) value out of the binding. */
1213 result = XCDR (result);
1214 }
1215 else
1216 result = Fdefault_value (variable);
1217 break;
1218 }
1219 case SYMBOL_FORWARDED:
1220 {
1221 union Lisp_Fwd *fwd = SYMBOL_FWD (sym);
1222 if (BUFFER_OBJFWDP (fwd))
1223 result = per_buffer_value (buf, XBUFFER_OBJFWD (fwd)->offset);
1224 else
1225 result = Fdefault_value (variable);
1226 break;
1227 }
1228 default: emacs_abort ();
1229 }
1230
1231 return result;
1232 }
1233
1234 /* Return an alist of the Lisp-level buffer-local bindings of
1235 buffer BUF. That is, don't include the variables maintained
1236 in special slots in the buffer object.
1237 If not CLONE, replace elements of the form (VAR . unbound)
1238 by VAR. */
1239
1240 static Lisp_Object
1241 buffer_lisp_local_variables (struct buffer *buf, bool clone)
1242 {
1243 Lisp_Object result = Qnil;
1244 Lisp_Object tail;
1245 for (tail = BVAR (buf, local_var_alist); CONSP (tail); tail = XCDR (tail))
1246 {
1247 Lisp_Object val, elt;
1248
1249 elt = XCAR (tail);
1250
1251 /* Reference each variable in the alist in buf.
1252 If inquiring about the current buffer, this gets the current values,
1253 so store them into the alist so the alist is up to date.
1254 If inquiring about some other buffer, this swaps out any values
1255 for that buffer, making the alist up to date automatically. */
1256 val = find_symbol_value (XCAR (elt));
1257 /* Use the current buffer value only if buf is the current buffer. */
1258 if (buf != current_buffer)
1259 val = XCDR (elt);
1260
1261 result = Fcons (!clone && EQ (val, Qunbound)
1262 ? XCAR (elt)
1263 : Fcons (XCAR (elt), val),
1264 result);
1265 }
1266
1267 return result;
1268 }
1269
1270 DEFUN ("buffer-local-variables", Fbuffer_local_variables,
1271 Sbuffer_local_variables, 0, 1, 0,
1272 doc: /* Return an alist of variables that are buffer-local in BUFFER.
1273 Most elements look like (SYMBOL . VALUE), describing one variable.
1274 For a symbol that is locally unbound, just the symbol appears in the value.
1275 Note that storing new VALUEs in these elements doesn't change the variables.
1276 No argument or nil as argument means use current buffer as BUFFER. */)
1277 (register Lisp_Object buffer)
1278 {
1279 register struct buffer *buf;
1280 register Lisp_Object result;
1281
1282 if (NILP (buffer))
1283 buf = current_buffer;
1284 else
1285 {
1286 CHECK_BUFFER (buffer);
1287 buf = XBUFFER (buffer);
1288 }
1289
1290 result = buffer_lisp_local_variables (buf, 0);
1291
1292 /* Add on all the variables stored in special slots. */
1293 {
1294 int offset, idx;
1295
1296 FOR_EACH_PER_BUFFER_OBJECT_AT (offset)
1297 {
1298 idx = PER_BUFFER_IDX (offset);
1299 if ((idx == -1 || PER_BUFFER_VALUE_P (buf, idx))
1300 && SYMBOLP (PER_BUFFER_SYMBOL (offset)))
1301 {
1302 Lisp_Object sym = PER_BUFFER_SYMBOL (offset);
1303 Lisp_Object val = per_buffer_value (buf, offset);
1304 result = Fcons (EQ (val, Qunbound) ? sym : Fcons (sym, val),
1305 result);
1306 }
1307 }
1308 }
1309
1310 return result;
1311 }
1312 \f
1313 DEFUN ("buffer-modified-p", Fbuffer_modified_p, Sbuffer_modified_p,
1314 0, 1, 0,
1315 doc: /* Return t if BUFFER was modified since its file was last read or saved.
1316 No argument or nil as argument means use current buffer as BUFFER. */)
1317 (register Lisp_Object buffer)
1318 {
1319 register struct buffer *buf;
1320 if (NILP (buffer))
1321 buf = current_buffer;
1322 else
1323 {
1324 CHECK_BUFFER (buffer);
1325 buf = XBUFFER (buffer);
1326 }
1327
1328 return BUF_SAVE_MODIFF (buf) < BUF_MODIFF (buf) ? Qt : Qnil;
1329 }
1330
1331 DEFUN ("force-mode-line-update", Fforce_mode_line_update,
1332 Sforce_mode_line_update, 0, 1, 0,
1333 doc: /* Force redisplay of the current buffer's mode line and header line.
1334 With optional non-nil ALL, force redisplay of all mode lines and
1335 header lines. This function also forces recomputation of the
1336 menu bar menus and the frame title. */)
1337 (Lisp_Object all)
1338 {
1339 if (!NILP (all))
1340 {
1341 update_mode_lines = 10;
1342 /* FIXME: This can't be right. */
1343 current_buffer->prevent_redisplay_optimizations_p = true;
1344 }
1345 else if (buffer_window_count (current_buffer))
1346 {
1347 bset_update_mode_line (current_buffer);
1348 current_buffer->prevent_redisplay_optimizations_p = true;
1349 }
1350 return all;
1351 }
1352
1353 DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p, Sset_buffer_modified_p,
1354 1, 1, 0,
1355 doc: /* Mark current buffer as modified or unmodified according to FLAG.
1356 A non-nil FLAG means mark the buffer modified. */)
1357 (Lisp_Object flag)
1358 {
1359 Frestore_buffer_modified_p (flag);
1360
1361 /* Set update_mode_lines only if buffer is displayed in some window.
1362 Packages like jit-lock or lazy-lock preserve a buffer's modified
1363 state by recording/restoring the state around blocks of code.
1364 Setting update_mode_lines makes redisplay consider all windows
1365 (on all frames). Stealth fontification of buffers not displayed
1366 would incur additional redisplay costs if we'd set
1367 update_modes_lines unconditionally.
1368
1369 Ideally, I think there should be another mechanism for fontifying
1370 buffers without "modifying" buffers, or redisplay should be
1371 smarter about updating the `*' in mode lines. --gerd */
1372 return Fforce_mode_line_update (Qnil);
1373 }
1374
1375 DEFUN ("restore-buffer-modified-p", Frestore_buffer_modified_p,
1376 Srestore_buffer_modified_p, 1, 1, 0,
1377 doc: /* Like `set-buffer-modified-p', with a difference concerning redisplay.
1378 It is not ensured that mode lines will be updated to show the modified
1379 state of the current buffer. Use with care. */)
1380 (Lisp_Object flag)
1381 {
1382 Lisp_Object fn;
1383
1384 /* If buffer becoming modified, lock the file.
1385 If buffer becoming unmodified, unlock the file. */
1386
1387 struct buffer *b = current_buffer->base_buffer
1388 ? current_buffer->base_buffer
1389 : current_buffer;
1390
1391 fn = BVAR (b, file_truename);
1392 /* Test buffer-file-name so that binding it to nil is effective. */
1393 if (!NILP (fn) && ! NILP (BVAR (b, filename)))
1394 {
1395 bool already = SAVE_MODIFF < MODIFF;
1396 if (!already && !NILP (flag))
1397 lock_file (fn);
1398 else if (already && NILP (flag))
1399 unlock_file (fn);
1400 }
1401
1402 /* Here we have a problem. SAVE_MODIFF is used here to encode
1403 buffer-modified-p (as SAVE_MODIFF<MODIFF) as well as
1404 recent-auto-save-p (as SAVE_MODIFF<auto_save_modified). So if we
1405 modify SAVE_MODIFF to affect one, we may affect the other
1406 as well.
1407 E.g. if FLAG is nil we need to set SAVE_MODIFF to MODIFF, but
1408 if SAVE_MODIFF<auto_save_modified that means we risk changing
1409 recent-auto-save-p from t to nil.
1410 Vice versa, if FLAG is non-nil and SAVE_MODIFF>=auto_save_modified
1411 we risk changing recent-auto-save-p from nil to t. */
1412 SAVE_MODIFF = (NILP (flag)
1413 /* FIXME: This unavoidably sets recent-auto-save-p to nil. */
1414 ? MODIFF
1415 /* Let's try to preserve recent-auto-save-p. */
1416 : SAVE_MODIFF < MODIFF ? SAVE_MODIFF
1417 /* If SAVE_MODIFF == auto_save_modified == MODIFF,
1418 we can either decrease SAVE_MODIFF and auto_save_modified
1419 or increase MODIFF. */
1420 : MODIFF++);
1421
1422 return flag;
1423 }
1424
1425 DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick,
1426 0, 1, 0,
1427 doc: /* Return BUFFER's tick counter, incremented for each change in text.
1428 Each buffer has a tick counter which is incremented each time the
1429 text in that buffer is changed. It wraps around occasionally.
1430 No argument or nil as argument means use current buffer as BUFFER. */)
1431 (register Lisp_Object buffer)
1432 {
1433 register struct buffer *buf;
1434 if (NILP (buffer))
1435 buf = current_buffer;
1436 else
1437 {
1438 CHECK_BUFFER (buffer);
1439 buf = XBUFFER (buffer);
1440 }
1441
1442 return make_number (BUF_MODIFF (buf));
1443 }
1444
1445 DEFUN ("buffer-chars-modified-tick", Fbuffer_chars_modified_tick,
1446 Sbuffer_chars_modified_tick, 0, 1, 0,
1447 doc: /* Return BUFFER's character-change tick counter.
1448 Each buffer has a character-change tick counter, which is set to the
1449 value of the buffer's tick counter \(see `buffer-modified-tick'), each
1450 time text in that buffer is inserted or deleted. By comparing the
1451 values returned by two individual calls of `buffer-chars-modified-tick',
1452 you can tell whether a character change occurred in that buffer in
1453 between these calls. No argument or nil as argument means use current
1454 buffer as BUFFER. */)
1455 (register Lisp_Object buffer)
1456 {
1457 register struct buffer *buf;
1458 if (NILP (buffer))
1459 buf = current_buffer;
1460 else
1461 {
1462 CHECK_BUFFER (buffer);
1463 buf = XBUFFER (buffer);
1464 }
1465
1466 return make_number (BUF_CHARS_MODIFF (buf));
1467 }
1468 \f
1469 DEFUN ("rename-buffer", Frename_buffer, Srename_buffer, 1, 2,
1470 "(list (read-string \"Rename buffer (to new name): \" \
1471 nil 'buffer-name-history (buffer-name (current-buffer))) \
1472 current-prefix-arg)",
1473 doc: /* Change current buffer's name to NEWNAME (a string).
1474 If second arg UNIQUE is nil or omitted, it is an error if a
1475 buffer named NEWNAME already exists.
1476 If UNIQUE is non-nil, come up with a new name using
1477 `generate-new-buffer-name'.
1478 Interactively, you can set UNIQUE with a prefix argument.
1479 We return the name we actually gave the buffer.
1480 This does not change the name of the visited file (if any). */)
1481 (register Lisp_Object newname, Lisp_Object unique)
1482 {
1483 register Lisp_Object tem, buf;
1484
1485 CHECK_STRING (newname);
1486
1487 if (SCHARS (newname) == 0)
1488 error ("Empty string is invalid as a buffer name");
1489
1490 tem = Fget_buffer (newname);
1491 if (!NILP (tem))
1492 {
1493 /* Don't short-circuit if UNIQUE is t. That is a useful way to
1494 rename the buffer automatically so you can create another
1495 with the original name. It makes UNIQUE equivalent to
1496 (rename-buffer (generate-new-buffer-name NEWNAME)). */
1497 if (NILP (unique) && XBUFFER (tem) == current_buffer)
1498 return BVAR (current_buffer, name);
1499 if (!NILP (unique))
1500 newname = Fgenerate_new_buffer_name (newname, BVAR (current_buffer, name));
1501 else
1502 error ("Buffer name `%s' is in use", SDATA (newname));
1503 }
1504
1505 bset_name (current_buffer, newname);
1506
1507 /* Catch redisplay's attention. Unless we do this, the mode lines for
1508 any windows displaying current_buffer will stay unchanged. */
1509 update_mode_lines = 11;
1510
1511 XSETBUFFER (buf, current_buffer);
1512 Fsetcar (Frassq (buf, Vbuffer_alist), newname);
1513 if (NILP (BVAR (current_buffer, filename))
1514 && !NILP (BVAR (current_buffer, auto_save_file_name)))
1515 call0 (intern ("rename-auto-save-file"));
1516
1517 /* Run buffer-list-update-hook. */
1518 if (!NILP (Vrun_hooks))
1519 call1 (Vrun_hooks, Qbuffer_list_update_hook);
1520
1521 /* Refetch since that last call may have done GC. */
1522 return BVAR (current_buffer, name);
1523 }
1524
1525 /* True if B can be used as 'other-than-BUFFER' buffer. */
1526
1527 static bool
1528 candidate_buffer (Lisp_Object b, Lisp_Object buffer)
1529 {
1530 return (BUFFERP (b) && !EQ (b, buffer)
1531 && BUFFER_LIVE_P (XBUFFER (b))
1532 && !BUFFER_HIDDEN_P (XBUFFER (b)));
1533 }
1534
1535 DEFUN ("other-buffer", Fother_buffer, Sother_buffer, 0, 3, 0,
1536 doc: /* Return most recently selected buffer other than BUFFER.
1537 Buffers not visible in windows are preferred to visible buffers, unless
1538 optional second argument VISIBLE-OK is non-nil. Ignore the argument
1539 BUFFER unless it denotes a live buffer. If the optional third argument
1540 FRAME is non-nil, use that frame's buffer list instead of the selected
1541 frame's buffer list.
1542
1543 The buffer is found by scanning the selected or specified frame's buffer
1544 list first, followed by the list of all buffers. If no other buffer
1545 exists, return the buffer `*scratch*' (creating it if necessary). */)
1546 (register Lisp_Object buffer, Lisp_Object visible_ok, Lisp_Object frame)
1547 {
1548 struct frame *f = decode_any_frame (frame);
1549 Lisp_Object tail = f->buffer_list, pred = f->buffer_predicate;
1550 Lisp_Object buf, notsogood = Qnil;
1551
1552 /* Consider buffers that have been seen in the frame first. */
1553 for (; CONSP (tail); tail = XCDR (tail))
1554 {
1555 buf = XCAR (tail);
1556 if (candidate_buffer (buf, buffer)
1557 /* If the frame has a buffer_predicate, disregard buffers that
1558 don't fit the predicate. */
1559 && (NILP (pred) || !NILP (call1 (pred, buf))))
1560 {
1561 if (!NILP (visible_ok)
1562 || NILP (Fget_buffer_window (buf, Qvisible)))
1563 return buf;
1564 else if (NILP (notsogood))
1565 notsogood = buf;
1566 }
1567 }
1568
1569 /* Consider alist of all buffers next. */
1570 FOR_EACH_LIVE_BUFFER (tail, buf)
1571 {
1572 if (candidate_buffer (buf, buffer)
1573 /* If the frame has a buffer_predicate, disregard buffers that
1574 don't fit the predicate. */
1575 && (NILP (pred) || !NILP (call1 (pred, buf))))
1576 {
1577 if (!NILP (visible_ok)
1578 || NILP (Fget_buffer_window (buf, Qvisible)))
1579 return buf;
1580 else if (NILP (notsogood))
1581 notsogood = buf;
1582 }
1583 }
1584
1585 if (!NILP (notsogood))
1586 return notsogood;
1587 else
1588 {
1589 buf = Fget_buffer (build_string ("*scratch*"));
1590 if (NILP (buf))
1591 {
1592 buf = Fget_buffer_create (build_string ("*scratch*"));
1593 Fset_buffer_major_mode (buf);
1594 }
1595 return buf;
1596 }
1597 }
1598
1599 /* The following function is a safe variant of Fother_buffer: It doesn't
1600 pay attention to any frame-local buffer lists, doesn't care about
1601 visibility of buffers, and doesn't evaluate any frame predicates. */
1602
1603 Lisp_Object
1604 other_buffer_safely (Lisp_Object buffer)
1605 {
1606 Lisp_Object tail, buf;
1607
1608 FOR_EACH_LIVE_BUFFER (tail, buf)
1609 if (candidate_buffer (buf, buffer))
1610 return buf;
1611
1612 buf = Fget_buffer (build_string ("*scratch*"));
1613 if (NILP (buf))
1614 {
1615 buf = Fget_buffer_create (build_string ("*scratch*"));
1616 Fset_buffer_major_mode (buf);
1617 }
1618
1619 return buf;
1620 }
1621 \f
1622 DEFUN ("buffer-enable-undo", Fbuffer_enable_undo, Sbuffer_enable_undo,
1623 0, 1, "",
1624 doc: /* Start keeping undo information for buffer BUFFER.
1625 No argument or nil as argument means do this for the current buffer. */)
1626 (register Lisp_Object buffer)
1627 {
1628 Lisp_Object real_buffer;
1629
1630 if (NILP (buffer))
1631 XSETBUFFER (real_buffer, current_buffer);
1632 else
1633 {
1634 real_buffer = Fget_buffer (buffer);
1635 if (NILP (real_buffer))
1636 nsberror (buffer);
1637 }
1638
1639 if (EQ (BVAR (XBUFFER (real_buffer), undo_list), Qt))
1640 bset_undo_list (XBUFFER (real_buffer), Qnil);
1641
1642 return Qnil;
1643 }
1644
1645 /* Truncate undo list and shrink the gap of BUFFER. */
1646
1647 void
1648 compact_buffer (struct buffer *buffer)
1649 {
1650 BUFFER_CHECK_INDIRECTION (buffer);
1651
1652 /* Skip dead buffers, indirect buffers and buffers
1653 which aren't changed since last compaction. */
1654 if (BUFFER_LIVE_P (buffer)
1655 && (buffer->base_buffer == NULL)
1656 && (BUF_COMPACT (buffer) != BUF_MODIFF (buffer)))
1657 {
1658 /* If a buffer's undo list is Qt, that means that undo is
1659 turned off in that buffer. Calling truncate_undo_list on
1660 Qt tends to return NULL, which effectively turns undo back on.
1661 So don't call truncate_undo_list if undo_list is Qt. */
1662 if (!EQ (buffer->INTERNAL_FIELD (undo_list), Qt))
1663 truncate_undo_list (buffer);
1664
1665 /* Shrink buffer gaps. */
1666 if (!buffer->text->inhibit_shrinking)
1667 {
1668 /* If a buffer's gap size is more than 10% of the buffer
1669 size, or larger than GAP_BYTES_DFL bytes, then shrink it
1670 accordingly. Keep a minimum size of GAP_BYTES_MIN bytes. */
1671 ptrdiff_t size = clip_to_bounds (GAP_BYTES_MIN,
1672 BUF_Z_BYTE (buffer) / 10,
1673 GAP_BYTES_DFL);
1674 if (BUF_GAP_SIZE (buffer) > size)
1675 make_gap_1 (buffer, -(BUF_GAP_SIZE (buffer) - size));
1676 }
1677 BUF_COMPACT (buffer) = BUF_MODIFF (buffer);
1678 }
1679 }
1680
1681 DEFUN ("kill-buffer", Fkill_buffer, Skill_buffer, 0, 1, "bKill buffer: ",
1682 doc: /* Kill the buffer specified by BUFFER-OR-NAME.
1683 The argument may be a buffer or the name of an existing buffer.
1684 Argument nil or omitted means kill the current buffer. Return t if the
1685 buffer is actually killed, nil otherwise.
1686
1687 The functions in `kill-buffer-query-functions' are called with the
1688 buffer to be killed as the current buffer. If any of them returns nil,
1689 the buffer is not killed. The hook `kill-buffer-hook' is run before the
1690 buffer is actually killed. The buffer being killed will be current
1691 while the hook is running. Functions called by any of these hooks are
1692 supposed to not change the current buffer.
1693
1694 Any processes that have this buffer as the `process-buffer' are killed
1695 with SIGHUP. This function calls `replace-buffer-in-windows' for
1696 cleaning up all windows currently displaying the buffer to be killed. */)
1697 (Lisp_Object buffer_or_name)
1698 {
1699 Lisp_Object buffer;
1700 register struct buffer *b;
1701 register Lisp_Object tem;
1702 register struct Lisp_Marker *m;
1703 struct gcpro gcpro1;
1704
1705 if (NILP (buffer_or_name))
1706 buffer = Fcurrent_buffer ();
1707 else
1708 buffer = Fget_buffer (buffer_or_name);
1709 if (NILP (buffer))
1710 nsberror (buffer_or_name);
1711
1712 b = XBUFFER (buffer);
1713
1714 /* Avoid trouble for buffer already dead. */
1715 if (!BUFFER_LIVE_P (b))
1716 return Qnil;
1717
1718 /* Run hooks with the buffer to be killed the current buffer. */
1719 {
1720 ptrdiff_t count = SPECPDL_INDEX ();
1721 Lisp_Object arglist[1];
1722
1723 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1724 set_buffer_internal (b);
1725
1726 /* First run the query functions; if any query is answered no,
1727 don't kill the buffer. */
1728 arglist[0] = Qkill_buffer_query_functions;
1729 tem = Frun_hook_with_args_until_failure (1, arglist);
1730 if (NILP (tem))
1731 return unbind_to (count, Qnil);
1732
1733 /* Query if the buffer is still modified. */
1734 if (INTERACTIVE && !NILP (BVAR (b, filename))
1735 && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
1736 {
1737 GCPRO1 (buffer);
1738 tem = do_yes_or_no_p (format2 ("Buffer %s modified; kill anyway? ",
1739 BVAR (b, name), make_number (0)));
1740 UNGCPRO;
1741 if (NILP (tem))
1742 return unbind_to (count, Qnil);
1743 }
1744
1745 /* If the hooks have killed the buffer, exit now. */
1746 if (!BUFFER_LIVE_P (b))
1747 return unbind_to (count, Qt);
1748
1749 /* Then run the hooks. */
1750 Frun_hooks (1, &Qkill_buffer_hook);
1751 unbind_to (count, Qnil);
1752 }
1753
1754 /* If the hooks have killed the buffer, exit now. */
1755 if (!BUFFER_LIVE_P (b))
1756 return Qt;
1757
1758 /* We have no more questions to ask. Verify that it is valid
1759 to kill the buffer. This must be done after the questions
1760 since anything can happen within do_yes_or_no_p. */
1761
1762 /* Don't kill the minibuffer now current. */
1763 if (EQ (buffer, XWINDOW (minibuf_window)->contents))
1764 return Qnil;
1765
1766 /* When we kill an ordinary buffer which shares it's buffer text
1767 with indirect buffer(s), we must kill indirect buffer(s) too.
1768 We do it at this stage so nothing terrible happens if they
1769 ask questions or their hooks get errors. */
1770 if (!b->base_buffer && b->indirections > 0)
1771 {
1772 struct buffer *other;
1773
1774 GCPRO1 (buffer);
1775
1776 FOR_EACH_BUFFER (other)
1777 if (other->base_buffer == b)
1778 {
1779 Lisp_Object buf;
1780 XSETBUFFER (buf, other);
1781 Fkill_buffer (buf);
1782 }
1783
1784 UNGCPRO;
1785
1786 /* Exit if we now have killed the base buffer (Bug#11665). */
1787 if (!BUFFER_LIVE_P (b))
1788 return Qt;
1789 }
1790
1791 /* Run replace_buffer_in_windows before making another buffer current
1792 since set-window-buffer-start-and-point will refuse to make another
1793 buffer current if the selected window does not show the current
1794 buffer (bug#10114). */
1795 replace_buffer_in_windows (buffer);
1796
1797 /* Exit if replacing the buffer in windows has killed our buffer. */
1798 if (!BUFFER_LIVE_P (b))
1799 return Qt;
1800
1801 /* Make this buffer not be current. Exit if it is the sole visible
1802 buffer. */
1803 if (b == current_buffer)
1804 {
1805 tem = Fother_buffer (buffer, Qnil, Qnil);
1806 Fset_buffer (tem);
1807 if (b == current_buffer)
1808 return Qnil;
1809 }
1810
1811 /* If the buffer now current is shown in the minibuffer and our buffer
1812 is the sole other buffer give up. */
1813 XSETBUFFER (tem, current_buffer);
1814 if (EQ (tem, XWINDOW (minibuf_window)->contents)
1815 && EQ (buffer, Fother_buffer (buffer, Qnil, Qnil)))
1816 return Qnil;
1817
1818 /* Now there is no question: we can kill the buffer. */
1819
1820 /* Unlock this buffer's file, if it is locked. */
1821 unlock_buffer (b);
1822
1823 GCPRO1 (buffer);
1824 kill_buffer_processes (buffer);
1825 UNGCPRO;
1826
1827 /* Killing buffer processes may run sentinels which may have killed
1828 our buffer. */
1829 if (!BUFFER_LIVE_P (b))
1830 return Qt;
1831
1832 /* These may run Lisp code and into infinite loops (if someone
1833 insisted on circular lists) so allow quitting here. */
1834 frames_discard_buffer (buffer);
1835
1836 clear_charpos_cache (b);
1837
1838 tem = Vinhibit_quit;
1839 Vinhibit_quit = Qt;
1840 /* Remove the buffer from the list of all buffers. */
1841 Vbuffer_alist = Fdelq (Frassq (buffer, Vbuffer_alist), Vbuffer_alist);
1842 /* If replace_buffer_in_windows didn't do its job fix that now. */
1843 replace_buffer_in_windows_safely (buffer);
1844 Vinhibit_quit = tem;
1845
1846 /* Delete any auto-save file, if we saved it in this session.
1847 But not if the buffer is modified. */
1848 if (STRINGP (BVAR (b, auto_save_file_name))
1849 && BUF_AUTOSAVE_MODIFF (b) != 0
1850 && BUF_SAVE_MODIFF (b) < BUF_AUTOSAVE_MODIFF (b)
1851 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
1852 && NILP (Fsymbol_value (intern ("auto-save-visited-file-name"))))
1853 {
1854 Lisp_Object delete;
1855 delete = Fsymbol_value (intern ("delete-auto-save-files"));
1856 if (! NILP (delete))
1857 internal_delete_file (BVAR (b, auto_save_file_name));
1858 }
1859
1860 /* Deleting an auto-save file could have killed our buffer. */
1861 if (!BUFFER_LIVE_P (b))
1862 return Qt;
1863
1864 if (b->base_buffer)
1865 {
1866 INTERVAL i;
1867 /* Unchain all markers that belong to this indirect buffer.
1868 Don't unchain the markers that belong to the base buffer
1869 or its other indirect buffers. */
1870 struct Lisp_Marker **mp = &BUF_MARKERS (b);
1871 while ((m = *mp))
1872 {
1873 if (m->buffer == b)
1874 {
1875 m->buffer = NULL;
1876 *mp = m->next;
1877 }
1878 else
1879 mp = &m->next;
1880 }
1881 /* Intervals should be owned by the base buffer (Bug#16502). */
1882 i = buffer_intervals (b);
1883 if (i)
1884 {
1885 Lisp_Object owner;
1886 XSETBUFFER (owner, b->base_buffer);
1887 set_interval_object (i, owner);
1888 }
1889 }
1890 else
1891 {
1892 /* Unchain all markers of this buffer and its indirect buffers.
1893 and leave them pointing nowhere. */
1894 for (m = BUF_MARKERS (b); m; )
1895 {
1896 struct Lisp_Marker *next = m->next;
1897 m->buffer = 0;
1898 m->next = NULL;
1899 m = next;
1900 }
1901 BUF_MARKERS (b) = NULL;
1902 set_buffer_intervals (b, NULL);
1903
1904 /* Perhaps we should explicitly free the interval tree here... */
1905 }
1906 /* Since we've unlinked the markers, the overlays can't be here any more
1907 either. */
1908 b->overlays_before = NULL;
1909 b->overlays_after = NULL;
1910
1911 /* Reset the local variables, so that this buffer's local values
1912 won't be protected from GC. They would be protected
1913 if they happened to remain cached in their symbols.
1914 This gets rid of them for certain. */
1915 swap_out_buffer_local_variables (b);
1916 reset_buffer_local_variables (b, 1);
1917
1918 bset_name (b, Qnil);
1919
1920 block_input ();
1921 if (b->base_buffer)
1922 {
1923 /* Notify our base buffer that we don't share the text anymore. */
1924 eassert (b->indirections == -1);
1925 b->base_buffer->indirections--;
1926 eassert (b->base_buffer->indirections >= 0);
1927 /* Make sure that we wasn't confused. */
1928 eassert (b->window_count == -1);
1929 }
1930 else
1931 {
1932 /* Make sure that no one shows us. */
1933 eassert (b->window_count == 0);
1934 /* No one shares our buffer text, can free it. */
1935 free_buffer_text (b);
1936 }
1937
1938 if (b->newline_cache)
1939 {
1940 free_region_cache (b->newline_cache);
1941 b->newline_cache = 0;
1942 }
1943 if (b->width_run_cache)
1944 {
1945 free_region_cache (b->width_run_cache);
1946 b->width_run_cache = 0;
1947 }
1948 if (b->bidi_paragraph_cache)
1949 {
1950 free_region_cache (b->bidi_paragraph_cache);
1951 b->bidi_paragraph_cache = 0;
1952 }
1953 bset_width_table (b, Qnil);
1954 unblock_input ();
1955 bset_undo_list (b, Qnil);
1956
1957 /* Run buffer-list-update-hook. */
1958 if (!NILP (Vrun_hooks))
1959 call1 (Vrun_hooks, Qbuffer_list_update_hook);
1960
1961 return Qt;
1962 }
1963 \f
1964 /* Move association for BUFFER to the front of buffer (a)lists. Since
1965 we do this each time BUFFER is selected visibly, the more recently
1966 selected buffers are always closer to the front of those lists. This
1967 means that other_buffer is more likely to choose a relevant buffer.
1968
1969 Note that this moves BUFFER to the front of the buffer lists of the
1970 selected frame even if BUFFER is not shown there. If BUFFER is not
1971 shown in the selected frame, consider the present behavior a feature.
1972 `select-window' gets this right since it shows BUFFER in the selected
1973 window when calling us. */
1974
1975 void
1976 record_buffer (Lisp_Object buffer)
1977 {
1978 Lisp_Object aelt, aelt_cons, tem;
1979 register struct frame *f = XFRAME (selected_frame);
1980
1981 CHECK_BUFFER (buffer);
1982
1983 /* Update Vbuffer_alist (we know that it has an entry for BUFFER).
1984 Don't allow quitting since this might leave the buffer list in an
1985 inconsistent state. */
1986 tem = Vinhibit_quit;
1987 Vinhibit_quit = Qt;
1988 aelt = Frassq (buffer, Vbuffer_alist);
1989 aelt_cons = Fmemq (aelt, Vbuffer_alist);
1990 Vbuffer_alist = Fdelq (aelt, Vbuffer_alist);
1991 XSETCDR (aelt_cons, Vbuffer_alist);
1992 Vbuffer_alist = aelt_cons;
1993 Vinhibit_quit = tem;
1994
1995 /* Update buffer list of selected frame. */
1996 fset_buffer_list (f, Fcons (buffer, Fdelq (buffer, f->buffer_list)));
1997 fset_buried_buffer_list (f, Fdelq (buffer, f->buried_buffer_list));
1998
1999 /* Run buffer-list-update-hook. */
2000 if (!NILP (Vrun_hooks))
2001 call1 (Vrun_hooks, Qbuffer_list_update_hook);
2002 }
2003
2004
2005 /* Move BUFFER to the end of the buffer (a)lists. Do nothing if the
2006 buffer is killed. For the selected frame's buffer list this moves
2007 BUFFER to its end even if it was never shown in that frame. If
2008 this happens we have a feature, hence `bury-buffer-internal' should be
2009 called only when BUFFER was shown in the selected frame. */
2010
2011 DEFUN ("bury-buffer-internal", Fbury_buffer_internal, Sbury_buffer_internal,
2012 1, 1, 0,
2013 doc: /* Move BUFFER to the end of the buffer list. */)
2014 (Lisp_Object buffer)
2015 {
2016 Lisp_Object aelt, aelt_cons, tem;
2017 register struct frame *f = XFRAME (selected_frame);
2018
2019 CHECK_BUFFER (buffer);
2020
2021 /* Update Vbuffer_alist (we know that it has an entry for BUFFER).
2022 Don't allow quitting since this might leave the buffer list in an
2023 inconsistent state. */
2024 tem = Vinhibit_quit;
2025 Vinhibit_quit = Qt;
2026 aelt = Frassq (buffer, Vbuffer_alist);
2027 aelt_cons = Fmemq (aelt, Vbuffer_alist);
2028 Vbuffer_alist = Fdelq (aelt, Vbuffer_alist);
2029 XSETCDR (aelt_cons, Qnil);
2030 Vbuffer_alist = nconc2 (Vbuffer_alist, aelt_cons);
2031 Vinhibit_quit = tem;
2032
2033 /* Update buffer lists of selected frame. */
2034 fset_buffer_list (f, Fdelq (buffer, f->buffer_list));
2035 fset_buried_buffer_list
2036 (f, Fcons (buffer, Fdelq (buffer, f->buried_buffer_list)));
2037
2038 /* Run buffer-list-update-hook. */
2039 if (!NILP (Vrun_hooks))
2040 call1 (Vrun_hooks, Qbuffer_list_update_hook);
2041
2042 return Qnil;
2043 }
2044
2045 DEFUN ("set-buffer-major-mode", Fset_buffer_major_mode, Sset_buffer_major_mode, 1, 1, 0,
2046 doc: /* Set an appropriate major mode for BUFFER.
2047 For the *scratch* buffer, use `initial-major-mode', otherwise choose a mode
2048 according to the default value of `major-mode'.
2049 Use this function before selecting the buffer, since it may need to inspect
2050 the current buffer's major mode. */)
2051 (Lisp_Object buffer)
2052 {
2053 ptrdiff_t count;
2054 Lisp_Object function;
2055
2056 CHECK_BUFFER (buffer);
2057
2058 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
2059 error ("Attempt to set major mode for a dead buffer");
2060
2061 if (strcmp (SSDATA (BVAR (XBUFFER (buffer), name)), "*scratch*") == 0)
2062 function = find_symbol_value (intern ("initial-major-mode"));
2063 else
2064 {
2065 function = BVAR (&buffer_defaults, major_mode);
2066 if (NILP (function)
2067 && NILP (Fget (BVAR (current_buffer, major_mode), Qmode_class)))
2068 function = BVAR (current_buffer, major_mode);
2069 }
2070
2071 if (NILP (function) || EQ (function, Qfundamental_mode))
2072 return Qnil;
2073
2074 count = SPECPDL_INDEX ();
2075
2076 /* To select a nonfundamental mode,
2077 select the buffer temporarily and then call the mode function. */
2078
2079 record_unwind_protect (save_excursion_restore, save_excursion_save ());
2080
2081 Fset_buffer (buffer);
2082 call0 (function);
2083
2084 return unbind_to (count, Qnil);
2085 }
2086
2087 DEFUN ("current-buffer", Fcurrent_buffer, Scurrent_buffer, 0, 0, 0,
2088 doc: /* Return the current buffer as a Lisp object. */)
2089 (void)
2090 {
2091 register Lisp_Object buf;
2092 XSETBUFFER (buf, current_buffer);
2093 return buf;
2094 }
2095
2096 /* Set the current buffer to B, and do not set windows_or_buffers_changed.
2097 This is used by redisplay. */
2098
2099 void
2100 set_buffer_internal_1 (register struct buffer *b)
2101 {
2102 register struct buffer *old_buf;
2103 register Lisp_Object tail;
2104
2105 #ifdef USE_MMAP_FOR_BUFFERS
2106 if (b->text->beg == NULL)
2107 enlarge_buffer_text (b, 0);
2108 #endif /* USE_MMAP_FOR_BUFFERS */
2109
2110 if (current_buffer == b)
2111 return;
2112
2113 BUFFER_CHECK_INDIRECTION (b);
2114
2115 old_buf = current_buffer;
2116 current_buffer = b;
2117 last_known_column_point = -1; /* Invalidate indentation cache. */
2118
2119 if (old_buf)
2120 {
2121 /* Put the undo list back in the base buffer, so that it appears
2122 that an indirect buffer shares the undo list of its base. */
2123 if (old_buf->base_buffer)
2124 bset_undo_list (old_buf->base_buffer, BVAR (old_buf, undo_list));
2125
2126 /* If the old current buffer has markers to record PT, BEGV and ZV
2127 when it is not current, update them now. */
2128 record_buffer_markers (old_buf);
2129 }
2130
2131 /* Get the undo list from the base buffer, so that it appears
2132 that an indirect buffer shares the undo list of its base. */
2133 if (b->base_buffer)
2134 bset_undo_list (b, BVAR (b->base_buffer, undo_list));
2135
2136 /* If the new current buffer has markers to record PT, BEGV and ZV
2137 when it is not current, fetch them now. */
2138 fetch_buffer_markers (b);
2139
2140 /* Look down buffer's list of local Lisp variables
2141 to find and update any that forward into C variables. */
2142
2143 do
2144 {
2145 for (tail = BVAR (b, local_var_alist); CONSP (tail); tail = XCDR (tail))
2146 {
2147 Lisp_Object var = XCAR (XCAR (tail));
2148 struct Lisp_Symbol *sym = XSYMBOL (var);
2149 if (sym->redirect == SYMBOL_LOCALIZED /* Just to be sure. */
2150 && SYMBOL_BLV (sym)->fwd)
2151 /* Just reference the variable
2152 to cause it to become set for this buffer. */
2153 Fsymbol_value (var);
2154 }
2155 }
2156 /* Do the same with any others that were local to the previous buffer */
2157 while (b != old_buf && (b = old_buf, b));
2158 }
2159
2160 /* Switch to buffer B temporarily for redisplay purposes.
2161 This avoids certain things that don't need to be done within redisplay. */
2162
2163 void
2164 set_buffer_temp (struct buffer *b)
2165 {
2166 register struct buffer *old_buf;
2167
2168 if (current_buffer == b)
2169 return;
2170
2171 old_buf = current_buffer;
2172 current_buffer = b;
2173
2174 /* If the old current buffer has markers to record PT, BEGV and ZV
2175 when it is not current, update them now. */
2176 record_buffer_markers (old_buf);
2177
2178 /* If the new current buffer has markers to record PT, BEGV and ZV
2179 when it is not current, fetch them now. */
2180 fetch_buffer_markers (b);
2181 }
2182
2183 DEFUN ("set-buffer", Fset_buffer, Sset_buffer, 1, 1, 0,
2184 doc: /* Make buffer BUFFER-OR-NAME current for editing operations.
2185 BUFFER-OR-NAME may be a buffer or the name of an existing buffer.
2186 See also `with-current-buffer' when you want to make a buffer current
2187 temporarily. This function does not display the buffer, so its effect
2188 ends when the current command terminates. Use `switch-to-buffer' or
2189 `pop-to-buffer' to switch buffers permanently.
2190 The return value is the buffer made current. */)
2191 (register Lisp_Object buffer_or_name)
2192 {
2193 register Lisp_Object buffer;
2194 buffer = Fget_buffer (buffer_or_name);
2195 if (NILP (buffer))
2196 nsberror (buffer_or_name);
2197 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
2198 error ("Selecting deleted buffer");
2199 set_buffer_internal (XBUFFER (buffer));
2200 return buffer;
2201 }
2202
2203 void
2204 restore_buffer (Lisp_Object buffer_or_name)
2205 {
2206 Fset_buffer (buffer_or_name);
2207 }
2208
2209 /* Set the current buffer to BUFFER provided if it is alive. */
2210
2211 void
2212 set_buffer_if_live (Lisp_Object buffer)
2213 {
2214 if (BUFFER_LIVE_P (XBUFFER (buffer)))
2215 set_buffer_internal (XBUFFER (buffer));
2216 }
2217 \f
2218 DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only,
2219 Sbarf_if_buffer_read_only, 0, 0, 0,
2220 doc: /* Signal a `buffer-read-only' error if the current buffer is read-only. */)
2221 (void)
2222 {
2223 if (!NILP (BVAR (current_buffer, read_only))
2224 && NILP (Vinhibit_read_only))
2225 xsignal1 (Qbuffer_read_only, Fcurrent_buffer ());
2226 return Qnil;
2227 }
2228 \f
2229 DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*",
2230 doc: /* Delete the entire contents of the current buffer.
2231 Any narrowing restriction in effect (see `narrow-to-region') is removed,
2232 so the buffer is truly empty after this. */)
2233 (void)
2234 {
2235 Fwiden ();
2236
2237 del_range (BEG, Z);
2238
2239 current_buffer->last_window_start = 1;
2240 /* Prevent warnings, or suspension of auto saving, that would happen
2241 if future size is less than past size. Use of erase-buffer
2242 implies that the future text is not really related to the past text. */
2243 XSETFASTINT (BVAR (current_buffer, save_length), 0);
2244 return Qnil;
2245 }
2246
2247 void
2248 validate_region (register Lisp_Object *b, register Lisp_Object *e)
2249 {
2250 CHECK_NUMBER_COERCE_MARKER (*b);
2251 CHECK_NUMBER_COERCE_MARKER (*e);
2252
2253 if (XINT (*b) > XINT (*e))
2254 {
2255 Lisp_Object tem;
2256 tem = *b; *b = *e; *e = tem;
2257 }
2258
2259 if (! (BEGV <= XINT (*b) && XINT (*e) <= ZV))
2260 args_out_of_range_3 (Fcurrent_buffer (), *b, *e);
2261 }
2262 \f
2263 /* Advance BYTE_POS up to a character boundary
2264 and return the adjusted position. */
2265
2266 static ptrdiff_t
2267 advance_to_char_boundary (ptrdiff_t byte_pos)
2268 {
2269 int c;
2270
2271 if (byte_pos == BEG)
2272 /* Beginning of buffer is always a character boundary. */
2273 return BEG;
2274
2275 c = FETCH_BYTE (byte_pos);
2276 if (! CHAR_HEAD_P (c))
2277 {
2278 /* We should advance BYTE_POS only when C is a constituent of a
2279 multibyte sequence. */
2280 ptrdiff_t orig_byte_pos = byte_pos;
2281
2282 do
2283 {
2284 byte_pos--;
2285 c = FETCH_BYTE (byte_pos);
2286 }
2287 while (! CHAR_HEAD_P (c) && byte_pos > BEG);
2288 INC_POS (byte_pos);
2289 if (byte_pos < orig_byte_pos)
2290 byte_pos = orig_byte_pos;
2291 /* If C is a constituent of a multibyte sequence, BYTE_POS was
2292 surely advance to the correct character boundary. If C is
2293 not, BYTE_POS was unchanged. */
2294 }
2295
2296 return byte_pos;
2297 }
2298
2299 DEFUN ("buffer-swap-text", Fbuffer_swap_text, Sbuffer_swap_text,
2300 1, 1, 0,
2301 doc: /* Swap the text between current buffer and BUFFER. */)
2302 (Lisp_Object buffer)
2303 {
2304 struct buffer *other_buffer;
2305 CHECK_BUFFER (buffer);
2306 other_buffer = XBUFFER (buffer);
2307
2308 if (!BUFFER_LIVE_P (other_buffer))
2309 error ("Cannot swap a dead buffer's text");
2310
2311 /* Actually, it probably works just fine.
2312 * if (other_buffer == current_buffer)
2313 * error ("Cannot swap a buffer's text with itself"); */
2314
2315 /* Actually, this may be workable as well, tho probably only if they're
2316 *both* indirect. */
2317 if (other_buffer->base_buffer
2318 || current_buffer->base_buffer)
2319 error ("Cannot swap indirect buffers's text");
2320
2321 { /* This is probably harder to make work. */
2322 struct buffer *other;
2323 FOR_EACH_BUFFER (other)
2324 if (other->base_buffer == other_buffer
2325 || other->base_buffer == current_buffer)
2326 error ("One of the buffers to swap has indirect buffers");
2327 }
2328
2329 #define swapfield(field, type) \
2330 do { \
2331 type tmp##field = other_buffer->field; \
2332 other_buffer->field = current_buffer->field; \
2333 current_buffer->field = tmp##field; \
2334 } while (0)
2335 #define swapfield_(field, type) \
2336 do { \
2337 type tmp##field = BVAR (other_buffer, field); \
2338 bset_##field (other_buffer, BVAR (current_buffer, field)); \
2339 bset_##field (current_buffer, tmp##field); \
2340 } while (0)
2341
2342 swapfield (own_text, struct buffer_text);
2343 eassert (current_buffer->text == &current_buffer->own_text);
2344 eassert (other_buffer->text == &other_buffer->own_text);
2345 #ifdef REL_ALLOC
2346 r_alloc_reset_variable ((void **) &current_buffer->own_text.beg,
2347 (void **) &other_buffer->own_text.beg);
2348 r_alloc_reset_variable ((void **) &other_buffer->own_text.beg,
2349 (void **) &current_buffer->own_text.beg);
2350 #endif /* REL_ALLOC */
2351
2352 swapfield (pt, ptrdiff_t);
2353 swapfield (pt_byte, ptrdiff_t);
2354 swapfield (begv, ptrdiff_t);
2355 swapfield (begv_byte, ptrdiff_t);
2356 swapfield (zv, ptrdiff_t);
2357 swapfield (zv_byte, ptrdiff_t);
2358 eassert (!current_buffer->base_buffer);
2359 eassert (!other_buffer->base_buffer);
2360 swapfield (indirections, ptrdiff_t);
2361 current_buffer->clip_changed = 1; other_buffer->clip_changed = 1;
2362 swapfield (newline_cache, struct region_cache *);
2363 swapfield (width_run_cache, struct region_cache *);
2364 swapfield (bidi_paragraph_cache, struct region_cache *);
2365 current_buffer->prevent_redisplay_optimizations_p = 1;
2366 other_buffer->prevent_redisplay_optimizations_p = 1;
2367 swapfield (overlays_before, struct Lisp_Overlay *);
2368 swapfield (overlays_after, struct Lisp_Overlay *);
2369 swapfield (overlay_center, ptrdiff_t);
2370 swapfield_ (undo_list, Lisp_Object);
2371 swapfield_ (mark, Lisp_Object);
2372 swapfield_ (enable_multibyte_characters, Lisp_Object);
2373 swapfield_ (bidi_display_reordering, Lisp_Object);
2374 swapfield_ (bidi_paragraph_direction, Lisp_Object);
2375 /* FIXME: Not sure what we should do with these *_marker fields.
2376 Hopefully they're just nil anyway. */
2377 swapfield_ (pt_marker, Lisp_Object);
2378 swapfield_ (begv_marker, Lisp_Object);
2379 swapfield_ (zv_marker, Lisp_Object);
2380 bset_point_before_scroll (current_buffer, Qnil);
2381 bset_point_before_scroll (other_buffer, Qnil);
2382
2383 current_buffer->text->modiff++; other_buffer->text->modiff++;
2384 current_buffer->text->chars_modiff++; other_buffer->text->chars_modiff++;
2385 current_buffer->text->overlay_modiff++; other_buffer->text->overlay_modiff++;
2386 current_buffer->text->beg_unchanged = current_buffer->text->gpt;
2387 current_buffer->text->end_unchanged = current_buffer->text->gpt;
2388 other_buffer->text->beg_unchanged = other_buffer->text->gpt;
2389 other_buffer->text->end_unchanged = other_buffer->text->gpt;
2390 {
2391 struct Lisp_Marker *m;
2392 for (m = BUF_MARKERS (current_buffer); m; m = m->next)
2393 if (m->buffer == other_buffer)
2394 m->buffer = current_buffer;
2395 else
2396 /* Since there's no indirect buffer in sight, markers on
2397 BUF_MARKERS(buf) should either be for `buf' or dead. */
2398 eassert (!m->buffer);
2399 for (m = BUF_MARKERS (other_buffer); m; m = m->next)
2400 if (m->buffer == current_buffer)
2401 m->buffer = other_buffer;
2402 else
2403 /* Since there's no indirect buffer in sight, markers on
2404 BUF_MARKERS(buf) should either be for `buf' or dead. */
2405 eassert (!m->buffer);
2406 }
2407 { /* Some of the C code expects that both window markers of a
2408 live window points to that window's buffer. So since we
2409 just swapped the markers between the two buffers, we need
2410 to undo the effect of this swap for window markers. */
2411 Lisp_Object w = selected_window, ws = Qnil;
2412 Lisp_Object buf1, buf2;
2413 XSETBUFFER (buf1, current_buffer); XSETBUFFER (buf2, other_buffer);
2414
2415 while (NILP (Fmemq (w, ws)))
2416 {
2417 ws = Fcons (w, ws);
2418 if (MARKERP (XWINDOW (w)->pointm)
2419 && (EQ (XWINDOW (w)->contents, buf1)
2420 || EQ (XWINDOW (w)->contents, buf2)))
2421 Fset_marker (XWINDOW (w)->pointm,
2422 make_number
2423 (BUF_BEGV (XBUFFER (XWINDOW (w)->contents))),
2424 XWINDOW (w)->contents);
2425 if (MARKERP (XWINDOW (w)->start)
2426 && (EQ (XWINDOW (w)->contents, buf1)
2427 || EQ (XWINDOW (w)->contents, buf2)))
2428 Fset_marker (XWINDOW (w)->start,
2429 make_number
2430 (XBUFFER (XWINDOW (w)->contents)->last_window_start),
2431 XWINDOW (w)->contents);
2432 w = Fnext_window (w, Qt, Qt);
2433 }
2434 }
2435
2436 if (current_buffer->text->intervals)
2437 (eassert (EQ (current_buffer->text->intervals->up.obj, buffer)),
2438 XSETBUFFER (current_buffer->text->intervals->up.obj, current_buffer));
2439 if (other_buffer->text->intervals)
2440 (eassert (EQ (other_buffer->text->intervals->up.obj, Fcurrent_buffer ())),
2441 XSETBUFFER (other_buffer->text->intervals->up.obj, other_buffer));
2442
2443 return Qnil;
2444 }
2445
2446 DEFUN ("set-buffer-multibyte", Fset_buffer_multibyte, Sset_buffer_multibyte,
2447 1, 1, 0,
2448 doc: /* Set the multibyte flag of the current buffer to FLAG.
2449 If FLAG is t, this makes the buffer a multibyte buffer.
2450 If FLAG is nil, this makes the buffer a single-byte buffer.
2451 In these cases, the buffer contents remain unchanged as a sequence of
2452 bytes but the contents viewed as characters do change.
2453 If FLAG is `to', this makes the buffer a multibyte buffer by changing
2454 all eight-bit bytes to eight-bit characters.
2455 If the multibyte flag was really changed, undo information of the
2456 current buffer is cleared. */)
2457 (Lisp_Object flag)
2458 {
2459 struct Lisp_Marker *tail, *markers;
2460 struct buffer *other;
2461 ptrdiff_t begv, zv;
2462 bool narrowed = (BEG != BEGV || Z != ZV);
2463 bool modified_p = !NILP (Fbuffer_modified_p (Qnil));
2464 Lisp_Object old_undo = BVAR (current_buffer, undo_list);
2465 struct gcpro gcpro1;
2466
2467 if (current_buffer->base_buffer)
2468 error ("Cannot do `set-buffer-multibyte' on an indirect buffer");
2469
2470 /* Do nothing if nothing actually changes. */
2471 if (NILP (flag) == NILP (BVAR (current_buffer, enable_multibyte_characters)))
2472 return flag;
2473
2474 GCPRO1 (old_undo);
2475
2476 /* Don't record these buffer changes. We will put a special undo entry
2477 instead. */
2478 bset_undo_list (current_buffer, Qt);
2479
2480 /* If the cached position is for this buffer, clear it out. */
2481 clear_charpos_cache (current_buffer);
2482
2483 if (NILP (flag))
2484 begv = BEGV_BYTE, zv = ZV_BYTE;
2485 else
2486 begv = BEGV, zv = ZV;
2487
2488 if (narrowed)
2489 error ("Changing multibyteness in a narrowed buffer");
2490
2491 invalidate_buffer_caches (current_buffer, BEGV, ZV);
2492
2493 if (NILP (flag))
2494 {
2495 ptrdiff_t pos, stop;
2496 unsigned char *p;
2497
2498 /* Do this first, so it can use CHAR_TO_BYTE
2499 to calculate the old correspondences. */
2500 set_intervals_multibyte (0);
2501
2502 bset_enable_multibyte_characters (current_buffer, Qnil);
2503
2504 Z = Z_BYTE;
2505 BEGV = BEGV_BYTE;
2506 ZV = ZV_BYTE;
2507 GPT = GPT_BYTE;
2508 TEMP_SET_PT_BOTH (PT_BYTE, PT_BYTE);
2509
2510
2511 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next)
2512 tail->charpos = tail->bytepos;
2513
2514 /* Convert multibyte form of 8-bit characters to unibyte. */
2515 pos = BEG;
2516 stop = GPT;
2517 p = BEG_ADDR;
2518 while (1)
2519 {
2520 int c, bytes;
2521
2522 if (pos == stop)
2523 {
2524 if (pos == Z)
2525 break;
2526 p = GAP_END_ADDR;
2527 stop = Z;
2528 }
2529 if (ASCII_BYTE_P (*p))
2530 p++, pos++;
2531 else if (CHAR_BYTE8_HEAD_P (*p))
2532 {
2533 c = STRING_CHAR_AND_LENGTH (p, bytes);
2534 /* Delete all bytes for this 8-bit character but the
2535 last one, and change the last one to the character
2536 code. */
2537 bytes--;
2538 del_range_2 (pos, pos, pos + bytes, pos + bytes, 0);
2539 p = GAP_END_ADDR;
2540 *p++ = c;
2541 pos++;
2542 if (begv > pos)
2543 begv -= bytes;
2544 if (zv > pos)
2545 zv -= bytes;
2546 stop = Z;
2547 }
2548 else
2549 {
2550 bytes = BYTES_BY_CHAR_HEAD (*p);
2551 p += bytes, pos += bytes;
2552 }
2553 }
2554 if (narrowed)
2555 Fnarrow_to_region (make_number (begv), make_number (zv));
2556 }
2557 else
2558 {
2559 ptrdiff_t pt = PT;
2560 ptrdiff_t pos, stop;
2561 unsigned char *p, *pend;
2562
2563 /* Be sure not to have a multibyte sequence striding over the GAP.
2564 Ex: We change this: "...abc\302 _GAP_ \241def..."
2565 to: "...abc _GAP_ \302\241def..." */
2566
2567 if (EQ (flag, Qt)
2568 && GPT_BYTE > 1 && GPT_BYTE < Z_BYTE
2569 && ! CHAR_HEAD_P (*(GAP_END_ADDR)))
2570 {
2571 unsigned char *q = GPT_ADDR - 1;
2572
2573 while (! CHAR_HEAD_P (*q) && q > BEG_ADDR) q--;
2574 if (LEADING_CODE_P (*q))
2575 {
2576 ptrdiff_t new_gpt = GPT_BYTE - (GPT_ADDR - q);
2577
2578 move_gap_both (new_gpt, new_gpt);
2579 }
2580 }
2581
2582 /* Make the buffer contents valid as multibyte by converting
2583 8-bit characters to multibyte form. */
2584 pos = BEG;
2585 stop = GPT;
2586 p = BEG_ADDR;
2587 pend = GPT_ADDR;
2588 while (1)
2589 {
2590 int bytes;
2591
2592 if (pos == stop)
2593 {
2594 if (pos == Z)
2595 break;
2596 p = GAP_END_ADDR;
2597 pend = Z_ADDR;
2598 stop = Z;
2599 }
2600
2601 if (ASCII_BYTE_P (*p))
2602 p++, pos++;
2603 else if (EQ (flag, Qt)
2604 && ! CHAR_BYTE8_HEAD_P (*p)
2605 && (bytes = MULTIBYTE_LENGTH (p, pend)) > 0)
2606 p += bytes, pos += bytes;
2607 else
2608 {
2609 unsigned char tmp[MAX_MULTIBYTE_LENGTH];
2610 int c;
2611
2612 c = BYTE8_TO_CHAR (*p);
2613 bytes = CHAR_STRING (c, tmp);
2614 *p = tmp[0];
2615 TEMP_SET_PT_BOTH (pos + 1, pos + 1);
2616 bytes--;
2617 insert_1_both ((char *) tmp + 1, bytes, bytes, 1, 0, 0);
2618 /* Now the gap is after the just inserted data. */
2619 pos = GPT;
2620 p = GAP_END_ADDR;
2621 if (pos <= begv)
2622 begv += bytes;
2623 if (pos <= zv)
2624 zv += bytes;
2625 if (pos <= pt)
2626 pt += bytes;
2627 pend = Z_ADDR;
2628 stop = Z;
2629 }
2630 }
2631
2632 if (pt != PT)
2633 TEMP_SET_PT (pt);
2634
2635 if (narrowed)
2636 Fnarrow_to_region (make_number (begv), make_number (zv));
2637
2638 /* Do this first, so that chars_in_text asks the right question.
2639 set_intervals_multibyte needs it too. */
2640 bset_enable_multibyte_characters (current_buffer, Qt);
2641
2642 GPT_BYTE = advance_to_char_boundary (GPT_BYTE);
2643 GPT = chars_in_text (BEG_ADDR, GPT_BYTE - BEG_BYTE) + BEG;
2644
2645 Z = chars_in_text (GAP_END_ADDR, Z_BYTE - GPT_BYTE) + GPT;
2646
2647 BEGV_BYTE = advance_to_char_boundary (BEGV_BYTE);
2648 if (BEGV_BYTE > GPT_BYTE)
2649 BEGV = chars_in_text (GAP_END_ADDR, BEGV_BYTE - GPT_BYTE) + GPT;
2650 else
2651 BEGV = chars_in_text (BEG_ADDR, BEGV_BYTE - BEG_BYTE) + BEG;
2652
2653 ZV_BYTE = advance_to_char_boundary (ZV_BYTE);
2654 if (ZV_BYTE > GPT_BYTE)
2655 ZV = chars_in_text (GAP_END_ADDR, ZV_BYTE - GPT_BYTE) + GPT;
2656 else
2657 ZV = chars_in_text (BEG_ADDR, ZV_BYTE - BEG_BYTE) + BEG;
2658
2659 {
2660 ptrdiff_t byte = advance_to_char_boundary (PT_BYTE);
2661 ptrdiff_t position;
2662
2663 if (byte > GPT_BYTE)
2664 position = chars_in_text (GAP_END_ADDR, byte - GPT_BYTE) + GPT;
2665 else
2666 position = chars_in_text (BEG_ADDR, byte - BEG_BYTE) + BEG;
2667 TEMP_SET_PT_BOTH (position, byte);
2668 }
2669
2670 tail = markers = BUF_MARKERS (current_buffer);
2671
2672 /* This prevents BYTE_TO_CHAR (that is, buf_bytepos_to_charpos) from
2673 getting confused by the markers that have not yet been updated.
2674 It is also a signal that it should never create a marker. */
2675 BUF_MARKERS (current_buffer) = NULL;
2676
2677 for (; tail; tail = tail->next)
2678 {
2679 tail->bytepos = advance_to_char_boundary (tail->bytepos);
2680 tail->charpos = BYTE_TO_CHAR (tail->bytepos);
2681 }
2682
2683 /* Make sure no markers were put on the chain
2684 while the chain value was incorrect. */
2685 if (BUF_MARKERS (current_buffer))
2686 emacs_abort ();
2687
2688 BUF_MARKERS (current_buffer) = markers;
2689
2690 /* Do this last, so it can calculate the new correspondences
2691 between chars and bytes. */
2692 set_intervals_multibyte (1);
2693 }
2694
2695 if (!EQ (old_undo, Qt))
2696 {
2697 /* Represent all the above changes by a special undo entry. */
2698 bset_undo_list (current_buffer,
2699 Fcons (list3 (Qapply,
2700 intern ("set-buffer-multibyte"),
2701 NILP (flag) ? Qt : Qnil),
2702 old_undo));
2703 }
2704
2705 UNGCPRO;
2706
2707 current_buffer->prevent_redisplay_optimizations_p = 1;
2708
2709 /* If buffer is shown in a window, let redisplay consider other windows. */
2710 if (buffer_window_count (current_buffer))
2711 windows_or_buffers_changed = 10;
2712
2713 /* Copy this buffer's new multibyte status
2714 into all of its indirect buffers. */
2715 FOR_EACH_BUFFER (other)
2716 if (other->base_buffer == current_buffer && BUFFER_LIVE_P (other))
2717 {
2718 BVAR (other, enable_multibyte_characters)
2719 = BVAR (current_buffer, enable_multibyte_characters);
2720 other->prevent_redisplay_optimizations_p = 1;
2721 }
2722
2723 /* Restore the modifiedness of the buffer. */
2724 if (!modified_p && !NILP (Fbuffer_modified_p (Qnil)))
2725 Fset_buffer_modified_p (Qnil);
2726
2727 /* Update coding systems of this buffer's process (if any). */
2728 {
2729 Lisp_Object process;
2730
2731 process = Fget_buffer_process (Fcurrent_buffer ());
2732 if (PROCESSP (process))
2733 setup_process_coding_systems (process);
2734 }
2735
2736 return flag;
2737 }
2738 \f
2739 DEFUN ("kill-all-local-variables", Fkill_all_local_variables,
2740 Skill_all_local_variables, 0, 0, 0,
2741 doc: /* Switch to Fundamental mode by killing current buffer's local variables.
2742 Most local variable bindings are eliminated so that the default values
2743 become effective once more. Also, the syntax table is set from
2744 `standard-syntax-table', the local keymap is set to nil,
2745 and the abbrev table from `fundamental-mode-abbrev-table'.
2746 This function also forces redisplay of the mode line.
2747
2748 Every function to select a new major mode starts by
2749 calling this function.
2750
2751 As a special exception, local variables whose names have
2752 a non-nil `permanent-local' property are not eliminated by this function.
2753
2754 The first thing this function does is run
2755 the normal hook `change-major-mode-hook'. */)
2756 (void)
2757 {
2758 Frun_hooks (1, &Qchange_major_mode_hook);
2759
2760 /* Make sure none of the bindings in local_var_alist
2761 remain swapped in, in their symbols. */
2762
2763 swap_out_buffer_local_variables (current_buffer);
2764
2765 /* Actually eliminate all local bindings of this buffer. */
2766
2767 reset_buffer_local_variables (current_buffer, 0);
2768
2769 /* Force mode-line redisplay. Useful here because all major mode
2770 commands call this function. */
2771 update_mode_lines = 12;
2772
2773 return Qnil;
2774 }
2775
2776 /* Make sure no local variables remain set up with buffer B
2777 for their current values. */
2778
2779 static void
2780 swap_out_buffer_local_variables (struct buffer *b)
2781 {
2782 Lisp_Object oalist, alist, buffer;
2783
2784 XSETBUFFER (buffer, b);
2785 oalist = BVAR (b, local_var_alist);
2786
2787 for (alist = oalist; CONSP (alist); alist = XCDR (alist))
2788 {
2789 Lisp_Object sym = XCAR (XCAR (alist));
2790 eassert (XSYMBOL (sym)->redirect == SYMBOL_LOCALIZED);
2791 /* Need not do anything if some other buffer's binding is
2792 now cached. */
2793 if (EQ (SYMBOL_BLV (XSYMBOL (sym))->where, buffer))
2794 {
2795 /* Symbol is set up for this buffer's old local value:
2796 swap it out! */
2797 swap_in_global_binding (XSYMBOL (sym));
2798 }
2799 }
2800 }
2801 \f
2802 /* Find all the overlays in the current buffer that contain position POS.
2803 Return the number found, and store them in a vector in *VEC_PTR.
2804 Store in *LEN_PTR the size allocated for the vector.
2805 Store in *NEXT_PTR the next position after POS where an overlay starts,
2806 or ZV if there are no more overlays between POS and ZV.
2807 Store in *PREV_PTR the previous position before POS where an overlay ends,
2808 or where an overlay starts which ends at or after POS;
2809 or BEGV if there are no such overlays from BEGV to POS.
2810 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2811
2812 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2813 when this function is called.
2814
2815 If EXTEND, make the vector bigger if necessary.
2816 If not, never extend the vector,
2817 and store only as many overlays as will fit.
2818 But still return the total number of overlays.
2819
2820 If CHANGE_REQ, any position written into *PREV_PTR or
2821 *NEXT_PTR is guaranteed to be not equal to POS, unless it is the
2822 default (BEGV or ZV). */
2823
2824 ptrdiff_t
2825 overlays_at (EMACS_INT pos, bool extend, Lisp_Object **vec_ptr,
2826 ptrdiff_t *len_ptr,
2827 ptrdiff_t *next_ptr, ptrdiff_t *prev_ptr, bool change_req)
2828 {
2829 Lisp_Object overlay, start, end;
2830 struct Lisp_Overlay *tail;
2831 ptrdiff_t idx = 0;
2832 ptrdiff_t len = *len_ptr;
2833 Lisp_Object *vec = *vec_ptr;
2834 ptrdiff_t next = ZV;
2835 ptrdiff_t prev = BEGV;
2836 bool inhibit_storing = 0;
2837
2838 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
2839 {
2840 ptrdiff_t startpos, endpos;
2841
2842 XSETMISC (overlay, tail);
2843
2844 start = OVERLAY_START (overlay);
2845 end = OVERLAY_END (overlay);
2846 endpos = OVERLAY_POSITION (end);
2847 if (endpos < pos)
2848 {
2849 if (prev < endpos)
2850 prev = endpos;
2851 break;
2852 }
2853 startpos = OVERLAY_POSITION (start);
2854 /* This one ends at or after POS
2855 so its start counts for PREV_PTR if it's before POS. */
2856 if (prev < startpos && startpos < pos)
2857 prev = startpos;
2858 if (endpos == pos)
2859 continue;
2860 if (startpos <= pos)
2861 {
2862 if (idx == len)
2863 {
2864 /* The supplied vector is full.
2865 Either make it bigger, or don't store any more in it. */
2866 if (extend)
2867 {
2868 vec = xpalloc (vec, len_ptr, 1, OVERLAY_COUNT_MAX,
2869 sizeof *vec);
2870 *vec_ptr = vec;
2871 len = *len_ptr;
2872 }
2873 else
2874 inhibit_storing = 1;
2875 }
2876
2877 if (!inhibit_storing)
2878 vec[idx] = overlay;
2879 /* Keep counting overlays even if we can't return them all. */
2880 idx++;
2881 }
2882 else if (startpos < next)
2883 next = startpos;
2884 }
2885
2886 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
2887 {
2888 ptrdiff_t startpos, endpos;
2889
2890 XSETMISC (overlay, tail);
2891
2892 start = OVERLAY_START (overlay);
2893 end = OVERLAY_END (overlay);
2894 startpos = OVERLAY_POSITION (start);
2895 if (pos < startpos)
2896 {
2897 if (startpos < next)
2898 next = startpos;
2899 break;
2900 }
2901 endpos = OVERLAY_POSITION (end);
2902 if (pos < endpos)
2903 {
2904 if (idx == len)
2905 {
2906 if (extend)
2907 {
2908 vec = xpalloc (vec, len_ptr, 1, OVERLAY_COUNT_MAX,
2909 sizeof *vec);
2910 *vec_ptr = vec;
2911 len = *len_ptr;
2912 }
2913 else
2914 inhibit_storing = 1;
2915 }
2916
2917 if (!inhibit_storing)
2918 vec[idx] = overlay;
2919 idx++;
2920
2921 if (startpos < pos && startpos > prev)
2922 prev = startpos;
2923 }
2924 else if (endpos < pos && endpos > prev)
2925 prev = endpos;
2926 else if (endpos == pos && startpos > prev
2927 && (!change_req || startpos < pos))
2928 prev = startpos;
2929 }
2930
2931 if (next_ptr)
2932 *next_ptr = next;
2933 if (prev_ptr)
2934 *prev_ptr = prev;
2935 return idx;
2936 }
2937 \f
2938 /* Find all the overlays in the current buffer that overlap the range
2939 BEG-END, or are empty at BEG, or are empty at END provided END
2940 denotes the position at the end of the current buffer.
2941
2942 Return the number found, and store them in a vector in *VEC_PTR.
2943 Store in *LEN_PTR the size allocated for the vector.
2944 Store in *NEXT_PTR the next position after POS where an overlay starts,
2945 or ZV if there are no more overlays.
2946 Store in *PREV_PTR the previous position before POS where an overlay ends,
2947 or BEGV if there are no previous overlays.
2948 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2949
2950 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2951 when this function is called.
2952
2953 If EXTEND, make the vector bigger if necessary.
2954 If not, never extend the vector,
2955 and store only as many overlays as will fit.
2956 But still return the total number of overlays. */
2957
2958 static ptrdiff_t
2959 overlays_in (EMACS_INT beg, EMACS_INT end, bool extend,
2960 Lisp_Object **vec_ptr, ptrdiff_t *len_ptr,
2961 ptrdiff_t *next_ptr, ptrdiff_t *prev_ptr)
2962 {
2963 Lisp_Object overlay, ostart, oend;
2964 struct Lisp_Overlay *tail;
2965 ptrdiff_t idx = 0;
2966 ptrdiff_t len = *len_ptr;
2967 Lisp_Object *vec = *vec_ptr;
2968 ptrdiff_t next = ZV;
2969 ptrdiff_t prev = BEGV;
2970 bool inhibit_storing = 0;
2971 bool end_is_Z = end == Z;
2972
2973 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
2974 {
2975 ptrdiff_t startpos, endpos;
2976
2977 XSETMISC (overlay, tail);
2978
2979 ostart = OVERLAY_START (overlay);
2980 oend = OVERLAY_END (overlay);
2981 endpos = OVERLAY_POSITION (oend);
2982 if (endpos < beg)
2983 {
2984 if (prev < endpos)
2985 prev = endpos;
2986 break;
2987 }
2988 startpos = OVERLAY_POSITION (ostart);
2989 /* Count an interval if it overlaps the range, is empty at the
2990 start of the range, or is empty at END provided END denotes the
2991 end of the buffer. */
2992 if ((beg < endpos && startpos < end)
2993 || (startpos == endpos
2994 && (beg == endpos || (end_is_Z && endpos == end))))
2995 {
2996 if (idx == len)
2997 {
2998 /* The supplied vector is full.
2999 Either make it bigger, or don't store any more in it. */
3000 if (extend)
3001 {
3002 vec = xpalloc (vec, len_ptr, 1, OVERLAY_COUNT_MAX,
3003 sizeof *vec);
3004 *vec_ptr = vec;
3005 len = *len_ptr;
3006 }
3007 else
3008 inhibit_storing = 1;
3009 }
3010
3011 if (!inhibit_storing)
3012 vec[idx] = overlay;
3013 /* Keep counting overlays even if we can't return them all. */
3014 idx++;
3015 }
3016 else if (startpos < next)
3017 next = startpos;
3018 }
3019
3020 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
3021 {
3022 ptrdiff_t startpos, endpos;
3023
3024 XSETMISC (overlay, tail);
3025
3026 ostart = OVERLAY_START (overlay);
3027 oend = OVERLAY_END (overlay);
3028 startpos = OVERLAY_POSITION (ostart);
3029 if (end < startpos)
3030 {
3031 if (startpos < next)
3032 next = startpos;
3033 break;
3034 }
3035 endpos = OVERLAY_POSITION (oend);
3036 /* Count an interval if it overlaps the range, is empty at the
3037 start of the range, or is empty at END provided END denotes the
3038 end of the buffer. */
3039 if ((beg < endpos && startpos < end)
3040 || (startpos == endpos
3041 && (beg == endpos || (end_is_Z && endpos == end))))
3042 {
3043 if (idx == len)
3044 {
3045 if (extend)
3046 {
3047 vec = xpalloc (vec, len_ptr, 1, OVERLAY_COUNT_MAX,
3048 sizeof *vec);
3049 *vec_ptr = vec;
3050 len = *len_ptr;
3051 }
3052 else
3053 inhibit_storing = 1;
3054 }
3055
3056 if (!inhibit_storing)
3057 vec[idx] = overlay;
3058 idx++;
3059 }
3060 else if (endpos < beg && endpos > prev)
3061 prev = endpos;
3062 }
3063
3064 if (next_ptr)
3065 *next_ptr = next;
3066 if (prev_ptr)
3067 *prev_ptr = prev;
3068 return idx;
3069 }
3070
3071
3072 /* Return true if there exists an overlay with a non-nil
3073 `mouse-face' property overlapping OVERLAY. */
3074
3075 bool
3076 mouse_face_overlay_overlaps (Lisp_Object overlay)
3077 {
3078 ptrdiff_t start = OVERLAY_POSITION (OVERLAY_START (overlay));
3079 ptrdiff_t end = OVERLAY_POSITION (OVERLAY_END (overlay));
3080 ptrdiff_t n, i, size;
3081 Lisp_Object *v, tem;
3082
3083 size = 10;
3084 v = alloca (size * sizeof *v);
3085 n = overlays_in (start, end, 0, &v, &size, NULL, NULL);
3086 if (n > size)
3087 {
3088 v = alloca (n * sizeof *v);
3089 overlays_in (start, end, 0, &v, &n, NULL, NULL);
3090 }
3091
3092 for (i = 0; i < n; ++i)
3093 if (!EQ (v[i], overlay)
3094 && (tem = Foverlay_get (overlay, Qmouse_face),
3095 !NILP (tem)))
3096 break;
3097
3098 return i < n;
3099 }
3100
3101
3102 \f
3103 /* Fast function to just test if we're at an overlay boundary. */
3104 bool
3105 overlay_touches_p (ptrdiff_t pos)
3106 {
3107 Lisp_Object overlay;
3108 struct Lisp_Overlay *tail;
3109
3110 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
3111 {
3112 ptrdiff_t endpos;
3113
3114 XSETMISC (overlay ,tail);
3115 eassert (OVERLAYP (overlay));
3116
3117 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3118 if (endpos < pos)
3119 break;
3120 if (endpos == pos || OVERLAY_POSITION (OVERLAY_START (overlay)) == pos)
3121 return 1;
3122 }
3123
3124 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
3125 {
3126 ptrdiff_t startpos;
3127
3128 XSETMISC (overlay, tail);
3129 eassert (OVERLAYP (overlay));
3130
3131 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3132 if (pos < startpos)
3133 break;
3134 if (startpos == pos || OVERLAY_POSITION (OVERLAY_END (overlay)) == pos)
3135 return 1;
3136 }
3137 return 0;
3138 }
3139 \f
3140 struct sortvec
3141 {
3142 Lisp_Object overlay;
3143 ptrdiff_t beg, end;
3144 EMACS_INT priority;
3145 };
3146
3147 static int
3148 compare_overlays (const void *v1, const void *v2)
3149 {
3150 const struct sortvec *s1 = v1;
3151 const struct sortvec *s2 = v2;
3152 if (s1->priority != s2->priority)
3153 return s1->priority < s2->priority ? -1 : 1;
3154 if (s1->beg != s2->beg)
3155 return s1->beg < s2->beg ? -1 : 1;
3156 if (s1->end != s2->end)
3157 return s2->end < s1->end ? -1 : 1;
3158 /* Avoid the non-determinism of qsort by choosing an arbitrary ordering
3159 between "equal" overlays. The result can still change between
3160 invocations of Emacs, but it won't change in the middle of
3161 `find_field' (bug#6830). */
3162 if (!EQ (s1->overlay, s2->overlay))
3163 return XLI (s1->overlay) < XLI (s2->overlay) ? -1 : 1;
3164 return 0;
3165 }
3166
3167 /* Sort an array of overlays by priority. The array is modified in place.
3168 The return value is the new size; this may be smaller than the original
3169 size if some of the overlays were invalid or were window-specific. */
3170 ptrdiff_t
3171 sort_overlays (Lisp_Object *overlay_vec, ptrdiff_t noverlays, struct window *w)
3172 {
3173 ptrdiff_t i, j;
3174 USE_SAFE_ALLOCA;
3175 struct sortvec *sortvec;
3176
3177 SAFE_NALLOCA (sortvec, 1, noverlays);
3178
3179 /* Put the valid and relevant overlays into sortvec. */
3180
3181 for (i = 0, j = 0; i < noverlays; i++)
3182 {
3183 Lisp_Object tem;
3184 Lisp_Object overlay;
3185
3186 overlay = overlay_vec[i];
3187 if (OVERLAYP (overlay)
3188 && OVERLAY_POSITION (OVERLAY_START (overlay)) > 0
3189 && OVERLAY_POSITION (OVERLAY_END (overlay)) > 0)
3190 {
3191 /* If we're interested in a specific window, then ignore
3192 overlays that are limited to some other window. */
3193 if (w)
3194 {
3195 Lisp_Object window;
3196
3197 window = Foverlay_get (overlay, Qwindow);
3198 if (WINDOWP (window) && XWINDOW (window) != w)
3199 continue;
3200 }
3201
3202 /* This overlay is good and counts: put it into sortvec. */
3203 sortvec[j].overlay = overlay;
3204 sortvec[j].beg = OVERLAY_POSITION (OVERLAY_START (overlay));
3205 sortvec[j].end = OVERLAY_POSITION (OVERLAY_END (overlay));
3206 tem = Foverlay_get (overlay, Qpriority);
3207 if (INTEGERP (tem))
3208 sortvec[j].priority = XINT (tem);
3209 else
3210 sortvec[j].priority = 0;
3211 j++;
3212 }
3213 }
3214 noverlays = j;
3215
3216 /* Sort the overlays into the proper order: increasing priority. */
3217
3218 if (noverlays > 1)
3219 qsort (sortvec, noverlays, sizeof (struct sortvec), compare_overlays);
3220
3221 for (i = 0; i < noverlays; i++)
3222 overlay_vec[i] = sortvec[i].overlay;
3223
3224 SAFE_FREE ();
3225 return (noverlays);
3226 }
3227 \f
3228 struct sortstr
3229 {
3230 Lisp_Object string, string2;
3231 ptrdiff_t size;
3232 EMACS_INT priority;
3233 };
3234
3235 struct sortstrlist
3236 {
3237 struct sortstr *buf; /* An array that expands as needed; never freed. */
3238 ptrdiff_t size; /* Allocated length of that array. */
3239 ptrdiff_t used; /* How much of the array is currently in use. */
3240 ptrdiff_t bytes; /* Total length of the strings in buf. */
3241 };
3242
3243 /* Buffers for storing information about the overlays touching a given
3244 position. These could be automatic variables in overlay_strings, but
3245 it's more efficient to hold onto the memory instead of repeatedly
3246 allocating and freeing it. */
3247 static struct sortstrlist overlay_heads, overlay_tails;
3248 static unsigned char *overlay_str_buf;
3249
3250 /* Allocated length of overlay_str_buf. */
3251 static ptrdiff_t overlay_str_len;
3252
3253 /* A comparison function suitable for passing to qsort. */
3254 static int
3255 cmp_for_strings (const void *as1, const void *as2)
3256 {
3257 struct sortstr const *s1 = as1;
3258 struct sortstr const *s2 = as2;
3259 if (s1->size != s2->size)
3260 return s2->size < s1->size ? -1 : 1;
3261 if (s1->priority != s2->priority)
3262 return s1->priority < s2->priority ? -1 : 1;
3263 return 0;
3264 }
3265
3266 static void
3267 record_overlay_string (struct sortstrlist *ssl, Lisp_Object str,
3268 Lisp_Object str2, Lisp_Object pri, ptrdiff_t size)
3269 {
3270 ptrdiff_t nbytes;
3271
3272 if (ssl->used == ssl->size)
3273 ssl->buf = xpalloc (ssl->buf, &ssl->size, 5, -1, sizeof *ssl->buf);
3274 ssl->buf[ssl->used].string = str;
3275 ssl->buf[ssl->used].string2 = str2;
3276 ssl->buf[ssl->used].size = size;
3277 ssl->buf[ssl->used].priority = (INTEGERP (pri) ? XINT (pri) : 0);
3278 ssl->used++;
3279
3280 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3281 nbytes = SCHARS (str);
3282 else if (! STRING_MULTIBYTE (str))
3283 nbytes = count_size_as_multibyte (SDATA (str),
3284 SBYTES (str));
3285 else
3286 nbytes = SBYTES (str);
3287
3288 if (INT_ADD_OVERFLOW (ssl->bytes, nbytes))
3289 memory_full (SIZE_MAX);
3290 ssl->bytes += nbytes;
3291
3292 if (STRINGP (str2))
3293 {
3294 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3295 nbytes = SCHARS (str2);
3296 else if (! STRING_MULTIBYTE (str2))
3297 nbytes = count_size_as_multibyte (SDATA (str2),
3298 SBYTES (str2));
3299 else
3300 nbytes = SBYTES (str2);
3301
3302 if (INT_ADD_OVERFLOW (ssl->bytes, nbytes))
3303 memory_full (SIZE_MAX);
3304 ssl->bytes += nbytes;
3305 }
3306 }
3307
3308 /* Return the concatenation of the strings associated with overlays that
3309 begin or end at POS, ignoring overlays that are specific to a window
3310 other than W. The strings are concatenated in the appropriate order:
3311 shorter overlays nest inside longer ones, and higher priority inside
3312 lower. Normally all of the after-strings come first, but zero-sized
3313 overlays have their after-strings ride along with the before-strings
3314 because it would look strange to print them inside-out.
3315
3316 Returns the string length, and stores the contents indirectly through
3317 PSTR, if that variable is non-null. The string may be overwritten by
3318 subsequent calls. */
3319
3320 ptrdiff_t
3321 overlay_strings (ptrdiff_t pos, struct window *w, unsigned char **pstr)
3322 {
3323 Lisp_Object overlay, window, str;
3324 struct Lisp_Overlay *ov;
3325 ptrdiff_t startpos, endpos;
3326 bool multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
3327
3328 overlay_heads.used = overlay_heads.bytes = 0;
3329 overlay_tails.used = overlay_tails.bytes = 0;
3330 for (ov = current_buffer->overlays_before; ov; ov = ov->next)
3331 {
3332 XSETMISC (overlay, ov);
3333 eassert (OVERLAYP (overlay));
3334
3335 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3336 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3337 if (endpos < pos)
3338 break;
3339 if (endpos != pos && startpos != pos)
3340 continue;
3341 window = Foverlay_get (overlay, Qwindow);
3342 if (WINDOWP (window) && XWINDOW (window) != w)
3343 continue;
3344 if (startpos == pos
3345 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
3346 record_overlay_string (&overlay_heads, str,
3347 (startpos == endpos
3348 ? Foverlay_get (overlay, Qafter_string)
3349 : Qnil),
3350 Foverlay_get (overlay, Qpriority),
3351 endpos - startpos);
3352 else if (endpos == pos
3353 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
3354 record_overlay_string (&overlay_tails, str, Qnil,
3355 Foverlay_get (overlay, Qpriority),
3356 endpos - startpos);
3357 }
3358 for (ov = current_buffer->overlays_after; ov; ov = ov->next)
3359 {
3360 XSETMISC (overlay, ov);
3361 eassert (OVERLAYP (overlay));
3362
3363 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3364 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3365 if (startpos > pos)
3366 break;
3367 if (endpos != pos && startpos != pos)
3368 continue;
3369 window = Foverlay_get (overlay, Qwindow);
3370 if (WINDOWP (window) && XWINDOW (window) != w)
3371 continue;
3372 if (startpos == pos
3373 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
3374 record_overlay_string (&overlay_heads, str,
3375 (startpos == endpos
3376 ? Foverlay_get (overlay, Qafter_string)
3377 : Qnil),
3378 Foverlay_get (overlay, Qpriority),
3379 endpos - startpos);
3380 else if (endpos == pos
3381 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
3382 record_overlay_string (&overlay_tails, str, Qnil,
3383 Foverlay_get (overlay, Qpriority),
3384 endpos - startpos);
3385 }
3386 if (overlay_tails.used > 1)
3387 qsort (overlay_tails.buf, overlay_tails.used, sizeof (struct sortstr),
3388 cmp_for_strings);
3389 if (overlay_heads.used > 1)
3390 qsort (overlay_heads.buf, overlay_heads.used, sizeof (struct sortstr),
3391 cmp_for_strings);
3392 if (overlay_heads.bytes || overlay_tails.bytes)
3393 {
3394 Lisp_Object tem;
3395 ptrdiff_t i;
3396 unsigned char *p;
3397 ptrdiff_t total;
3398
3399 if (INT_ADD_OVERFLOW (overlay_heads.bytes, overlay_tails.bytes))
3400 memory_full (SIZE_MAX);
3401 total = overlay_heads.bytes + overlay_tails.bytes;
3402 if (total > overlay_str_len)
3403 overlay_str_buf = xpalloc (overlay_str_buf, &overlay_str_len,
3404 total - overlay_str_len, -1, 1);
3405
3406 p = overlay_str_buf;
3407 for (i = overlay_tails.used; --i >= 0;)
3408 {
3409 ptrdiff_t nbytes;
3410 tem = overlay_tails.buf[i].string;
3411 nbytes = copy_text (SDATA (tem), p,
3412 SBYTES (tem),
3413 STRING_MULTIBYTE (tem), multibyte);
3414 p += nbytes;
3415 }
3416 for (i = 0; i < overlay_heads.used; ++i)
3417 {
3418 ptrdiff_t nbytes;
3419 tem = overlay_heads.buf[i].string;
3420 nbytes = copy_text (SDATA (tem), p,
3421 SBYTES (tem),
3422 STRING_MULTIBYTE (tem), multibyte);
3423 p += nbytes;
3424 tem = overlay_heads.buf[i].string2;
3425 if (STRINGP (tem))
3426 {
3427 nbytes = copy_text (SDATA (tem), p,
3428 SBYTES (tem),
3429 STRING_MULTIBYTE (tem), multibyte);
3430 p += nbytes;
3431 }
3432 }
3433 if (p != overlay_str_buf + total)
3434 emacs_abort ();
3435 if (pstr)
3436 *pstr = overlay_str_buf;
3437 return total;
3438 }
3439 return 0;
3440 }
3441 \f
3442 /* Shift overlays in BUF's overlay lists, to center the lists at POS. */
3443
3444 void
3445 recenter_overlay_lists (struct buffer *buf, ptrdiff_t pos)
3446 {
3447 Lisp_Object overlay, beg, end;
3448 struct Lisp_Overlay *prev, *tail, *next;
3449
3450 /* See if anything in overlays_before should move to overlays_after. */
3451
3452 /* We don't strictly need prev in this loop; it should always be nil.
3453 But we use it for symmetry and in case that should cease to be true
3454 with some future change. */
3455 prev = NULL;
3456 for (tail = buf->overlays_before; tail; prev = tail, tail = next)
3457 {
3458 next = tail->next;
3459 XSETMISC (overlay, tail);
3460 eassert (OVERLAYP (overlay));
3461
3462 beg = OVERLAY_START (overlay);
3463 end = OVERLAY_END (overlay);
3464
3465 if (OVERLAY_POSITION (end) > pos)
3466 {
3467 /* OVERLAY needs to be moved. */
3468 ptrdiff_t where = OVERLAY_POSITION (beg);
3469 struct Lisp_Overlay *other, *other_prev;
3470
3471 /* Splice the cons cell TAIL out of overlays_before. */
3472 if (prev)
3473 prev->next = next;
3474 else
3475 set_buffer_overlays_before (buf, next);
3476
3477 /* Search thru overlays_after for where to put it. */
3478 other_prev = NULL;
3479 for (other = buf->overlays_after; other;
3480 other_prev = other, other = other->next)
3481 {
3482 Lisp_Object otherbeg, otheroverlay;
3483
3484 XSETMISC (otheroverlay, other);
3485 eassert (OVERLAYP (otheroverlay));
3486
3487 otherbeg = OVERLAY_START (otheroverlay);
3488 if (OVERLAY_POSITION (otherbeg) >= where)
3489 break;
3490 }
3491
3492 /* Add TAIL to overlays_after before OTHER. */
3493 tail->next = other;
3494 if (other_prev)
3495 other_prev->next = tail;
3496 else
3497 set_buffer_overlays_after (buf, tail);
3498 tail = prev;
3499 }
3500 else
3501 /* We've reached the things that should stay in overlays_before.
3502 All the rest of overlays_before must end even earlier,
3503 so stop now. */
3504 break;
3505 }
3506
3507 /* See if anything in overlays_after should be in overlays_before. */
3508 prev = NULL;
3509 for (tail = buf->overlays_after; tail; prev = tail, tail = next)
3510 {
3511 next = tail->next;
3512 XSETMISC (overlay, tail);
3513 eassert (OVERLAYP (overlay));
3514
3515 beg = OVERLAY_START (overlay);
3516 end = OVERLAY_END (overlay);
3517
3518 /* Stop looking, when we know that nothing further
3519 can possibly end before POS. */
3520 if (OVERLAY_POSITION (beg) > pos)
3521 break;
3522
3523 if (OVERLAY_POSITION (end) <= pos)
3524 {
3525 /* OVERLAY needs to be moved. */
3526 ptrdiff_t where = OVERLAY_POSITION (end);
3527 struct Lisp_Overlay *other, *other_prev;
3528
3529 /* Splice the cons cell TAIL out of overlays_after. */
3530 if (prev)
3531 prev->next = next;
3532 else
3533 set_buffer_overlays_after (buf, next);
3534
3535 /* Search thru overlays_before for where to put it. */
3536 other_prev = NULL;
3537 for (other = buf->overlays_before; other;
3538 other_prev = other, other = other->next)
3539 {
3540 Lisp_Object otherend, otheroverlay;
3541
3542 XSETMISC (otheroverlay, other);
3543 eassert (OVERLAYP (otheroverlay));
3544
3545 otherend = OVERLAY_END (otheroverlay);
3546 if (OVERLAY_POSITION (otherend) <= where)
3547 break;
3548 }
3549
3550 /* Add TAIL to overlays_before before OTHER. */
3551 tail->next = other;
3552 if (other_prev)
3553 other_prev->next = tail;
3554 else
3555 set_buffer_overlays_before (buf, tail);
3556 tail = prev;
3557 }
3558 }
3559
3560 buf->overlay_center = pos;
3561 }
3562
3563 void
3564 adjust_overlays_for_insert (ptrdiff_t pos, ptrdiff_t length)
3565 {
3566 /* After an insertion, the lists are still sorted properly,
3567 but we may need to update the value of the overlay center. */
3568 if (current_buffer->overlay_center >= pos)
3569 current_buffer->overlay_center += length;
3570 }
3571
3572 void
3573 adjust_overlays_for_delete (ptrdiff_t pos, ptrdiff_t length)
3574 {
3575 if (current_buffer->overlay_center < pos)
3576 /* The deletion was to our right. No change needed; the before- and
3577 after-lists are still consistent. */
3578 ;
3579 else if (current_buffer->overlay_center - pos > length)
3580 /* The deletion was to our left. We need to adjust the center value
3581 to account for the change in position, but the lists are consistent
3582 given the new value. */
3583 current_buffer->overlay_center -= length;
3584 else
3585 /* We're right in the middle. There might be things on the after-list
3586 that now belong on the before-list. Recentering will move them,
3587 and also update the center point. */
3588 recenter_overlay_lists (current_buffer, pos);
3589 }
3590
3591 /* Fix up overlays that were garbled as a result of permuting markers
3592 in the range START through END. Any overlay with at least one
3593 endpoint in this range will need to be unlinked from the overlay
3594 list and reinserted in its proper place.
3595 Such an overlay might even have negative size at this point.
3596 If so, we'll make the overlay empty. */
3597 void
3598 fix_start_end_in_overlays (register ptrdiff_t start, register ptrdiff_t end)
3599 {
3600 Lisp_Object overlay;
3601 struct Lisp_Overlay *before_list IF_LINT (= NULL);
3602 struct Lisp_Overlay *after_list IF_LINT (= NULL);
3603 /* These are either nil, indicating that before_list or after_list
3604 should be assigned, or the cons cell the cdr of which should be
3605 assigned. */
3606 struct Lisp_Overlay *beforep = NULL, *afterp = NULL;
3607 /* 'Parent', likewise, indicates a cons cell or
3608 current_buffer->overlays_before or overlays_after, depending
3609 which loop we're in. */
3610 struct Lisp_Overlay *tail, *parent;
3611 ptrdiff_t startpos, endpos;
3612
3613 /* This algorithm shifts links around instead of consing and GCing.
3614 The loop invariant is that before_list (resp. after_list) is a
3615 well-formed list except that its last element, the CDR of beforep
3616 (resp. afterp) if beforep (afterp) isn't nil or before_list
3617 (after_list) if it is, is still uninitialized. So it's not a bug
3618 that before_list isn't initialized, although it may look
3619 strange. */
3620 for (parent = NULL, tail = current_buffer->overlays_before; tail;)
3621 {
3622 XSETMISC (overlay, tail);
3623
3624 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3625 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3626
3627 /* If the overlay is backwards, make it empty. */
3628 if (endpos < startpos)
3629 {
3630 startpos = endpos;
3631 Fset_marker (OVERLAY_START (overlay), make_number (startpos),
3632 Qnil);
3633 }
3634
3635 if (endpos < start)
3636 break;
3637
3638 if (endpos < end
3639 || (startpos >= start && startpos < end))
3640 {
3641 /* Add it to the end of the wrong list. Later on,
3642 recenter_overlay_lists will move it to the right place. */
3643 if (endpos < current_buffer->overlay_center)
3644 {
3645 if (!afterp)
3646 after_list = tail;
3647 else
3648 afterp->next = tail;
3649 afterp = tail;
3650 }
3651 else
3652 {
3653 if (!beforep)
3654 before_list = tail;
3655 else
3656 beforep->next = tail;
3657 beforep = tail;
3658 }
3659 if (!parent)
3660 set_buffer_overlays_before (current_buffer, tail->next);
3661 else
3662 parent->next = tail->next;
3663 tail = tail->next;
3664 }
3665 else
3666 parent = tail, tail = parent->next;
3667 }
3668 for (parent = NULL, tail = current_buffer->overlays_after; tail;)
3669 {
3670 XSETMISC (overlay, tail);
3671
3672 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3673 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3674
3675 /* If the overlay is backwards, make it empty. */
3676 if (endpos < startpos)
3677 {
3678 startpos = endpos;
3679 Fset_marker (OVERLAY_START (overlay), make_number (startpos),
3680 Qnil);
3681 }
3682
3683 if (startpos >= end)
3684 break;
3685
3686 if (startpos >= start
3687 || (endpos >= start && endpos < end))
3688 {
3689 if (endpos < current_buffer->overlay_center)
3690 {
3691 if (!afterp)
3692 after_list = tail;
3693 else
3694 afterp->next = tail;
3695 afterp = tail;
3696 }
3697 else
3698 {
3699 if (!beforep)
3700 before_list = tail;
3701 else
3702 beforep->next = tail;
3703 beforep = tail;
3704 }
3705 if (!parent)
3706 set_buffer_overlays_after (current_buffer, tail->next);
3707 else
3708 parent->next = tail->next;
3709 tail = tail->next;
3710 }
3711 else
3712 parent = tail, tail = parent->next;
3713 }
3714
3715 /* Splice the constructed (wrong) lists into the buffer's lists,
3716 and let the recenter function make it sane again. */
3717 if (beforep)
3718 {
3719 beforep->next = current_buffer->overlays_before;
3720 set_buffer_overlays_before (current_buffer, before_list);
3721 }
3722
3723 if (afterp)
3724 {
3725 afterp->next = current_buffer->overlays_after;
3726 set_buffer_overlays_after (current_buffer, after_list);
3727 }
3728 recenter_overlay_lists (current_buffer, current_buffer->overlay_center);
3729 }
3730
3731 /* We have two types of overlay: the one whose ending marker is
3732 after-insertion-marker (this is the usual case) and the one whose
3733 ending marker is before-insertion-marker. When `overlays_before'
3734 contains overlays of the latter type and the former type in this
3735 order and both overlays end at inserting position, inserting a text
3736 increases only the ending marker of the latter type, which results
3737 in incorrect ordering of `overlays_before'.
3738
3739 This function fixes ordering of overlays in the slot
3740 `overlays_before' of the buffer *BP. Before the insertion, `point'
3741 was at PREV, and now is at POS. */
3742
3743 void
3744 fix_overlays_before (struct buffer *bp, ptrdiff_t prev, ptrdiff_t pos)
3745 {
3746 /* If parent is nil, replace overlays_before; otherwise, parent->next. */
3747 struct Lisp_Overlay *tail = bp->overlays_before, *parent = NULL, *right_pair;
3748 Lisp_Object tem;
3749 ptrdiff_t end IF_LINT (= 0);
3750
3751 /* After the insertion, the several overlays may be in incorrect
3752 order. The possibility is that, in the list `overlays_before',
3753 an overlay which ends at POS appears after an overlay which ends
3754 at PREV. Since POS is greater than PREV, we must fix the
3755 ordering of these overlays, by moving overlays ends at POS before
3756 the overlays ends at PREV. */
3757
3758 /* At first, find a place where disordered overlays should be linked
3759 in. It is where an overlay which end before POS exists. (i.e. an
3760 overlay whose ending marker is after-insertion-marker if disorder
3761 exists). */
3762 while (tail
3763 && (XSETMISC (tem, tail),
3764 (end = OVERLAY_POSITION (OVERLAY_END (tem))) >= pos))
3765 {
3766 parent = tail;
3767 tail = tail->next;
3768 }
3769
3770 /* If we don't find such an overlay,
3771 or the found one ends before PREV,
3772 or the found one is the last one in the list,
3773 we don't have to fix anything. */
3774 if (!tail || end < prev || !tail->next)
3775 return;
3776
3777 right_pair = parent;
3778 parent = tail;
3779 tail = tail->next;
3780
3781 /* Now, end position of overlays in the list TAIL should be before
3782 or equal to PREV. In the loop, an overlay which ends at POS is
3783 moved ahead to the place indicated by the CDR of RIGHT_PAIR. If
3784 we found an overlay which ends before PREV, the remaining
3785 overlays are in correct order. */
3786 while (tail)
3787 {
3788 XSETMISC (tem, tail);
3789 end = OVERLAY_POSITION (OVERLAY_END (tem));
3790
3791 if (end == pos)
3792 { /* This overlay is disordered. */
3793 struct Lisp_Overlay *found = tail;
3794
3795 /* Unlink the found overlay. */
3796 tail = found->next;
3797 parent->next = tail;
3798 /* Move an overlay at RIGHT_PLACE to the next of the found one,
3799 and link it into the right place. */
3800 if (!right_pair)
3801 {
3802 found->next = bp->overlays_before;
3803 set_buffer_overlays_before (bp, found);
3804 }
3805 else
3806 {
3807 found->next = right_pair->next;
3808 right_pair->next = found;
3809 }
3810 }
3811 else if (end == prev)
3812 {
3813 parent = tail;
3814 tail = tail->next;
3815 }
3816 else /* No more disordered overlay. */
3817 break;
3818 }
3819 }
3820 \f
3821 DEFUN ("overlayp", Foverlayp, Soverlayp, 1, 1, 0,
3822 doc: /* Return t if OBJECT is an overlay. */)
3823 (Lisp_Object object)
3824 {
3825 return (OVERLAYP (object) ? Qt : Qnil);
3826 }
3827
3828 DEFUN ("make-overlay", Fmake_overlay, Smake_overlay, 2, 5, 0,
3829 doc: /* Create a new overlay with range BEG to END in BUFFER and return it.
3830 If omitted, BUFFER defaults to the current buffer.
3831 BEG and END may be integers or markers.
3832 The fourth arg FRONT-ADVANCE, if non-nil, makes the marker
3833 for the front of the overlay advance when text is inserted there
3834 \(which means the text *is not* included in the overlay).
3835 The fifth arg REAR-ADVANCE, if non-nil, makes the marker
3836 for the rear of the overlay advance when text is inserted there
3837 \(which means the text *is* included in the overlay). */)
3838 (Lisp_Object beg, Lisp_Object end, Lisp_Object buffer,
3839 Lisp_Object front_advance, Lisp_Object rear_advance)
3840 {
3841 Lisp_Object overlay;
3842 struct buffer *b;
3843
3844 if (NILP (buffer))
3845 XSETBUFFER (buffer, current_buffer);
3846 else
3847 CHECK_BUFFER (buffer);
3848
3849 if (MARKERP (beg) && !EQ (Fmarker_buffer (beg), buffer))
3850 signal_error ("Marker points into wrong buffer", beg);
3851 if (MARKERP (end) && !EQ (Fmarker_buffer (end), buffer))
3852 signal_error ("Marker points into wrong buffer", end);
3853
3854 CHECK_NUMBER_COERCE_MARKER (beg);
3855 CHECK_NUMBER_COERCE_MARKER (end);
3856
3857 if (XINT (beg) > XINT (end))
3858 {
3859 Lisp_Object temp;
3860 temp = beg; beg = end; end = temp;
3861 }
3862
3863 b = XBUFFER (buffer);
3864
3865 beg = Fset_marker (Fmake_marker (), beg, buffer);
3866 end = Fset_marker (Fmake_marker (), end, buffer);
3867
3868 if (!NILP (front_advance))
3869 XMARKER (beg)->insertion_type = 1;
3870 if (!NILP (rear_advance))
3871 XMARKER (end)->insertion_type = 1;
3872
3873 overlay = build_overlay (beg, end, Qnil);
3874
3875 /* Put the new overlay on the wrong list. */
3876 end = OVERLAY_END (overlay);
3877 if (OVERLAY_POSITION (end) < b->overlay_center)
3878 {
3879 eassert (b->overlays_after || (XOVERLAY (overlay)->next == NULL));
3880 XOVERLAY (overlay)->next = b->overlays_after;
3881 set_buffer_overlays_after (b, XOVERLAY (overlay));
3882 }
3883 else
3884 {
3885 eassert (b->overlays_before || (XOVERLAY (overlay)->next == NULL));
3886 XOVERLAY (overlay)->next = b->overlays_before;
3887 set_buffer_overlays_before (b, XOVERLAY (overlay));
3888 }
3889 /* This puts it in the right list, and in the right order. */
3890 recenter_overlay_lists (b, b->overlay_center);
3891
3892 /* We don't need to redisplay the region covered by the overlay, because
3893 the overlay has no properties at the moment. */
3894
3895 return overlay;
3896 }
3897 \f
3898 /* Mark a section of BUF as needing redisplay because of overlays changes. */
3899
3900 static void
3901 modify_overlay (struct buffer *buf, ptrdiff_t start, ptrdiff_t end)
3902 {
3903 if (start > end)
3904 {
3905 ptrdiff_t temp = start;
3906 start = end;
3907 end = temp;
3908 }
3909
3910 BUF_COMPUTE_UNCHANGED (buf, start, end);
3911
3912 bset_redisplay (buf);
3913
3914 ++BUF_OVERLAY_MODIFF (buf);
3915 }
3916
3917 /* Remove OVERLAY from LIST. */
3918
3919 static struct Lisp_Overlay *
3920 unchain_overlay (struct Lisp_Overlay *list, struct Lisp_Overlay *overlay)
3921 {
3922 register struct Lisp_Overlay *tail, **prev = &list;
3923
3924 for (tail = list; tail; prev = &tail->next, tail = *prev)
3925 if (tail == overlay)
3926 {
3927 *prev = overlay->next;
3928 overlay->next = NULL;
3929 break;
3930 }
3931 return list;
3932 }
3933
3934 /* Remove OVERLAY from both overlay lists of B. */
3935
3936 static void
3937 unchain_both (struct buffer *b, Lisp_Object overlay)
3938 {
3939 struct Lisp_Overlay *ov = XOVERLAY (overlay);
3940
3941 set_buffer_overlays_before (b, unchain_overlay (b->overlays_before, ov));
3942 set_buffer_overlays_after (b, unchain_overlay (b->overlays_after, ov));
3943 eassert (XOVERLAY (overlay)->next == NULL);
3944 }
3945
3946 DEFUN ("move-overlay", Fmove_overlay, Smove_overlay, 3, 4, 0,
3947 doc: /* Set the endpoints of OVERLAY to BEG and END in BUFFER.
3948 If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.
3949 If BUFFER is omitted, and OVERLAY is in no buffer, put it in the current
3950 buffer. */)
3951 (Lisp_Object overlay, Lisp_Object beg, Lisp_Object end, Lisp_Object buffer)
3952 {
3953 struct buffer *b, *ob = 0;
3954 Lisp_Object obuffer;
3955 ptrdiff_t count = SPECPDL_INDEX ();
3956 ptrdiff_t n_beg, n_end, o_beg IF_LINT (= 0), o_end IF_LINT (= 0);
3957
3958 CHECK_OVERLAY (overlay);
3959 if (NILP (buffer))
3960 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3961 if (NILP (buffer))
3962 XSETBUFFER (buffer, current_buffer);
3963 CHECK_BUFFER (buffer);
3964
3965 if (NILP (Fbuffer_live_p (buffer)))
3966 error ("Attempt to move overlay to a dead buffer");
3967
3968 if (MARKERP (beg) && !EQ (Fmarker_buffer (beg), buffer))
3969 signal_error ("Marker points into wrong buffer", beg);
3970 if (MARKERP (end) && !EQ (Fmarker_buffer (end), buffer))
3971 signal_error ("Marker points into wrong buffer", end);
3972
3973 CHECK_NUMBER_COERCE_MARKER (beg);
3974 CHECK_NUMBER_COERCE_MARKER (end);
3975
3976 if (XINT (beg) > XINT (end))
3977 {
3978 Lisp_Object temp;
3979 temp = beg; beg = end; end = temp;
3980 }
3981
3982 specbind (Qinhibit_quit, Qt);
3983
3984 obuffer = Fmarker_buffer (OVERLAY_START (overlay));
3985 b = XBUFFER (buffer);
3986
3987 if (!NILP (obuffer))
3988 {
3989 ob = XBUFFER (obuffer);
3990
3991 o_beg = OVERLAY_POSITION (OVERLAY_START (overlay));
3992 o_end = OVERLAY_POSITION (OVERLAY_END (overlay));
3993
3994 unchain_both (ob, overlay);
3995 }
3996
3997 /* Set the overlay boundaries, which may clip them. */
3998 Fset_marker (OVERLAY_START (overlay), beg, buffer);
3999 Fset_marker (OVERLAY_END (overlay), end, buffer);
4000
4001 n_beg = marker_position (OVERLAY_START (overlay));
4002 n_end = marker_position (OVERLAY_END (overlay));
4003
4004 /* If the overlay has changed buffers, do a thorough redisplay. */
4005 if (!EQ (buffer, obuffer))
4006 {
4007 /* Redisplay where the overlay was. */
4008 if (ob)
4009 modify_overlay (ob, o_beg, o_end);
4010
4011 /* Redisplay where the overlay is going to be. */
4012 modify_overlay (b, n_beg, n_end);
4013 }
4014 else
4015 /* Redisplay the area the overlay has just left, or just enclosed. */
4016 {
4017 if (o_beg == n_beg)
4018 modify_overlay (b, o_end, n_end);
4019 else if (o_end == n_end)
4020 modify_overlay (b, o_beg, n_beg);
4021 else
4022 modify_overlay (b, min (o_beg, n_beg), max (o_end, n_end));
4023 }
4024
4025 /* Delete the overlay if it is empty after clipping and has the
4026 evaporate property. */
4027 if (n_beg == n_end && !NILP (Foverlay_get (overlay, Qevaporate)))
4028 return unbind_to (count, Fdelete_overlay (overlay));
4029
4030 /* Put the overlay into the new buffer's overlay lists, first on the
4031 wrong list. */
4032 if (n_end < b->overlay_center)
4033 {
4034 XOVERLAY (overlay)->next = b->overlays_after;
4035 set_buffer_overlays_after (b, XOVERLAY (overlay));
4036 }
4037 else
4038 {
4039 XOVERLAY (overlay)->next = b->overlays_before;
4040 set_buffer_overlays_before (b, XOVERLAY (overlay));
4041 }
4042
4043 /* This puts it in the right list, and in the right order. */
4044 recenter_overlay_lists (b, b->overlay_center);
4045
4046 return unbind_to (count, overlay);
4047 }
4048
4049 DEFUN ("delete-overlay", Fdelete_overlay, Sdelete_overlay, 1, 1, 0,
4050 doc: /* Delete the overlay OVERLAY from its buffer. */)
4051 (Lisp_Object overlay)
4052 {
4053 Lisp_Object buffer;
4054 struct buffer *b;
4055 ptrdiff_t count = SPECPDL_INDEX ();
4056
4057 CHECK_OVERLAY (overlay);
4058
4059 buffer = Fmarker_buffer (OVERLAY_START (overlay));
4060 if (NILP (buffer))
4061 return Qnil;
4062
4063 b = XBUFFER (buffer);
4064 specbind (Qinhibit_quit, Qt);
4065
4066 unchain_both (b, overlay);
4067 drop_overlay (b, XOVERLAY (overlay));
4068
4069 /* When deleting an overlay with before or after strings, turn off
4070 display optimizations for the affected buffer, on the basis that
4071 these strings may contain newlines. This is easier to do than to
4072 check for that situation during redisplay. */
4073 if (!windows_or_buffers_changed
4074 && (!NILP (Foverlay_get (overlay, Qbefore_string))
4075 || !NILP (Foverlay_get (overlay, Qafter_string))))
4076 b->prevent_redisplay_optimizations_p = 1;
4077
4078 return unbind_to (count, Qnil);
4079 }
4080
4081 DEFUN ("delete-all-overlays", Fdelete_all_overlays, Sdelete_all_overlays, 0, 1, 0,
4082 doc: /* Delete all overlays of BUFFER.
4083 BUFFER omitted or nil means delete all overlays of the current
4084 buffer. */)
4085 (Lisp_Object buffer)
4086 {
4087 register struct buffer *buf;
4088
4089 if (NILP (buffer))
4090 buf = current_buffer;
4091 else
4092 {
4093 CHECK_BUFFER (buffer);
4094 buf = XBUFFER (buffer);
4095 }
4096
4097 delete_all_overlays (buf);
4098 return Qnil;
4099 }
4100 \f
4101 /* Overlay dissection functions. */
4102
4103 DEFUN ("overlay-start", Foverlay_start, Soverlay_start, 1, 1, 0,
4104 doc: /* Return the position at which OVERLAY starts. */)
4105 (Lisp_Object overlay)
4106 {
4107 CHECK_OVERLAY (overlay);
4108
4109 return (Fmarker_position (OVERLAY_START (overlay)));
4110 }
4111
4112 DEFUN ("overlay-end", Foverlay_end, Soverlay_end, 1, 1, 0,
4113 doc: /* Return the position at which OVERLAY ends. */)
4114 (Lisp_Object overlay)
4115 {
4116 CHECK_OVERLAY (overlay);
4117
4118 return (Fmarker_position (OVERLAY_END (overlay)));
4119 }
4120
4121 DEFUN ("overlay-buffer", Foverlay_buffer, Soverlay_buffer, 1, 1, 0,
4122 doc: /* Return the buffer OVERLAY belongs to.
4123 Return nil if OVERLAY has been deleted. */)
4124 (Lisp_Object overlay)
4125 {
4126 CHECK_OVERLAY (overlay);
4127
4128 return Fmarker_buffer (OVERLAY_START (overlay));
4129 }
4130
4131 DEFUN ("overlay-properties", Foverlay_properties, Soverlay_properties, 1, 1, 0,
4132 doc: /* Return a list of the properties on OVERLAY.
4133 This is a copy of OVERLAY's plist; modifying its conses has no effect on
4134 OVERLAY. */)
4135 (Lisp_Object overlay)
4136 {
4137 CHECK_OVERLAY (overlay);
4138
4139 return Fcopy_sequence (XOVERLAY (overlay)->plist);
4140 }
4141
4142 \f
4143 DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 1, 0,
4144 doc: /* Return a list of the overlays that contain the character at POS. */)
4145 (Lisp_Object pos)
4146 {
4147 ptrdiff_t len, noverlays;
4148 Lisp_Object *overlay_vec;
4149 Lisp_Object result;
4150
4151 CHECK_NUMBER_COERCE_MARKER (pos);
4152
4153 if (!buffer_has_overlays ())
4154 return Qnil;
4155
4156 len = 10;
4157 /* We can't use alloca here because overlays_at can call xrealloc. */
4158 overlay_vec = xmalloc (len * sizeof *overlay_vec);
4159
4160 /* Put all the overlays we want in a vector in overlay_vec.
4161 Store the length in len. */
4162 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
4163 NULL, NULL, 0);
4164
4165 /* Make a list of them all. */
4166 result = Flist (noverlays, overlay_vec);
4167
4168 xfree (overlay_vec);
4169 return result;
4170 }
4171
4172 DEFUN ("overlays-in", Foverlays_in, Soverlays_in, 2, 2, 0,
4173 doc: /* Return a list of the overlays that overlap the region BEG ... END.
4174 Overlap means that at least one character is contained within the overlay
4175 and also contained within the specified region.
4176 Empty overlays are included in the result if they are located at BEG,
4177 between BEG and END, or at END provided END denotes the position at the
4178 end of the buffer. */)
4179 (Lisp_Object beg, Lisp_Object end)
4180 {
4181 ptrdiff_t len, noverlays;
4182 Lisp_Object *overlay_vec;
4183 Lisp_Object result;
4184
4185 CHECK_NUMBER_COERCE_MARKER (beg);
4186 CHECK_NUMBER_COERCE_MARKER (end);
4187
4188 if (!buffer_has_overlays ())
4189 return Qnil;
4190
4191 len = 10;
4192 overlay_vec = xmalloc (len * sizeof *overlay_vec);
4193
4194 /* Put all the overlays we want in a vector in overlay_vec.
4195 Store the length in len. */
4196 noverlays = overlays_in (XINT (beg), XINT (end), 1, &overlay_vec, &len,
4197 NULL, NULL);
4198
4199 /* Make a list of them all. */
4200 result = Flist (noverlays, overlay_vec);
4201
4202 xfree (overlay_vec);
4203 return result;
4204 }
4205
4206 DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
4207 1, 1, 0,
4208 doc: /* Return the next position after POS where an overlay starts or ends.
4209 If there are no overlay boundaries from POS to (point-max),
4210 the value is (point-max). */)
4211 (Lisp_Object pos)
4212 {
4213 ptrdiff_t i, len, noverlays;
4214 ptrdiff_t endpos;
4215 Lisp_Object *overlay_vec;
4216
4217 CHECK_NUMBER_COERCE_MARKER (pos);
4218
4219 if (!buffer_has_overlays ())
4220 return make_number (ZV);
4221
4222 len = 10;
4223 overlay_vec = xmalloc (len * sizeof *overlay_vec);
4224
4225 /* Put all the overlays we want in a vector in overlay_vec.
4226 Store the length in len.
4227 endpos gets the position where the next overlay starts. */
4228 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
4229 &endpos, 0, 1);
4230
4231 /* If any of these overlays ends before endpos,
4232 use its ending point instead. */
4233 for (i = 0; i < noverlays; i++)
4234 {
4235 Lisp_Object oend;
4236 ptrdiff_t oendpos;
4237
4238 oend = OVERLAY_END (overlay_vec[i]);
4239 oendpos = OVERLAY_POSITION (oend);
4240 if (oendpos < endpos)
4241 endpos = oendpos;
4242 }
4243
4244 xfree (overlay_vec);
4245 return make_number (endpos);
4246 }
4247
4248 DEFUN ("previous-overlay-change", Fprevious_overlay_change,
4249 Sprevious_overlay_change, 1, 1, 0,
4250 doc: /* Return the previous position before POS where an overlay starts or ends.
4251 If there are no overlay boundaries from (point-min) to POS,
4252 the value is (point-min). */)
4253 (Lisp_Object pos)
4254 {
4255 ptrdiff_t prevpos;
4256 Lisp_Object *overlay_vec;
4257 ptrdiff_t len;
4258
4259 CHECK_NUMBER_COERCE_MARKER (pos);
4260
4261 if (!buffer_has_overlays ())
4262 return make_number (BEGV);
4263
4264 /* At beginning of buffer, we know the answer;
4265 avoid bug subtracting 1 below. */
4266 if (XINT (pos) == BEGV)
4267 return pos;
4268
4269 len = 10;
4270 overlay_vec = xmalloc (len * sizeof *overlay_vec);
4271
4272 /* Put all the overlays we want in a vector in overlay_vec.
4273 Store the length in len.
4274 prevpos gets the position of the previous change. */
4275 overlays_at (XINT (pos), 1, &overlay_vec, &len,
4276 0, &prevpos, 1);
4277
4278 xfree (overlay_vec);
4279 return make_number (prevpos);
4280 }
4281 \f
4282 /* These functions are for debugging overlays. */
4283
4284 DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0,
4285 doc: /* Return a pair of lists giving all the overlays of the current buffer.
4286 The car has all the overlays before the overlay center;
4287 the cdr has all the overlays after the overlay center.
4288 Recentering overlays moves overlays between these lists.
4289 The lists you get are copies, so that changing them has no effect.
4290 However, the overlays you get are the real objects that the buffer uses. */)
4291 (void)
4292 {
4293 struct Lisp_Overlay *ol;
4294 Lisp_Object before = Qnil, after = Qnil, tmp;
4295
4296 for (ol = current_buffer->overlays_before; ol; ol = ol->next)
4297 {
4298 XSETMISC (tmp, ol);
4299 before = Fcons (tmp, before);
4300 }
4301 for (ol = current_buffer->overlays_after; ol; ol = ol->next)
4302 {
4303 XSETMISC (tmp, ol);
4304 after = Fcons (tmp, after);
4305 }
4306
4307 return Fcons (Fnreverse (before), Fnreverse (after));
4308 }
4309
4310 DEFUN ("overlay-recenter", Foverlay_recenter, Soverlay_recenter, 1, 1, 0,
4311 doc: /* Recenter the overlays of the current buffer around position POS.
4312 That makes overlay lookup faster for positions near POS (but perhaps slower
4313 for positions far away from POS). */)
4314 (Lisp_Object pos)
4315 {
4316 ptrdiff_t p;
4317 CHECK_NUMBER_COERCE_MARKER (pos);
4318
4319 p = clip_to_bounds (PTRDIFF_MIN, XINT (pos), PTRDIFF_MAX);
4320 recenter_overlay_lists (current_buffer, p);
4321 return Qnil;
4322 }
4323 \f
4324 DEFUN ("overlay-get", Foverlay_get, Soverlay_get, 2, 2, 0,
4325 doc: /* Get the property of overlay OVERLAY with property name PROP. */)
4326 (Lisp_Object overlay, Lisp_Object prop)
4327 {
4328 CHECK_OVERLAY (overlay);
4329 return lookup_char_property (XOVERLAY (overlay)->plist, prop, 0);
4330 }
4331
4332 DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0,
4333 doc: /* Set one property of overlay OVERLAY: give property PROP value VALUE.
4334 VALUE will be returned.*/)
4335 (Lisp_Object overlay, Lisp_Object prop, Lisp_Object value)
4336 {
4337 Lisp_Object tail, buffer;
4338 bool changed;
4339
4340 CHECK_OVERLAY (overlay);
4341
4342 buffer = Fmarker_buffer (OVERLAY_START (overlay));
4343
4344 for (tail = XOVERLAY (overlay)->plist;
4345 CONSP (tail) && CONSP (XCDR (tail));
4346 tail = XCDR (XCDR (tail)))
4347 if (EQ (XCAR (tail), prop))
4348 {
4349 changed = !EQ (XCAR (XCDR (tail)), value);
4350 XSETCAR (XCDR (tail), value);
4351 goto found;
4352 }
4353 /* It wasn't in the list, so add it to the front. */
4354 changed = !NILP (value);
4355 set_overlay_plist
4356 (overlay, Fcons (prop, Fcons (value, XOVERLAY (overlay)->plist)));
4357 found:
4358 if (! NILP (buffer))
4359 {
4360 if (changed)
4361 modify_overlay (XBUFFER (buffer),
4362 marker_position (OVERLAY_START (overlay)),
4363 marker_position (OVERLAY_END (overlay)));
4364 if (EQ (prop, Qevaporate) && ! NILP (value)
4365 && (OVERLAY_POSITION (OVERLAY_START (overlay))
4366 == OVERLAY_POSITION (OVERLAY_END (overlay))))
4367 Fdelete_overlay (overlay);
4368 }
4369
4370 return value;
4371 }
4372 \f
4373 /* Subroutine of report_overlay_modification. */
4374
4375 /* Lisp vector holding overlay hook functions to call.
4376 Vector elements come in pairs.
4377 Each even-index element is a list of hook functions.
4378 The following odd-index element is the overlay they came from.
4379
4380 Before the buffer change, we fill in this vector
4381 as we call overlay hook functions.
4382 After the buffer change, we get the functions to call from this vector.
4383 This way we always call the same functions before and after the change. */
4384 static Lisp_Object last_overlay_modification_hooks;
4385
4386 /* Number of elements actually used in last_overlay_modification_hooks. */
4387 static ptrdiff_t last_overlay_modification_hooks_used;
4388
4389 /* Add one functionlist/overlay pair
4390 to the end of last_overlay_modification_hooks. */
4391
4392 static void
4393 add_overlay_mod_hooklist (Lisp_Object functionlist, Lisp_Object overlay)
4394 {
4395 ptrdiff_t oldsize = ASIZE (last_overlay_modification_hooks);
4396
4397 if (oldsize - 1 <= last_overlay_modification_hooks_used)
4398 last_overlay_modification_hooks =
4399 larger_vector (last_overlay_modification_hooks, 2, -1);
4400 ASET (last_overlay_modification_hooks, last_overlay_modification_hooks_used,
4401 functionlist); last_overlay_modification_hooks_used++;
4402 ASET (last_overlay_modification_hooks, last_overlay_modification_hooks_used,
4403 overlay); last_overlay_modification_hooks_used++;
4404 }
4405 \f
4406 /* Run the modification-hooks of overlays that include
4407 any part of the text in START to END.
4408 If this change is an insertion, also
4409 run the insert-before-hooks of overlay starting at END,
4410 and the insert-after-hooks of overlay ending at START.
4411
4412 This is called both before and after the modification.
4413 AFTER is true when we call after the modification.
4414
4415 ARG1, ARG2, ARG3 are arguments to pass to the hook functions.
4416 When AFTER is nonzero, they are the start position,
4417 the position after the inserted new text,
4418 and the length of deleted or replaced old text. */
4419
4420 void
4421 report_overlay_modification (Lisp_Object start, Lisp_Object end, bool after,
4422 Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
4423 {
4424 Lisp_Object prop, overlay;
4425 struct Lisp_Overlay *tail;
4426 /* True if this change is an insertion. */
4427 bool insertion = (after ? XFASTINT (arg3) == 0 : EQ (start, end));
4428 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4429
4430 overlay = Qnil;
4431 tail = NULL;
4432
4433 /* We used to run the functions as soon as we found them and only register
4434 them in last_overlay_modification_hooks for the purpose of the `after'
4435 case. But running elisp code as we traverse the list of overlays is
4436 painful because the list can be modified by the elisp code so we had to
4437 copy at several places. We now simply do a read-only traversal that
4438 only collects the functions to run and we run them afterwards. It's
4439 simpler, especially since all the code was already there. -stef */
4440
4441 if (!after)
4442 {
4443 /* We are being called before a change.
4444 Scan the overlays to find the functions to call. */
4445 last_overlay_modification_hooks_used = 0;
4446 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
4447 {
4448 ptrdiff_t startpos, endpos;
4449 Lisp_Object ostart, oend;
4450
4451 XSETMISC (overlay, tail);
4452
4453 ostart = OVERLAY_START (overlay);
4454 oend = OVERLAY_END (overlay);
4455 endpos = OVERLAY_POSITION (oend);
4456 if (XFASTINT (start) > endpos)
4457 break;
4458 startpos = OVERLAY_POSITION (ostart);
4459 if (insertion && (XFASTINT (start) == startpos
4460 || XFASTINT (end) == startpos))
4461 {
4462 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
4463 if (!NILP (prop))
4464 add_overlay_mod_hooklist (prop, overlay);
4465 }
4466 if (insertion && (XFASTINT (start) == endpos
4467 || XFASTINT (end) == endpos))
4468 {
4469 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
4470 if (!NILP (prop))
4471 add_overlay_mod_hooklist (prop, overlay);
4472 }
4473 /* Test for intersecting intervals. This does the right thing
4474 for both insertion and deletion. */
4475 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
4476 {
4477 prop = Foverlay_get (overlay, Qmodification_hooks);
4478 if (!NILP (prop))
4479 add_overlay_mod_hooklist (prop, overlay);
4480 }
4481 }
4482
4483 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
4484 {
4485 ptrdiff_t startpos, endpos;
4486 Lisp_Object ostart, oend;
4487
4488 XSETMISC (overlay, tail);
4489
4490 ostart = OVERLAY_START (overlay);
4491 oend = OVERLAY_END (overlay);
4492 startpos = OVERLAY_POSITION (ostart);
4493 endpos = OVERLAY_POSITION (oend);
4494 if (XFASTINT (end) < startpos)
4495 break;
4496 if (insertion && (XFASTINT (start) == startpos
4497 || XFASTINT (end) == startpos))
4498 {
4499 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
4500 if (!NILP (prop))
4501 add_overlay_mod_hooklist (prop, overlay);
4502 }
4503 if (insertion && (XFASTINT (start) == endpos
4504 || XFASTINT (end) == endpos))
4505 {
4506 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
4507 if (!NILP (prop))
4508 add_overlay_mod_hooklist (prop, overlay);
4509 }
4510 /* Test for intersecting intervals. This does the right thing
4511 for both insertion and deletion. */
4512 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
4513 {
4514 prop = Foverlay_get (overlay, Qmodification_hooks);
4515 if (!NILP (prop))
4516 add_overlay_mod_hooklist (prop, overlay);
4517 }
4518 }
4519 }
4520
4521 GCPRO4 (overlay, arg1, arg2, arg3);
4522 {
4523 /* Call the functions recorded in last_overlay_modification_hooks.
4524 First copy the vector contents, in case some of these hooks
4525 do subsequent modification of the buffer. */
4526 ptrdiff_t size = last_overlay_modification_hooks_used;
4527 Lisp_Object *copy = alloca (size * sizeof *copy);
4528 ptrdiff_t i;
4529
4530 memcpy (copy, XVECTOR (last_overlay_modification_hooks)->contents,
4531 size * word_size);
4532 gcpro1.var = copy;
4533 gcpro1.nvars = size;
4534
4535 for (i = 0; i < size;)
4536 {
4537 Lisp_Object prop_i, overlay_i;
4538 prop_i = copy[i++];
4539 overlay_i = copy[i++];
4540 call_overlay_mod_hooks (prop_i, overlay_i, after, arg1, arg2, arg3);
4541 }
4542 }
4543 UNGCPRO;
4544 }
4545
4546 static void
4547 call_overlay_mod_hooks (Lisp_Object list, Lisp_Object overlay, bool after,
4548 Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
4549 {
4550 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4551
4552 GCPRO4 (list, arg1, arg2, arg3);
4553
4554 while (CONSP (list))
4555 {
4556 if (NILP (arg3))
4557 call4 (XCAR (list), overlay, after ? Qt : Qnil, arg1, arg2);
4558 else
4559 call5 (XCAR (list), overlay, after ? Qt : Qnil, arg1, arg2, arg3);
4560 list = XCDR (list);
4561 }
4562 UNGCPRO;
4563 }
4564
4565 /* Delete any zero-sized overlays at position POS, if the `evaporate'
4566 property is set. */
4567 void
4568 evaporate_overlays (ptrdiff_t pos)
4569 {
4570 Lisp_Object overlay, hit_list;
4571 struct Lisp_Overlay *tail;
4572
4573 hit_list = Qnil;
4574 if (pos <= current_buffer->overlay_center)
4575 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
4576 {
4577 ptrdiff_t endpos;
4578 XSETMISC (overlay, tail);
4579 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
4580 if (endpos < pos)
4581 break;
4582 if (endpos == pos && OVERLAY_POSITION (OVERLAY_START (overlay)) == pos
4583 && ! NILP (Foverlay_get (overlay, Qevaporate)))
4584 hit_list = Fcons (overlay, hit_list);
4585 }
4586 else
4587 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
4588 {
4589 ptrdiff_t startpos;
4590 XSETMISC (overlay, tail);
4591 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
4592 if (startpos > pos)
4593 break;
4594 if (startpos == pos && OVERLAY_POSITION (OVERLAY_END (overlay)) == pos
4595 && ! NILP (Foverlay_get (overlay, Qevaporate)))
4596 hit_list = Fcons (overlay, hit_list);
4597 }
4598 for (; CONSP (hit_list); hit_list = XCDR (hit_list))
4599 Fdelete_overlay (XCAR (hit_list));
4600 }
4601
4602 /***********************************************************************
4603 Allocation with mmap
4604 ***********************************************************************/
4605
4606 #ifdef USE_MMAP_FOR_BUFFERS
4607
4608 #include <sys/mman.h>
4609
4610 #ifndef MAP_ANON
4611 #ifdef MAP_ANONYMOUS
4612 #define MAP_ANON MAP_ANONYMOUS
4613 #else
4614 #define MAP_ANON 0
4615 #endif
4616 #endif
4617
4618 #ifndef MAP_FAILED
4619 #define MAP_FAILED ((void *) -1)
4620 #endif
4621
4622 #if MAP_ANON == 0
4623 #include <fcntl.h>
4624 #endif
4625
4626 #include "coding.h"
4627
4628
4629 /* Memory is allocated in regions which are mapped using mmap(2).
4630 The current implementation lets the system select mapped
4631 addresses; we're not using MAP_FIXED in general, except when
4632 trying to enlarge regions.
4633
4634 Each mapped region starts with a mmap_region structure, the user
4635 area starts after that structure, aligned to MEM_ALIGN.
4636
4637 +-----------------------+
4638 | struct mmap_info + |
4639 | padding |
4640 +-----------------------+
4641 | user data |
4642 | |
4643 | |
4644 +-----------------------+ */
4645
4646 struct mmap_region
4647 {
4648 /* User-specified size. */
4649 size_t nbytes_specified;
4650
4651 /* Number of bytes mapped */
4652 size_t nbytes_mapped;
4653
4654 /* Pointer to the location holding the address of the memory
4655 allocated with the mmap'd block. The variable actually points
4656 after this structure. */
4657 void **var;
4658
4659 /* Next and previous in list of all mmap'd regions. */
4660 struct mmap_region *next, *prev;
4661 };
4662
4663 /* Doubly-linked list of mmap'd regions. */
4664
4665 static struct mmap_region *mmap_regions;
4666
4667 /* File descriptor for mmap. If we don't have anonymous mapping,
4668 /dev/zero will be opened on it. */
4669
4670 static int mmap_fd;
4671
4672 /* Temporary storage for mmap_set_vars, see there. */
4673
4674 static struct mmap_region *mmap_regions_1;
4675 static int mmap_fd_1;
4676
4677 /* Page size on this system. */
4678
4679 static int mmap_page_size;
4680
4681 /* 1 means mmap has been initialized. */
4682
4683 static bool mmap_initialized_p;
4684
4685 /* Value is X rounded up to the next multiple of N. */
4686
4687 #define ROUND(X, N) (((X) + (N) - 1) / (N) * (N))
4688
4689 /* Size of mmap_region structure plus padding. */
4690
4691 #define MMAP_REGION_STRUCT_SIZE \
4692 ROUND (sizeof (struct mmap_region), MEM_ALIGN)
4693
4694 /* Given a pointer P to the start of the user-visible part of a mapped
4695 region, return a pointer to the start of the region. */
4696
4697 #define MMAP_REGION(P) \
4698 ((struct mmap_region *) ((char *) (P) - MMAP_REGION_STRUCT_SIZE))
4699
4700 /* Given a pointer P to the start of a mapped region, return a pointer
4701 to the start of the user-visible part of the region. */
4702
4703 #define MMAP_USER_AREA(P) \
4704 ((void *) ((char *) (P) + MMAP_REGION_STRUCT_SIZE))
4705
4706 #define MEM_ALIGN sizeof (double)
4707
4708 /* Predicate returning true if part of the address range [START .. END]
4709 is currently mapped. Used to prevent overwriting an existing
4710 memory mapping.
4711
4712 Default is to conservatively assume the address range is occupied by
4713 something else. This can be overridden by system configuration
4714 files if system-specific means to determine this exists. */
4715
4716 #ifndef MMAP_ALLOCATED_P
4717 #define MMAP_ALLOCATED_P(start, end) 1
4718 #endif
4719
4720 /* Perform necessary initializations for the use of mmap. */
4721
4722 static void
4723 mmap_init (void)
4724 {
4725 #if MAP_ANON == 0
4726 /* The value of mmap_fd is initially 0 in temacs, and -1
4727 in a dumped Emacs. */
4728 if (mmap_fd <= 0)
4729 {
4730 /* No anonymous mmap -- we need the file descriptor. */
4731 mmap_fd = emacs_open ("/dev/zero", O_RDONLY, 0);
4732 if (mmap_fd == -1)
4733 fatal ("Cannot open /dev/zero: %s", emacs_strerror (errno));
4734 }
4735 #endif /* MAP_ANON == 0 */
4736
4737 if (mmap_initialized_p)
4738 return;
4739 mmap_initialized_p = 1;
4740
4741 #if MAP_ANON != 0
4742 mmap_fd = -1;
4743 #endif
4744
4745 mmap_page_size = getpagesize ();
4746 }
4747
4748 /* Return a region overlapping address range START...END, or null if
4749 none. END is not including, i.e. the last byte in the range
4750 is at END - 1. */
4751
4752 static struct mmap_region *
4753 mmap_find (void *start, void *end)
4754 {
4755 struct mmap_region *r;
4756 char *s = start, *e = end;
4757
4758 for (r = mmap_regions; r; r = r->next)
4759 {
4760 char *rstart = (char *) r;
4761 char *rend = rstart + r->nbytes_mapped;
4762
4763 if (/* First byte of range, i.e. START, in this region? */
4764 (s >= rstart && s < rend)
4765 /* Last byte of range, i.e. END - 1, in this region? */
4766 || (e > rstart && e <= rend)
4767 /* First byte of this region in the range? */
4768 || (rstart >= s && rstart < e)
4769 /* Last byte of this region in the range? */
4770 || (rend > s && rend <= e))
4771 break;
4772 }
4773
4774 return r;
4775 }
4776
4777
4778 /* Unmap a region. P is a pointer to the start of the user-araa of
4779 the region. */
4780
4781 static void
4782 mmap_free_1 (struct mmap_region *r)
4783 {
4784 if (r->next)
4785 r->next->prev = r->prev;
4786 if (r->prev)
4787 r->prev->next = r->next;
4788 else
4789 mmap_regions = r->next;
4790
4791 if (munmap (r, r->nbytes_mapped) == -1)
4792 fprintf (stderr, "munmap: %s\n", emacs_strerror (errno));
4793 }
4794
4795
4796 /* Enlarge region R by NPAGES pages. NPAGES < 0 means shrink R.
4797 Value is true if successful. */
4798
4799 static bool
4800 mmap_enlarge (struct mmap_region *r, int npages)
4801 {
4802 char *region_end = (char *) r + r->nbytes_mapped;
4803 size_t nbytes;
4804 bool success = 0;
4805
4806 if (npages < 0)
4807 {
4808 /* Unmap pages at the end of the region. */
4809 nbytes = - npages * mmap_page_size;
4810 if (munmap (region_end - nbytes, nbytes) == -1)
4811 fprintf (stderr, "munmap: %s\n", emacs_strerror (errno));
4812 else
4813 {
4814 r->nbytes_mapped -= nbytes;
4815 success = 1;
4816 }
4817 }
4818 else if (npages > 0)
4819 {
4820 nbytes = npages * mmap_page_size;
4821
4822 /* Try to map additional pages at the end of the region. We
4823 cannot do this if the address range is already occupied by
4824 something else because mmap deletes any previous mapping.
4825 I'm not sure this is worth doing, let's see. */
4826 if (!MMAP_ALLOCATED_P (region_end, region_end + nbytes))
4827 {
4828 void *p;
4829
4830 p = mmap (region_end, nbytes, PROT_READ | PROT_WRITE,
4831 MAP_ANON | MAP_PRIVATE | MAP_FIXED, mmap_fd, 0);
4832 if (p == MAP_FAILED)
4833 ; /* fprintf (stderr, "mmap: %s\n", emacs_strerror (errno)); */
4834 else if (p != region_end)
4835 {
4836 /* Kernels are free to choose a different address. In
4837 that case, unmap what we've mapped above; we have
4838 no use for it. */
4839 if (munmap (p, nbytes) == -1)
4840 fprintf (stderr, "munmap: %s\n", emacs_strerror (errno));
4841 }
4842 else
4843 {
4844 r->nbytes_mapped += nbytes;
4845 success = 1;
4846 }
4847 }
4848 }
4849
4850 return success;
4851 }
4852
4853
4854 /* Set or reset variables holding references to mapped regions.
4855 If not RESTORE_P, set all variables to null. If RESTORE_P, set all
4856 variables to the start of the user-areas of mapped regions.
4857
4858 This function is called from Fdump_emacs to ensure that the dumped
4859 Emacs doesn't contain references to memory that won't be mapped
4860 when Emacs starts. */
4861
4862 void
4863 mmap_set_vars (bool restore_p)
4864 {
4865 struct mmap_region *r;
4866
4867 if (restore_p)
4868 {
4869 mmap_regions = mmap_regions_1;
4870 mmap_fd = mmap_fd_1;
4871 for (r = mmap_regions; r; r = r->next)
4872 *r->var = MMAP_USER_AREA (r);
4873 }
4874 else
4875 {
4876 for (r = mmap_regions; r; r = r->next)
4877 *r->var = NULL;
4878 mmap_regions_1 = mmap_regions;
4879 mmap_regions = NULL;
4880 mmap_fd_1 = mmap_fd;
4881 mmap_fd = -1;
4882 }
4883 }
4884
4885
4886 /* Allocate a block of storage large enough to hold NBYTES bytes of
4887 data. A pointer to the data is returned in *VAR. VAR is thus the
4888 address of some variable which will use the data area.
4889
4890 The allocation of 0 bytes is valid.
4891
4892 If we can't allocate the necessary memory, set *VAR to null, and
4893 return null. */
4894
4895 static void *
4896 mmap_alloc (void **var, size_t nbytes)
4897 {
4898 void *p;
4899 size_t map;
4900
4901 mmap_init ();
4902
4903 map = ROUND (nbytes + MMAP_REGION_STRUCT_SIZE, mmap_page_size);
4904 p = mmap (NULL, map, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE,
4905 mmap_fd, 0);
4906
4907 if (p == MAP_FAILED)
4908 {
4909 if (errno != ENOMEM)
4910 fprintf (stderr, "mmap: %s\n", emacs_strerror (errno));
4911 p = NULL;
4912 }
4913 else
4914 {
4915 struct mmap_region *r = p;
4916
4917 r->nbytes_specified = nbytes;
4918 r->nbytes_mapped = map;
4919 r->var = var;
4920 r->prev = NULL;
4921 r->next = mmap_regions;
4922 if (r->next)
4923 r->next->prev = r;
4924 mmap_regions = r;
4925
4926 p = MMAP_USER_AREA (p);
4927 }
4928
4929 return *var = p;
4930 }
4931
4932
4933 /* Free a block of relocatable storage whose data is pointed to by
4934 PTR. Store 0 in *PTR to show there's no block allocated. */
4935
4936 static void
4937 mmap_free (void **var)
4938 {
4939 mmap_init ();
4940
4941 if (*var)
4942 {
4943 mmap_free_1 (MMAP_REGION (*var));
4944 *var = NULL;
4945 }
4946 }
4947
4948
4949 /* Given a pointer at address VAR to data allocated with mmap_alloc,
4950 resize it to size NBYTES. Change *VAR to reflect the new block,
4951 and return this value. If more memory cannot be allocated, then
4952 leave *VAR unchanged, and return null. */
4953
4954 static void *
4955 mmap_realloc (void **var, size_t nbytes)
4956 {
4957 void *result;
4958
4959 mmap_init ();
4960
4961 if (*var == NULL)
4962 result = mmap_alloc (var, nbytes);
4963 else if (nbytes == 0)
4964 {
4965 mmap_free (var);
4966 result = mmap_alloc (var, nbytes);
4967 }
4968 else
4969 {
4970 struct mmap_region *r = MMAP_REGION (*var);
4971 size_t room = r->nbytes_mapped - MMAP_REGION_STRUCT_SIZE;
4972
4973 if (room < nbytes)
4974 {
4975 /* Must enlarge. */
4976 void *old_ptr = *var;
4977
4978 /* Try to map additional pages at the end of the region.
4979 If that fails, allocate a new region, copy data
4980 from the old region, then free it. */
4981 if (mmap_enlarge (r, (ROUND (nbytes - room, mmap_page_size)
4982 / mmap_page_size)))
4983 {
4984 r->nbytes_specified = nbytes;
4985 *var = result = old_ptr;
4986 }
4987 else if (mmap_alloc (var, nbytes))
4988 {
4989 memcpy (*var, old_ptr, r->nbytes_specified);
4990 mmap_free_1 (MMAP_REGION (old_ptr));
4991 result = *var;
4992 r = MMAP_REGION (result);
4993 r->nbytes_specified = nbytes;
4994 }
4995 else
4996 {
4997 *var = old_ptr;
4998 result = NULL;
4999 }
5000 }
5001 else if (room - nbytes >= mmap_page_size)
5002 {
5003 /* Shrinking by at least a page. Let's give some
5004 memory back to the system.
5005
5006 The extra parens are to make the division happens first,
5007 on positive values, so we know it will round towards
5008 zero. */
5009 mmap_enlarge (r, - ((room - nbytes) / mmap_page_size));
5010 result = *var;
5011 r->nbytes_specified = nbytes;
5012 }
5013 else
5014 {
5015 /* Leave it alone. */
5016 result = *var;
5017 r->nbytes_specified = nbytes;
5018 }
5019 }
5020
5021 return result;
5022 }
5023
5024
5025 #endif /* USE_MMAP_FOR_BUFFERS */
5026
5027
5028 \f
5029 /***********************************************************************
5030 Buffer-text Allocation
5031 ***********************************************************************/
5032
5033 /* Allocate NBYTES bytes for buffer B's text buffer. */
5034
5035 static void
5036 alloc_buffer_text (struct buffer *b, ptrdiff_t nbytes)
5037 {
5038 void *p;
5039
5040 block_input ();
5041 #if defined USE_MMAP_FOR_BUFFERS
5042 p = mmap_alloc ((void **) &b->text->beg, nbytes);
5043 #elif defined REL_ALLOC
5044 p = r_alloc ((void **) &b->text->beg, nbytes);
5045 #else
5046 p = xmalloc (nbytes);
5047 #endif
5048
5049 if (p == NULL)
5050 {
5051 unblock_input ();
5052 memory_full (nbytes);
5053 }
5054
5055 b->text->beg = p;
5056 unblock_input ();
5057 }
5058
5059 /* Enlarge buffer B's text buffer by DELTA bytes. DELTA < 0 means
5060 shrink it. */
5061
5062 void
5063 enlarge_buffer_text (struct buffer *b, ptrdiff_t delta)
5064 {
5065 void *p;
5066 ptrdiff_t nbytes = (BUF_Z_BYTE (b) - BUF_BEG_BYTE (b) + BUF_GAP_SIZE (b) + 1
5067 + delta);
5068 block_input ();
5069 #if defined USE_MMAP_FOR_BUFFERS
5070 p = mmap_realloc ((void **) &b->text->beg, nbytes);
5071 #elif defined REL_ALLOC
5072 p = r_re_alloc ((void **) &b->text->beg, nbytes);
5073 #else
5074 p = xrealloc (b->text->beg, nbytes);
5075 #endif
5076
5077 if (p == NULL)
5078 {
5079 unblock_input ();
5080 memory_full (nbytes);
5081 }
5082
5083 BUF_BEG_ADDR (b) = p;
5084 unblock_input ();
5085 }
5086
5087
5088 /* Free buffer B's text buffer. */
5089
5090 static void
5091 free_buffer_text (struct buffer *b)
5092 {
5093 block_input ();
5094
5095 #if defined USE_MMAP_FOR_BUFFERS
5096 mmap_free ((void **) &b->text->beg);
5097 #elif defined REL_ALLOC
5098 r_alloc_free ((void **) &b->text->beg);
5099 #else
5100 xfree (b->text->beg);
5101 #endif
5102
5103 BUF_BEG_ADDR (b) = NULL;
5104 unblock_input ();
5105 }
5106
5107
5108 \f
5109 /***********************************************************************
5110 Initialization
5111 ***********************************************************************/
5112
5113 void
5114 init_buffer_once (void)
5115 {
5116 int idx;
5117
5118 memset (buffer_permanent_local_flags, 0, sizeof buffer_permanent_local_flags);
5119
5120 /* Make sure all markable slots in buffer_defaults
5121 are initialized reasonably, so mark_buffer won't choke. */
5122 reset_buffer (&buffer_defaults);
5123 eassert (EQ (BVAR (&buffer_defaults, name), make_number (0)));
5124 reset_buffer_local_variables (&buffer_defaults, 1);
5125 eassert (EQ (BVAR (&buffer_local_symbols, name), make_number (0)));
5126 reset_buffer (&buffer_local_symbols);
5127 reset_buffer_local_variables (&buffer_local_symbols, 1);
5128 /* Prevent GC from getting confused. */
5129 buffer_defaults.text = &buffer_defaults.own_text;
5130 buffer_local_symbols.text = &buffer_local_symbols.own_text;
5131 /* No one will share the text with these buffers, but let's play it safe. */
5132 buffer_defaults.indirections = 0;
5133 buffer_local_symbols.indirections = 0;
5134 /* Likewise no one will display them. */
5135 buffer_defaults.window_count = 0;
5136 buffer_local_symbols.window_count = 0;
5137 set_buffer_intervals (&buffer_defaults, NULL);
5138 set_buffer_intervals (&buffer_local_symbols, NULL);
5139 /* This is not strictly necessary, but let's make them initialized. */
5140 bset_name (&buffer_defaults, build_pure_c_string (" *buffer-defaults*"));
5141 bset_name (&buffer_local_symbols, build_pure_c_string (" *buffer-local-symbols*"));
5142 BUFFER_PVEC_INIT (&buffer_defaults);
5143 BUFFER_PVEC_INIT (&buffer_local_symbols);
5144
5145 /* Set up the default values of various buffer slots. */
5146 /* Must do these before making the first buffer! */
5147
5148 /* real setup is done in bindings.el */
5149 bset_mode_line_format (&buffer_defaults, build_pure_c_string ("%-"));
5150 bset_header_line_format (&buffer_defaults, Qnil);
5151 bset_abbrev_mode (&buffer_defaults, Qnil);
5152 bset_overwrite_mode (&buffer_defaults, Qnil);
5153 bset_case_fold_search (&buffer_defaults, Qt);
5154 bset_auto_fill_function (&buffer_defaults, Qnil);
5155 bset_selective_display (&buffer_defaults, Qnil);
5156 bset_selective_display_ellipses (&buffer_defaults, Qt);
5157 bset_abbrev_table (&buffer_defaults, Qnil);
5158 bset_display_table (&buffer_defaults, Qnil);
5159 bset_undo_list (&buffer_defaults, Qnil);
5160 bset_mark_active (&buffer_defaults, Qnil);
5161 bset_file_format (&buffer_defaults, Qnil);
5162 bset_auto_save_file_format (&buffer_defaults, Qt);
5163 set_buffer_overlays_before (&buffer_defaults, NULL);
5164 set_buffer_overlays_after (&buffer_defaults, NULL);
5165 buffer_defaults.overlay_center = BEG;
5166
5167 XSETFASTINT (BVAR (&buffer_defaults, tab_width), 8);
5168 bset_truncate_lines (&buffer_defaults, Qnil);
5169 bset_word_wrap (&buffer_defaults, Qnil);
5170 bset_ctl_arrow (&buffer_defaults, Qt);
5171 bset_bidi_display_reordering (&buffer_defaults, Qt);
5172 bset_bidi_paragraph_direction (&buffer_defaults, Qnil);
5173 bset_cursor_type (&buffer_defaults, Qt);
5174 bset_extra_line_spacing (&buffer_defaults, Qnil);
5175 bset_cursor_in_non_selected_windows (&buffer_defaults, Qt);
5176
5177 bset_enable_multibyte_characters (&buffer_defaults, Qt);
5178 bset_buffer_file_coding_system (&buffer_defaults, Qnil);
5179 XSETFASTINT (BVAR (&buffer_defaults, fill_column), 70);
5180 XSETFASTINT (BVAR (&buffer_defaults, left_margin), 0);
5181 bset_cache_long_scans (&buffer_defaults, Qt);
5182 bset_file_truename (&buffer_defaults, Qnil);
5183 XSETFASTINT (BVAR (&buffer_defaults, display_count), 0);
5184 XSETFASTINT (BVAR (&buffer_defaults, left_margin_cols), 0);
5185 XSETFASTINT (BVAR (&buffer_defaults, right_margin_cols), 0);
5186 bset_left_fringe_width (&buffer_defaults, Qnil);
5187 bset_right_fringe_width (&buffer_defaults, Qnil);
5188 bset_fringes_outside_margins (&buffer_defaults, Qnil);
5189 bset_scroll_bar_width (&buffer_defaults, Qnil);
5190 bset_vertical_scroll_bar_type (&buffer_defaults, Qt);
5191 bset_indicate_empty_lines (&buffer_defaults, Qnil);
5192 bset_indicate_buffer_boundaries (&buffer_defaults, Qnil);
5193 bset_fringe_indicator_alist (&buffer_defaults, Qnil);
5194 bset_fringe_cursor_alist (&buffer_defaults, Qnil);
5195 bset_scroll_up_aggressively (&buffer_defaults, Qnil);
5196 bset_scroll_down_aggressively (&buffer_defaults, Qnil);
5197 bset_display_time (&buffer_defaults, Qnil);
5198
5199 /* Assign the local-flags to the slots that have default values.
5200 The local flag is a bit that is used in the buffer
5201 to say that it has its own local value for the slot.
5202 The local flag bits are in the local_var_flags slot of the buffer. */
5203
5204 /* Nothing can work if this isn't true */
5205 { verify (sizeof (EMACS_INT) == word_size); }
5206
5207 /* 0 means not a lisp var, -1 means always local, else mask */
5208 memset (&buffer_local_flags, 0, sizeof buffer_local_flags);
5209 bset_filename (&buffer_local_flags, make_number (-1));
5210 bset_directory (&buffer_local_flags, make_number (-1));
5211 bset_backed_up (&buffer_local_flags, make_number (-1));
5212 bset_save_length (&buffer_local_flags, make_number (-1));
5213 bset_auto_save_file_name (&buffer_local_flags, make_number (-1));
5214 bset_read_only (&buffer_local_flags, make_number (-1));
5215 bset_major_mode (&buffer_local_flags, make_number (-1));
5216 bset_mode_name (&buffer_local_flags, make_number (-1));
5217 bset_undo_list (&buffer_local_flags, make_number (-1));
5218 bset_mark_active (&buffer_local_flags, make_number (-1));
5219 bset_point_before_scroll (&buffer_local_flags, make_number (-1));
5220 bset_file_truename (&buffer_local_flags, make_number (-1));
5221 bset_invisibility_spec (&buffer_local_flags, make_number (-1));
5222 bset_file_format (&buffer_local_flags, make_number (-1));
5223 bset_auto_save_file_format (&buffer_local_flags, make_number (-1));
5224 bset_display_count (&buffer_local_flags, make_number (-1));
5225 bset_display_time (&buffer_local_flags, make_number (-1));
5226 bset_enable_multibyte_characters (&buffer_local_flags, make_number (-1));
5227
5228 idx = 1;
5229 XSETFASTINT (BVAR (&buffer_local_flags, mode_line_format), idx); ++idx;
5230 XSETFASTINT (BVAR (&buffer_local_flags, abbrev_mode), idx); ++idx;
5231 XSETFASTINT (BVAR (&buffer_local_flags, overwrite_mode), idx); ++idx;
5232 XSETFASTINT (BVAR (&buffer_local_flags, case_fold_search), idx); ++idx;
5233 XSETFASTINT (BVAR (&buffer_local_flags, auto_fill_function), idx); ++idx;
5234 XSETFASTINT (BVAR (&buffer_local_flags, selective_display), idx); ++idx;
5235 XSETFASTINT (BVAR (&buffer_local_flags, selective_display_ellipses), idx); ++idx;
5236 XSETFASTINT (BVAR (&buffer_local_flags, tab_width), idx); ++idx;
5237 XSETFASTINT (BVAR (&buffer_local_flags, truncate_lines), idx); ++idx;
5238 XSETFASTINT (BVAR (&buffer_local_flags, word_wrap), idx); ++idx;
5239 XSETFASTINT (BVAR (&buffer_local_flags, ctl_arrow), idx); ++idx;
5240 XSETFASTINT (BVAR (&buffer_local_flags, fill_column), idx); ++idx;
5241 XSETFASTINT (BVAR (&buffer_local_flags, left_margin), idx); ++idx;
5242 XSETFASTINT (BVAR (&buffer_local_flags, abbrev_table), idx); ++idx;
5243 XSETFASTINT (BVAR (&buffer_local_flags, display_table), idx); ++idx;
5244 XSETFASTINT (BVAR (&buffer_local_flags, syntax_table), idx); ++idx;
5245 XSETFASTINT (BVAR (&buffer_local_flags, cache_long_scans), idx); ++idx;
5246 XSETFASTINT (BVAR (&buffer_local_flags, category_table), idx); ++idx;
5247 XSETFASTINT (BVAR (&buffer_local_flags, bidi_display_reordering), idx); ++idx;
5248 XSETFASTINT (BVAR (&buffer_local_flags, bidi_paragraph_direction), idx); ++idx;
5249 XSETFASTINT (BVAR (&buffer_local_flags, buffer_file_coding_system), idx);
5250 /* Make this one a permanent local. */
5251 buffer_permanent_local_flags[idx++] = 1;
5252 XSETFASTINT (BVAR (&buffer_local_flags, left_margin_cols), idx); ++idx;
5253 XSETFASTINT (BVAR (&buffer_local_flags, right_margin_cols), idx); ++idx;
5254 XSETFASTINT (BVAR (&buffer_local_flags, left_fringe_width), idx); ++idx;
5255 XSETFASTINT (BVAR (&buffer_local_flags, right_fringe_width), idx); ++idx;
5256 XSETFASTINT (BVAR (&buffer_local_flags, fringes_outside_margins), idx); ++idx;
5257 XSETFASTINT (BVAR (&buffer_local_flags, scroll_bar_width), idx); ++idx;
5258 XSETFASTINT (BVAR (&buffer_local_flags, vertical_scroll_bar_type), idx); ++idx;
5259 XSETFASTINT (BVAR (&buffer_local_flags, indicate_empty_lines), idx); ++idx;
5260 XSETFASTINT (BVAR (&buffer_local_flags, indicate_buffer_boundaries), idx); ++idx;
5261 XSETFASTINT (BVAR (&buffer_local_flags, fringe_indicator_alist), idx); ++idx;
5262 XSETFASTINT (BVAR (&buffer_local_flags, fringe_cursor_alist), idx); ++idx;
5263 XSETFASTINT (BVAR (&buffer_local_flags, scroll_up_aggressively), idx); ++idx;
5264 XSETFASTINT (BVAR (&buffer_local_flags, scroll_down_aggressively), idx); ++idx;
5265 XSETFASTINT (BVAR (&buffer_local_flags, header_line_format), idx); ++idx;
5266 XSETFASTINT (BVAR (&buffer_local_flags, cursor_type), idx); ++idx;
5267 XSETFASTINT (BVAR (&buffer_local_flags, extra_line_spacing), idx); ++idx;
5268 XSETFASTINT (BVAR (&buffer_local_flags, cursor_in_non_selected_windows), idx); ++idx;
5269
5270 /* Need more room? */
5271 if (idx >= MAX_PER_BUFFER_VARS)
5272 emacs_abort ();
5273 last_per_buffer_idx = idx;
5274
5275 Vbuffer_alist = Qnil;
5276 current_buffer = 0;
5277 all_buffers = 0;
5278
5279 QSFundamental = build_pure_c_string ("Fundamental");
5280
5281 Qfundamental_mode = intern_c_string ("fundamental-mode");
5282 bset_major_mode (&buffer_defaults, Qfundamental_mode);
5283
5284 Qmode_class = intern_c_string ("mode-class");
5285
5286 Qprotected_field = intern_c_string ("protected-field");
5287
5288 Qpermanent_local = intern_c_string ("permanent-local");
5289
5290 Qkill_buffer_hook = intern_c_string ("kill-buffer-hook");
5291 Fput (Qkill_buffer_hook, Qpermanent_local, Qt);
5292
5293 /* super-magic invisible buffer */
5294 Vprin1_to_string_buffer = Fget_buffer_create (build_pure_c_string (" prin1"));
5295 Vbuffer_alist = Qnil;
5296
5297 Fset_buffer (Fget_buffer_create (build_pure_c_string ("*scratch*")));
5298
5299 inhibit_modification_hooks = 0;
5300 }
5301
5302 void
5303 init_buffer (void)
5304 {
5305 char *pwd;
5306 Lisp_Object temp;
5307 ptrdiff_t len;
5308
5309 #ifdef USE_MMAP_FOR_BUFFERS
5310 {
5311 /* When using the ralloc implementation based on mmap(2), buffer
5312 text pointers will have been set to null in the dumped Emacs.
5313 Map new memory. */
5314 struct buffer *b;
5315
5316 FOR_EACH_BUFFER (b)
5317 if (b->text->beg == NULL)
5318 enlarge_buffer_text (b, 0);
5319 }
5320 #endif /* USE_MMAP_FOR_BUFFERS */
5321
5322 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
5323 if (NILP (BVAR (&buffer_defaults, enable_multibyte_characters)))
5324 Fset_buffer_multibyte (Qnil);
5325
5326 pwd = get_current_dir_name ();
5327
5328 if (!pwd)
5329 fatal ("`get_current_dir_name' failed: %s\n", strerror (errno));
5330
5331 /* Maybe this should really use some standard subroutine
5332 whose definition is filename syntax dependent. */
5333 len = strlen (pwd);
5334 if (!(IS_DIRECTORY_SEP (pwd[len - 1])))
5335 {
5336 /* Grow buffer to add directory separator and '\0'. */
5337 pwd = realloc (pwd, len + 2);
5338 if (!pwd)
5339 fatal ("`get_current_dir_name' failed: %s\n", strerror (errno));
5340 pwd[len] = DIRECTORY_SEP;
5341 pwd[len + 1] = '\0';
5342 len++;
5343 }
5344
5345 /* At this moment, we still don't know how to decode the directory
5346 name. So, we keep the bytes in unibyte form so that file I/O
5347 routines correctly get the original bytes. */
5348 bset_directory (current_buffer, make_unibyte_string (pwd, len));
5349
5350 /* Add /: to the front of the name
5351 if it would otherwise be treated as magic. */
5352 temp = Ffind_file_name_handler (BVAR (current_buffer, directory), Qt);
5353 if (! NILP (temp)
5354 /* If the default dir is just /, TEMP is non-nil
5355 because of the ange-ftp completion handler.
5356 However, it is not necessary to turn / into /:/.
5357 So avoid doing that. */
5358 && strcmp ("/", SSDATA (BVAR (current_buffer, directory))))
5359 bset_directory
5360 (current_buffer,
5361 concat2 (build_string ("/:"), BVAR (current_buffer, directory)));
5362
5363 temp = get_minibuffer (0);
5364 bset_directory (XBUFFER (temp), BVAR (current_buffer, directory));
5365
5366 free (pwd);
5367 }
5368
5369 /* Similar to defvar_lisp but define a variable whose value is the
5370 Lisp_Object stored in the current buffer. LNAME is the Lisp-level
5371 variable name. VNAME is the name of the buffer slot. PREDICATE
5372 is nil for a general Lisp variable. If PREDICATE is non-nil, then
5373 only Lisp values that satisfies the PREDICATE are allowed (except
5374 that nil is allowed too). DOC is a dummy where you write the doc
5375 string as a comment. */
5376
5377 #define DEFVAR_PER_BUFFER(lname, vname, predicate, doc) \
5378 do { \
5379 static struct Lisp_Buffer_Objfwd bo_fwd; \
5380 defvar_per_buffer (&bo_fwd, lname, vname, predicate); \
5381 } while (0)
5382
5383 static void
5384 defvar_per_buffer (struct Lisp_Buffer_Objfwd *bo_fwd, const char *namestring,
5385 Lisp_Object *address, Lisp_Object predicate)
5386 {
5387 struct Lisp_Symbol *sym;
5388 int offset;
5389
5390 sym = XSYMBOL (intern (namestring));
5391 offset = (char *)address - (char *)current_buffer;
5392
5393 bo_fwd->type = Lisp_Fwd_Buffer_Obj;
5394 bo_fwd->offset = offset;
5395 bo_fwd->predicate = predicate;
5396 sym->declared_special = 1;
5397 sym->redirect = SYMBOL_FORWARDED;
5398 SET_SYMBOL_FWD (sym, (union Lisp_Fwd *) bo_fwd);
5399 XSETSYMBOL (PER_BUFFER_SYMBOL (offset), sym);
5400
5401 if (PER_BUFFER_IDX (offset) == 0)
5402 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding
5403 slot of buffer_local_flags. */
5404 emacs_abort ();
5405 }
5406
5407
5408 /* Initialize the buffer routines. */
5409 void
5410 syms_of_buffer (void)
5411 {
5412 staticpro (&last_overlay_modification_hooks);
5413 last_overlay_modification_hooks
5414 = Fmake_vector (make_number (10), Qnil);
5415
5416 staticpro (&Qfundamental_mode);
5417 staticpro (&Qmode_class);
5418 staticpro (&QSFundamental);
5419 staticpro (&Vbuffer_alist);
5420 staticpro (&Qprotected_field);
5421 staticpro (&Qpermanent_local);
5422 staticpro (&Qkill_buffer_hook);
5423
5424 DEFSYM (Qpermanent_local_hook, "permanent-local-hook");
5425 DEFSYM (Qoverlayp, "overlayp");
5426 DEFSYM (Qevaporate, "evaporate");
5427 DEFSYM (Qmodification_hooks, "modification-hooks");
5428 DEFSYM (Qinsert_in_front_hooks, "insert-in-front-hooks");
5429 DEFSYM (Qinsert_behind_hooks, "insert-behind-hooks");
5430 DEFSYM (Qget_file_buffer, "get-file-buffer");
5431 DEFSYM (Qpriority, "priority");
5432 DEFSYM (Qbefore_string, "before-string");
5433 DEFSYM (Qafter_string, "after-string");
5434 DEFSYM (Qfirst_change_hook, "first-change-hook");
5435 DEFSYM (Qbefore_change_functions, "before-change-functions");
5436 DEFSYM (Qafter_change_functions, "after-change-functions");
5437 DEFSYM (Qkill_buffer_query_functions, "kill-buffer-query-functions");
5438
5439 Fput (Qprotected_field, Qerror_conditions,
5440 listn (CONSTYPE_PURE, 2, Qprotected_field, Qerror));
5441 Fput (Qprotected_field, Qerror_message,
5442 build_pure_c_string ("Attempt to modify a protected field"));
5443
5444 DEFVAR_BUFFER_DEFAULTS ("default-mode-line-format",
5445 mode_line_format,
5446 doc: /* Default value of `mode-line-format' for buffers that don't override it.
5447 This is the same as (default-value 'mode-line-format). */);
5448
5449 DEFVAR_BUFFER_DEFAULTS ("default-header-line-format",
5450 header_line_format,
5451 doc: /* Default value of `header-line-format' for buffers that don't override it.
5452 This is the same as (default-value 'header-line-format). */);
5453
5454 DEFVAR_BUFFER_DEFAULTS ("default-cursor-type", cursor_type,
5455 doc: /* Default value of `cursor-type' for buffers that don't override it.
5456 This is the same as (default-value 'cursor-type). */);
5457
5458 DEFVAR_BUFFER_DEFAULTS ("default-line-spacing",
5459 extra_line_spacing,
5460 doc: /* Default value of `line-spacing' for buffers that don't override it.
5461 This is the same as (default-value 'line-spacing). */);
5462
5463 DEFVAR_BUFFER_DEFAULTS ("default-cursor-in-non-selected-windows",
5464 cursor_in_non_selected_windows,
5465 doc: /* Default value of `cursor-in-non-selected-windows'.
5466 This is the same as (default-value 'cursor-in-non-selected-windows). */);
5467
5468 DEFVAR_BUFFER_DEFAULTS ("default-abbrev-mode",
5469 abbrev_mode,
5470 doc: /* Default value of `abbrev-mode' for buffers that do not override it.
5471 This is the same as (default-value 'abbrev-mode). */);
5472
5473 DEFVAR_BUFFER_DEFAULTS ("default-ctl-arrow",
5474 ctl_arrow,
5475 doc: /* Default value of `ctl-arrow' for buffers that do not override it.
5476 This is the same as (default-value 'ctl-arrow). */);
5477
5478 DEFVAR_BUFFER_DEFAULTS ("default-enable-multibyte-characters",
5479 enable_multibyte_characters,
5480 doc: /* Default value of `enable-multibyte-characters' for buffers not overriding it.
5481 This is the same as (default-value 'enable-multibyte-characters). */);
5482
5483 DEFVAR_BUFFER_DEFAULTS ("default-buffer-file-coding-system",
5484 buffer_file_coding_system,
5485 doc: /* Default value of `buffer-file-coding-system' for buffers not overriding it.
5486 This is the same as (default-value 'buffer-file-coding-system). */);
5487
5488 DEFVAR_BUFFER_DEFAULTS ("default-truncate-lines",
5489 truncate_lines,
5490 doc: /* Default value of `truncate-lines' for buffers that do not override it.
5491 This is the same as (default-value 'truncate-lines). */);
5492
5493 DEFVAR_BUFFER_DEFAULTS ("default-fill-column",
5494 fill_column,
5495 doc: /* Default value of `fill-column' for buffers that do not override it.
5496 This is the same as (default-value 'fill-column). */);
5497
5498 DEFVAR_BUFFER_DEFAULTS ("default-left-margin",
5499 left_margin,
5500 doc: /* Default value of `left-margin' for buffers that do not override it.
5501 This is the same as (default-value 'left-margin). */);
5502
5503 DEFVAR_BUFFER_DEFAULTS ("default-tab-width",
5504 tab_width,
5505 doc: /* Default value of `tab-width' for buffers that do not override it.
5506 NOTE: This controls the display width of a TAB character, and not
5507 the size of an indentation step.
5508 This is the same as (default-value 'tab-width). */);
5509
5510 DEFVAR_BUFFER_DEFAULTS ("default-case-fold-search",
5511 case_fold_search,
5512 doc: /* Default value of `case-fold-search' for buffers that don't override it.
5513 This is the same as (default-value 'case-fold-search). */);
5514
5515 DEFVAR_BUFFER_DEFAULTS ("default-left-margin-width",
5516 left_margin_cols,
5517 doc: /* Default value of `left-margin-width' for buffers that don't override it.
5518 This is the same as (default-value 'left-margin-width). */);
5519
5520 DEFVAR_BUFFER_DEFAULTS ("default-right-margin-width",
5521 right_margin_cols,
5522 doc: /* Default value of `right-margin-width' for buffers that don't override it.
5523 This is the same as (default-value 'right-margin-width). */);
5524
5525 DEFVAR_BUFFER_DEFAULTS ("default-left-fringe-width",
5526 left_fringe_width,
5527 doc: /* Default value of `left-fringe-width' for buffers that don't override it.
5528 This is the same as (default-value 'left-fringe-width). */);
5529
5530 DEFVAR_BUFFER_DEFAULTS ("default-right-fringe-width",
5531 right_fringe_width,
5532 doc: /* Default value of `right-fringe-width' for buffers that don't override it.
5533 This is the same as (default-value 'right-fringe-width). */);
5534
5535 DEFVAR_BUFFER_DEFAULTS ("default-fringes-outside-margins",
5536 fringes_outside_margins,
5537 doc: /* Default value of `fringes-outside-margins' for buffers that don't override it.
5538 This is the same as (default-value 'fringes-outside-margins). */);
5539
5540 DEFVAR_BUFFER_DEFAULTS ("default-scroll-bar-width",
5541 scroll_bar_width,
5542 doc: /* Default value of `scroll-bar-width' for buffers that don't override it.
5543 This is the same as (default-value 'scroll-bar-width). */);
5544
5545 DEFVAR_BUFFER_DEFAULTS ("default-vertical-scroll-bar",
5546 vertical_scroll_bar_type,
5547 doc: /* Default value of `vertical-scroll-bar' for buffers that don't override it.
5548 This is the same as (default-value 'vertical-scroll-bar). */);
5549
5550 DEFVAR_BUFFER_DEFAULTS ("default-indicate-empty-lines",
5551 indicate_empty_lines,
5552 doc: /* Default value of `indicate-empty-lines' for buffers that don't override it.
5553 This is the same as (default-value 'indicate-empty-lines). */);
5554
5555 DEFVAR_BUFFER_DEFAULTS ("default-indicate-buffer-boundaries",
5556 indicate_buffer_boundaries,
5557 doc: /* Default value of `indicate-buffer-boundaries' for buffers that don't override it.
5558 This is the same as (default-value 'indicate-buffer-boundaries). */);
5559
5560 DEFVAR_BUFFER_DEFAULTS ("default-fringe-indicator-alist",
5561 fringe_indicator_alist,
5562 doc: /* Default value of `fringe-indicator-alist' for buffers that don't override it.
5563 This is the same as (default-value 'fringe-indicator-alist'). */);
5564
5565 DEFVAR_BUFFER_DEFAULTS ("default-fringe-cursor-alist",
5566 fringe_cursor_alist,
5567 doc: /* Default value of `fringe-cursor-alist' for buffers that don't override it.
5568 This is the same as (default-value 'fringe-cursor-alist'). */);
5569
5570 DEFVAR_BUFFER_DEFAULTS ("default-scroll-up-aggressively",
5571 scroll_up_aggressively,
5572 doc: /* Default value of `scroll-up-aggressively'.
5573 This value applies in buffers that don't have their own local values.
5574 This is the same as (default-value 'scroll-up-aggressively). */);
5575
5576 DEFVAR_BUFFER_DEFAULTS ("default-scroll-down-aggressively",
5577 scroll_down_aggressively,
5578 doc: /* Default value of `scroll-down-aggressively'.
5579 This value applies in buffers that don't have their own local values.
5580 This is the same as (default-value 'scroll-down-aggressively). */);
5581
5582 DEFVAR_PER_BUFFER ("header-line-format",
5583 &BVAR (current_buffer, header_line_format),
5584 Qnil,
5585 doc: /* Analogous to `mode-line-format', but controls the header line.
5586 The header line appears, optionally, at the top of a window;
5587 the mode line appears at the bottom. */);
5588
5589 DEFVAR_PER_BUFFER ("mode-line-format", &BVAR (current_buffer, mode_line_format),
5590 Qnil,
5591 doc: /* Template for displaying mode line for current buffer.
5592
5593 The value may be nil, a string, a symbol or a list.
5594
5595 A value of nil means don't display a mode line.
5596
5597 For any symbol other than t or nil, the symbol's value is processed as
5598 a mode line construct. As a special exception, if that value is a
5599 string, the string is processed verbatim, without handling any
5600 %-constructs (see below). Also, unless the symbol has a non-nil
5601 `risky-local-variable' property, all properties in any strings, as
5602 well as all :eval and :propertize forms in the value, are ignored.
5603
5604 A list whose car is a string or list is processed by processing each
5605 of the list elements recursively, as separate mode line constructs,
5606 and concatenating the results.
5607
5608 A list of the form `(:eval FORM)' is processed by evaluating FORM and
5609 using the result as a mode line construct. Be careful--FORM should
5610 not load any files, because that can cause an infinite recursion.
5611
5612 A list of the form `(:propertize ELT PROPS...)' is processed by
5613 processing ELT as the mode line construct, and adding the text
5614 properties PROPS to the result.
5615
5616 A list whose car is a symbol is processed by examining the symbol's
5617 value, and, if that value is non-nil, processing the cadr of the list
5618 recursively; and if that value is nil, processing the caddr of the
5619 list recursively.
5620
5621 A list whose car is an integer is processed by processing the cadr of
5622 the list, and padding (if the number is positive) or truncating (if
5623 negative) to the width specified by that number.
5624
5625 A string is printed verbatim in the mode line except for %-constructs:
5626 %b -- print buffer name. %f -- print visited file name.
5627 %F -- print frame name.
5628 %* -- print %, * or hyphen. %+ -- print *, % or hyphen.
5629 %& is like %*, but ignore read-only-ness.
5630 % means buffer is read-only and * means it is modified.
5631 For a modified read-only buffer, %* gives % and %+ gives *.
5632 %s -- print process status. %l -- print the current line number.
5633 %c -- print the current column number (this makes editing slower).
5634 To make the column number update correctly in all cases,
5635 `column-number-mode' must be non-nil.
5636 %i -- print the size of the buffer.
5637 %I -- like %i, but use k, M, G, etc., to abbreviate.
5638 %p -- print percent of buffer above top of window, or Top, Bot or All.
5639 %P -- print percent of buffer above bottom of window, perhaps plus Top,
5640 or print Bottom or All.
5641 %n -- print Narrow if appropriate.
5642 %t -- visited file is text or binary (if OS supports this distinction).
5643 %z -- print mnemonics of keyboard, terminal, and buffer coding systems.
5644 %Z -- like %z, but including the end-of-line format.
5645 %e -- print error message about full memory.
5646 %@ -- print @ or hyphen. @ means that default-directory is on a
5647 remote machine.
5648 %[ -- print one [ for each recursive editing level. %] similar.
5649 %% -- print %. %- -- print infinitely many dashes.
5650 Decimal digits after the % specify field width to which to pad. */);
5651
5652 DEFVAR_BUFFER_DEFAULTS ("default-major-mode", major_mode,
5653 doc: /* Value of `major-mode' for new buffers. */);
5654
5655 DEFVAR_PER_BUFFER ("major-mode", &BVAR (current_buffer, major_mode),
5656 Qsymbolp,
5657 doc: /* Symbol for current buffer's major mode.
5658 The default value (normally `fundamental-mode') affects new buffers.
5659 A value of nil means to use the current buffer's major mode, provided
5660 it is not marked as "special".
5661
5662 When a mode is used by default, `find-file' switches to it before it
5663 reads the contents into the buffer and before it finishes setting up
5664 the buffer. Thus, the mode and its hooks should not expect certain
5665 variables such as `buffer-read-only' and `buffer-file-coding-system'
5666 to be set up. */);
5667
5668 DEFVAR_PER_BUFFER ("mode-name", &BVAR (current_buffer, mode_name),
5669 Qnil,
5670 doc: /* Pretty name of current buffer's major mode.
5671 Usually a string, but can use any of the constructs for `mode-line-format',
5672 which see.
5673 Format with `format-mode-line' to produce a string value. */);
5674
5675 DEFVAR_PER_BUFFER ("local-abbrev-table", &BVAR (current_buffer, abbrev_table), Qnil,
5676 doc: /* Local (mode-specific) abbrev table of current buffer. */);
5677
5678 DEFVAR_PER_BUFFER ("abbrev-mode", &BVAR (current_buffer, abbrev_mode), Qnil,
5679 doc: /* Non-nil if Abbrev mode is enabled.
5680 Use the command `abbrev-mode' to change this variable. */);
5681
5682 DEFVAR_PER_BUFFER ("case-fold-search", &BVAR (current_buffer, case_fold_search),
5683 Qnil,
5684 doc: /* Non-nil if searches and matches should ignore case. */);
5685
5686 DEFVAR_PER_BUFFER ("fill-column", &BVAR (current_buffer, fill_column),
5687 Qintegerp,
5688 doc: /* Column beyond which automatic line-wrapping should happen.
5689 Interactively, you can set the buffer local value using \\[set-fill-column]. */);
5690
5691 DEFVAR_PER_BUFFER ("left-margin", &BVAR (current_buffer, left_margin),
5692 Qintegerp,
5693 doc: /* Column for the default `indent-line-function' to indent to.
5694 Linefeed indents to this column in Fundamental mode. */);
5695
5696 DEFVAR_PER_BUFFER ("tab-width", &BVAR (current_buffer, tab_width),
5697 Qintegerp,
5698 doc: /* Distance between tab stops (for display of tab characters), in columns.
5699 NOTE: This controls the display width of a TAB character, and not
5700 the size of an indentation step.
5701 This should be an integer greater than zero. */);
5702
5703 DEFVAR_PER_BUFFER ("ctl-arrow", &BVAR (current_buffer, ctl_arrow), Qnil,
5704 doc: /* Non-nil means display control chars with uparrow.
5705 A value of nil means use backslash and octal digits.
5706 This variable does not apply to characters whose display is specified
5707 in the current display table (if there is one). */);
5708
5709 DEFVAR_PER_BUFFER ("enable-multibyte-characters",
5710 &BVAR (current_buffer, enable_multibyte_characters),
5711 Qnil,
5712 doc: /* Non-nil means the buffer contents are regarded as multi-byte characters.
5713 Otherwise they are regarded as unibyte. This affects the display,
5714 file I/O and the behavior of various editing commands.
5715
5716 This variable is buffer-local but you cannot set it directly;
5717 use the function `set-buffer-multibyte' to change a buffer's representation.
5718 See also Info node `(elisp)Text Representations'. */);
5719 XSYMBOL (intern_c_string ("enable-multibyte-characters"))->constant = 1;
5720
5721 DEFVAR_PER_BUFFER ("buffer-file-coding-system",
5722 &BVAR (current_buffer, buffer_file_coding_system), Qnil,
5723 doc: /* Coding system to be used for encoding the buffer contents on saving.
5724 This variable applies to saving the buffer, and also to `write-region'
5725 and other functions that use `write-region'.
5726 It does not apply to sending output to subprocesses, however.
5727
5728 If this is nil, the buffer is saved without any code conversion
5729 unless some coding system is specified in `file-coding-system-alist'
5730 for the buffer file.
5731
5732 If the text to be saved cannot be encoded as specified by this variable,
5733 an alternative encoding is selected by `select-safe-coding-system', which see.
5734
5735 The variable `coding-system-for-write', if non-nil, overrides this variable.
5736
5737 This variable is never applied to a way of decoding a file while reading it. */);
5738
5739 DEFVAR_PER_BUFFER ("bidi-display-reordering",
5740 &BVAR (current_buffer, bidi_display_reordering), Qnil,
5741 doc: /* Non-nil means reorder bidirectional text for display in the visual order. */);
5742
5743 DEFVAR_PER_BUFFER ("bidi-paragraph-direction",
5744 &BVAR (current_buffer, bidi_paragraph_direction), Qnil,
5745 doc: /* If non-nil, forces directionality of text paragraphs in the buffer.
5746
5747 If this is nil (the default), the direction of each paragraph is
5748 determined by the first strong directional character of its text.
5749 The values of `right-to-left' and `left-to-right' override that.
5750 Any other value is treated as nil.
5751
5752 This variable has no effect unless the buffer's value of
5753 \`bidi-display-reordering' is non-nil. */);
5754
5755 DEFVAR_PER_BUFFER ("truncate-lines", &BVAR (current_buffer, truncate_lines), Qnil,
5756 doc: /* Non-nil means do not display continuation lines.
5757 Instead, give each line of text just one screen line.
5758
5759 Note that this is overridden by the variable
5760 `truncate-partial-width-windows' if that variable is non-nil
5761 and this buffer is not full-frame width.
5762
5763 Minibuffers set this variable to nil. */);
5764
5765 DEFVAR_PER_BUFFER ("word-wrap", &BVAR (current_buffer, word_wrap), Qnil,
5766 doc: /* Non-nil means to use word-wrapping for continuation lines.
5767 When word-wrapping is on, continuation lines are wrapped at the space
5768 or tab character nearest to the right window edge.
5769 If nil, continuation lines are wrapped at the right screen edge.
5770
5771 This variable has no effect if long lines are truncated (see
5772 `truncate-lines' and `truncate-partial-width-windows'). If you use
5773 word-wrapping, you might want to reduce the value of
5774 `truncate-partial-width-windows', since wrapping can make text readable
5775 in narrower windows.
5776
5777 Instead of setting this variable directly, most users should use
5778 Visual Line mode . Visual Line mode, when enabled, sets `word-wrap'
5779 to t, and additionally redefines simple editing commands to act on
5780 visual lines rather than logical lines. See the documentation of
5781 `visual-line-mode'. */);
5782
5783 DEFVAR_PER_BUFFER ("default-directory", &BVAR (current_buffer, directory),
5784 Qstringp,
5785 doc: /* Name of default directory of current buffer. Should end with slash.
5786 To interactively change the default directory, use command `cd'. */);
5787
5788 DEFVAR_PER_BUFFER ("auto-fill-function", &BVAR (current_buffer, auto_fill_function),
5789 Qnil,
5790 doc: /* Function called (if non-nil) to perform auto-fill.
5791 It is called after self-inserting any character specified in
5792 the `auto-fill-chars' table.
5793 NOTE: This variable is not a hook;
5794 its value may not be a list of functions. */);
5795
5796 DEFVAR_PER_BUFFER ("buffer-file-name", &BVAR (current_buffer, filename),
5797 Qstringp,
5798 doc: /* Name of file visited in current buffer, or nil if not visiting a file.
5799 This should be an absolute file name. */);
5800
5801 DEFVAR_PER_BUFFER ("buffer-file-truename", &BVAR (current_buffer, file_truename),
5802 Qstringp,
5803 doc: /* Abbreviated truename of file visited in current buffer, or nil if none.
5804 The truename of a file is calculated by `file-truename'
5805 and then abbreviated with `abbreviate-file-name'. */);
5806
5807 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
5808 &BVAR (current_buffer, auto_save_file_name),
5809 Qstringp,
5810 doc: /* Name of file for auto-saving current buffer.
5811 If it is nil, that means don't auto-save this buffer. */);
5812
5813 DEFVAR_PER_BUFFER ("buffer-read-only", &BVAR (current_buffer, read_only), Qnil,
5814 doc: /* Non-nil if this buffer is read-only. */);
5815
5816 DEFVAR_PER_BUFFER ("buffer-backed-up", &BVAR (current_buffer, backed_up), Qnil,
5817 doc: /* Non-nil if this buffer's file has been backed up.
5818 Backing up is done before the first time the file is saved. */);
5819
5820 DEFVAR_PER_BUFFER ("buffer-saved-size", &BVAR (current_buffer, save_length),
5821 Qintegerp,
5822 doc: /* Length of current buffer when last read in, saved or auto-saved.
5823 0 initially.
5824 -1 means auto-saving turned off until next real save.
5825
5826 If you set this to -2, that means don't turn off auto-saving in this buffer
5827 if its text size shrinks. If you use `buffer-swap-text' on a buffer,
5828 you probably should set this to -2 in that buffer. */);
5829
5830 DEFVAR_PER_BUFFER ("selective-display", &BVAR (current_buffer, selective_display),
5831 Qnil,
5832 doc: /* Non-nil enables selective display.
5833 An integer N as value means display only lines
5834 that start with less than N columns of space.
5835 A value of t means that the character ^M makes itself and
5836 all the rest of the line invisible; also, when saving the buffer
5837 in a file, save the ^M as a newline. */);
5838
5839 DEFVAR_PER_BUFFER ("selective-display-ellipses",
5840 &BVAR (current_buffer, selective_display_ellipses),
5841 Qnil,
5842 doc: /* Non-nil means display ... on previous line when a line is invisible. */);
5843
5844 DEFVAR_PER_BUFFER ("overwrite-mode", &BVAR (current_buffer, overwrite_mode), Qnil,
5845 doc: /* Non-nil if self-insertion should replace existing text.
5846 The value should be one of `overwrite-mode-textual',
5847 `overwrite-mode-binary', or nil.
5848 If it is `overwrite-mode-textual', self-insertion still
5849 inserts at the end of a line, and inserts when point is before a tab,
5850 until the tab is filled in.
5851 If `overwrite-mode-binary', self-insertion replaces newlines and tabs too. */);
5852
5853 DEFVAR_PER_BUFFER ("buffer-display-table", &BVAR (current_buffer, display_table),
5854 Qnil,
5855 doc: /* Display table that controls display of the contents of current buffer.
5856
5857 If this variable is nil, the value of `standard-display-table' is used.
5858 Each window can have its own, overriding display table, see
5859 `set-window-display-table' and `window-display-table'.
5860
5861 The display table is a char-table created with `make-display-table'.
5862 A char-table is an array indexed by character codes. Normal array
5863 primitives `aref' and `aset' can be used to access elements of a char-table.
5864
5865 Each of the char-table elements control how to display the corresponding
5866 text character: the element at index C in the table says how to display
5867 the character whose code is C. Each element should be a vector of
5868 characters or nil. The value nil means display the character in the
5869 default fashion; otherwise, the characters from the vector are delivered
5870 to the screen instead of the original character.
5871
5872 For example, (aset buffer-display-table ?X [?Y]) tells Emacs
5873 to display a capital Y instead of each X character.
5874
5875 In addition, a char-table has six extra slots to control the display of:
5876
5877 the end of a truncated screen line (extra-slot 0, a single character);
5878 the end of a continued line (extra-slot 1, a single character);
5879 the escape character used to display character codes in octal
5880 (extra-slot 2, a single character);
5881 the character used as an arrow for control characters (extra-slot 3,
5882 a single character);
5883 the decoration indicating the presence of invisible lines (extra-slot 4,
5884 a vector of characters);
5885 the character used to draw the border between side-by-side windows
5886 (extra-slot 5, a single character).
5887
5888 See also the functions `display-table-slot' and `set-display-table-slot'. */);
5889
5890 DEFVAR_PER_BUFFER ("left-margin-width", &BVAR (current_buffer, left_margin_cols),
5891 Qintegerp,
5892 doc: /* Width in columns of left marginal area for display of a buffer.
5893 A value of nil means no marginal area.
5894
5895 Setting this variable does not take effect until a new buffer is displayed
5896 in a window. To make the change take effect, call `set-window-buffer'. */);
5897
5898 DEFVAR_PER_BUFFER ("right-margin-width", &BVAR (current_buffer, right_margin_cols),
5899 Qintegerp,
5900 doc: /* Width in columns of right marginal area for display of a buffer.
5901 A value of nil means no marginal area.
5902
5903 Setting this variable does not take effect until a new buffer is displayed
5904 in a window. To make the change take effect, call `set-window-buffer'. */);
5905
5906 DEFVAR_PER_BUFFER ("left-fringe-width", &BVAR (current_buffer, left_fringe_width),
5907 Qintegerp,
5908 doc: /* Width of this buffer's left fringe (in pixels).
5909 A value of 0 means no left fringe is shown in this buffer's window.
5910 A value of nil means to use the left fringe width from the window's frame.
5911
5912 Setting this variable does not take effect until a new buffer is displayed
5913 in a window. To make the change take effect, call `set-window-buffer'. */);
5914
5915 DEFVAR_PER_BUFFER ("right-fringe-width", &BVAR (current_buffer, right_fringe_width),
5916 Qintegerp,
5917 doc: /* Width of this buffer's right fringe (in pixels).
5918 A value of 0 means no right fringe is shown in this buffer's window.
5919 A value of nil means to use the right fringe width from the window's frame.
5920
5921 Setting this variable does not take effect until a new buffer is displayed
5922 in a window. To make the change take effect, call `set-window-buffer'. */);
5923
5924 DEFVAR_PER_BUFFER ("fringes-outside-margins", &BVAR (current_buffer, fringes_outside_margins),
5925 Qnil,
5926 doc: /* Non-nil means to display fringes outside display margins.
5927 A value of nil means to display fringes between margins and buffer text.
5928
5929 Setting this variable does not take effect until a new buffer is displayed
5930 in a window. To make the change take effect, call `set-window-buffer'. */);
5931
5932 DEFVAR_PER_BUFFER ("scroll-bar-width", &BVAR (current_buffer, scroll_bar_width),
5933 Qintegerp,
5934 doc: /* Width of this buffer's scroll bars in pixels.
5935 A value of nil means to use the scroll bar width from the window's frame. */);
5936
5937 DEFVAR_PER_BUFFER ("vertical-scroll-bar", &BVAR (current_buffer, vertical_scroll_bar_type),
5938 Qnil,
5939 doc: /* Position of this buffer's vertical scroll bar.
5940 The value takes effect whenever you tell a window to display this buffer;
5941 for instance, with `set-window-buffer' or when `display-buffer' displays it.
5942
5943 A value of `left' or `right' means put the vertical scroll bar at that side
5944 of the window; a value of nil means don't show any vertical scroll bars.
5945 A value of t (the default) means do whatever the window's frame specifies. */);
5946
5947 DEFVAR_PER_BUFFER ("indicate-empty-lines",
5948 &BVAR (current_buffer, indicate_empty_lines), Qnil,
5949 doc: /* Visually indicate empty lines after the buffer end.
5950 If non-nil, a bitmap is displayed in the left fringe of a window on
5951 window-systems. */);
5952
5953 DEFVAR_PER_BUFFER ("indicate-buffer-boundaries",
5954 &BVAR (current_buffer, indicate_buffer_boundaries), Qnil,
5955 doc: /* Visually indicate buffer boundaries and scrolling.
5956 If non-nil, the first and last line of the buffer are marked in the fringe
5957 of a window on window-systems with angle bitmaps, or if the window can be
5958 scrolled, the top and bottom line of the window are marked with up and down
5959 arrow bitmaps.
5960
5961 If value is a symbol `left' or `right', both angle and arrow bitmaps
5962 are displayed in the left or right fringe, resp. Any other value
5963 that doesn't look like an alist means display the angle bitmaps in
5964 the left fringe but no arrows.
5965
5966 You can exercise more precise control by using an alist as the
5967 value. Each alist element (INDICATOR . POSITION) specifies
5968 where to show one of the indicators. INDICATOR is one of `top',
5969 `bottom', `up', `down', or t, which specifies the default position,
5970 and POSITION is one of `left', `right', or nil, meaning do not show
5971 this indicator.
5972
5973 For example, ((top . left) (t . right)) places the top angle bitmap in
5974 left fringe, the bottom angle bitmap in right fringe, and both arrow
5975 bitmaps in right fringe. To show just the angle bitmaps in the left
5976 fringe, but no arrow bitmaps, use ((top . left) (bottom . left)). */);
5977
5978 DEFVAR_PER_BUFFER ("fringe-indicator-alist",
5979 &BVAR (current_buffer, fringe_indicator_alist), Qnil,
5980 doc: /* Mapping from logical to physical fringe indicator bitmaps.
5981 The value is an alist where each element (INDICATOR . BITMAPS)
5982 specifies the fringe bitmaps used to display a specific logical
5983 fringe indicator.
5984
5985 INDICATOR specifies the logical indicator type which is one of the
5986 following symbols: `truncation' , `continuation', `overlay-arrow',
5987 `top', `bottom', `top-bottom', `up', `down', empty-line', or `unknown'.
5988
5989 BITMAPS is a list of symbols (LEFT RIGHT [LEFT1 RIGHT1]) which specifies
5990 the actual bitmap shown in the left or right fringe for the logical
5991 indicator. LEFT and RIGHT are the bitmaps shown in the left and/or
5992 right fringe for the specific indicator. The LEFT1 or RIGHT1 bitmaps
5993 are used only for the `bottom' and `top-bottom' indicators when the
5994 last (only) line has no final newline. BITMAPS may also be a single
5995 symbol which is used in both left and right fringes. */);
5996
5997 DEFVAR_PER_BUFFER ("fringe-cursor-alist",
5998 &BVAR (current_buffer, fringe_cursor_alist), Qnil,
5999 doc: /* Mapping from logical to physical fringe cursor bitmaps.
6000 The value is an alist where each element (CURSOR . BITMAP)
6001 specifies the fringe bitmaps used to display a specific logical
6002 cursor type in the fringe.
6003
6004 CURSOR specifies the logical cursor type which is one of the following
6005 symbols: `box' , `hollow', `bar', `hbar', or `hollow-small'. The last
6006 one is used to show a hollow cursor on narrow lines display lines
6007 where the normal hollow cursor will not fit.
6008
6009 BITMAP is the corresponding fringe bitmap shown for the logical
6010 cursor type. */);
6011
6012 DEFVAR_PER_BUFFER ("scroll-up-aggressively",
6013 &BVAR (current_buffer, scroll_up_aggressively), Qfloatp,
6014 doc: /* How far to scroll windows upward.
6015 If you move point off the bottom, the window scrolls automatically.
6016 This variable controls how far it scrolls. The value nil, the default,
6017 means scroll to center point. A fraction means scroll to put point
6018 that fraction of the window's height from the bottom of the window.
6019 When the value is 0.0, point goes at the bottom line, which in the
6020 simple case that you moved off with C-f means scrolling just one line.
6021 1.0 means point goes at the top, so that in that simple case, the
6022 window scrolls by a full window height. Meaningful values are
6023 between 0.0 and 1.0, inclusive. */);
6024
6025 DEFVAR_PER_BUFFER ("scroll-down-aggressively",
6026 &BVAR (current_buffer, scroll_down_aggressively), Qfloatp,
6027 doc: /* How far to scroll windows downward.
6028 If you move point off the top, the window scrolls automatically.
6029 This variable controls how far it scrolls. The value nil, the default,
6030 means scroll to center point. A fraction means scroll to put point
6031 that fraction of the window's height from the top of the window.
6032 When the value is 0.0, point goes at the top line, which in the
6033 simple case that you moved off with C-b means scrolling just one line.
6034 1.0 means point goes at the bottom, so that in that simple case, the
6035 window scrolls by a full window height. Meaningful values are
6036 between 0.0 and 1.0, inclusive. */);
6037
6038 DEFVAR_LISP ("before-change-functions", Vbefore_change_functions,
6039 doc: /* List of functions to call before each text change.
6040 Two arguments are passed to each function: the positions of
6041 the beginning and end of the range of old text to be changed.
6042 \(For an insertion, the beginning and end are at the same place.)
6043 No information is given about the length of the text after the change.
6044
6045 Buffer changes made while executing the `before-change-functions'
6046 don't call any before-change or after-change functions.
6047 That's because `inhibit-modification-hooks' is temporarily set non-nil.
6048
6049 If an unhandled error happens in running these functions,
6050 the variable's value remains nil. That prevents the error
6051 from happening repeatedly and making Emacs nonfunctional. */);
6052 Vbefore_change_functions = Qnil;
6053
6054 DEFVAR_LISP ("after-change-functions", Vafter_change_functions,
6055 doc: /* List of functions to call after each text change.
6056 Three arguments are passed to each function: the positions of
6057 the beginning and end of the range of changed text,
6058 and the length in bytes of the pre-change text replaced by that range.
6059 \(For an insertion, the pre-change length is zero;
6060 for a deletion, that length is the number of bytes deleted,
6061 and the post-change beginning and end are at the same place.)
6062
6063 Buffer changes made while executing the `after-change-functions'
6064 don't call any before-change or after-change functions.
6065 That's because `inhibit-modification-hooks' is temporarily set non-nil.
6066
6067 If an unhandled error happens in running these functions,
6068 the variable's value remains nil. That prevents the error
6069 from happening repeatedly and making Emacs nonfunctional. */);
6070 Vafter_change_functions = Qnil;
6071
6072 DEFVAR_LISP ("first-change-hook", Vfirst_change_hook,
6073 doc: /* A list of functions to call before changing a buffer which is unmodified.
6074 The functions are run using the `run-hooks' function. */);
6075 Vfirst_change_hook = Qnil;
6076
6077 DEFVAR_PER_BUFFER ("buffer-undo-list", &BVAR (current_buffer, undo_list), Qnil,
6078 doc: /* List of undo entries in current buffer.
6079 Recent changes come first; older changes follow newer.
6080
6081 An entry (BEG . END) represents an insertion which begins at
6082 position BEG and ends at position END.
6083
6084 An entry (TEXT . POSITION) represents the deletion of the string TEXT
6085 from (abs POSITION). If POSITION is positive, point was at the front
6086 of the text being deleted; if negative, point was at the end.
6087
6088 An entry (t HIGH LOW USEC PSEC) indicates that the buffer was previously
6089 unmodified; (HIGH LOW USEC PSEC) is in the same style as (current-time)
6090 and is the visited file's modification time, as of that time. If the
6091 modification time of the most recent save is different, this entry is
6092 obsolete.
6093
6094 An entry (t . 0) means means the buffer was previously unmodified but
6095 its time stamp was unknown because it was not associated with a file.
6096 An entry (t . -1) is similar, except that it means the buffer's visited
6097 file did not exist.
6098
6099 An entry (nil PROPERTY VALUE BEG . END) indicates that a text property
6100 was modified between BEG and END. PROPERTY is the property name,
6101 and VALUE is the old value.
6102
6103 An entry (apply FUN-NAME . ARGS) means undo the change with
6104 \(apply FUN-NAME ARGS).
6105
6106 An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo
6107 in the active region. BEG and END is the range affected by this entry
6108 and DELTA is the number of characters added or deleted in that range by
6109 this change.
6110
6111 An entry (MARKER . DISTANCE) indicates that the marker MARKER
6112 was adjusted in position by the offset DISTANCE (an integer).
6113
6114 An entry of the form POSITION indicates that point was at the buffer
6115 location given by the integer. Undoing an entry of this form places
6116 point at POSITION.
6117
6118 Entries with value `nil' mark undo boundaries. The undo command treats
6119 the changes between two undo boundaries as a single step to be undone.
6120
6121 If the value of the variable is t, undo information is not recorded. */);
6122
6123 DEFVAR_PER_BUFFER ("mark-active", &BVAR (current_buffer, mark_active), Qnil,
6124 doc: /* Non-nil means the mark and region are currently active in this buffer. */);
6125
6126 DEFVAR_PER_BUFFER ("cache-long-scans", &BVAR (current_buffer, cache_long_scans), Qnil,
6127 doc: /* Non-nil means that Emacs should use caches in attempt to speedup buffer scans.
6128
6129 There is no reason to set this to nil except for debugging purposes.
6130
6131 Normally, the line-motion functions work by scanning the buffer for
6132 newlines. Columnar operations (like `move-to-column' and
6133 `compute-motion') also work by scanning the buffer, summing character
6134 widths as they go. This works well for ordinary text, but if the
6135 buffer's lines are very long (say, more than 500 characters), these
6136 motion functions will take longer to execute. Emacs may also take
6137 longer to update the display.
6138
6139 If `cache-long-scans' is non-nil, these motion functions cache the
6140 results of their scans, and consult the cache to avoid rescanning
6141 regions of the buffer until the text is modified. The caches are most
6142 beneficial when they prevent the most searching---that is, when the
6143 buffer contains long lines and large regions of characters with the
6144 same, fixed screen width.
6145
6146 When `cache-long-scans' is non-nil, processing short lines will
6147 become slightly slower (because of the overhead of consulting the
6148 cache), and the caches will use memory roughly proportional to the
6149 number of newlines and characters whose screen width varies.
6150
6151 Bidirectional editing also requires buffer scans to find paragraph
6152 separators. If you have large paragraphs or no paragraph separators
6153 at all, these scans may be slow. If `cache-long-scans' is non-nil,
6154 results of these scans are cached. This doesn't help too much if
6155 paragraphs are of the reasonable (few thousands of characters) size.
6156
6157 The caches require no explicit maintenance; their accuracy is
6158 maintained internally by the Emacs primitives. Enabling or disabling
6159 the cache should not affect the behavior of any of the motion
6160 functions; it should only affect their performance. */);
6161
6162 DEFVAR_PER_BUFFER ("point-before-scroll", &BVAR (current_buffer, point_before_scroll), Qnil,
6163 doc: /* Value of point before the last series of scroll operations, or nil. */);
6164
6165 DEFVAR_PER_BUFFER ("buffer-file-format", &BVAR (current_buffer, file_format), Qnil,
6166 doc: /* List of formats to use when saving this buffer.
6167 Formats are defined by `format-alist'. This variable is
6168 set when a file is visited. */);
6169
6170 DEFVAR_PER_BUFFER ("buffer-auto-save-file-format",
6171 &BVAR (current_buffer, auto_save_file_format), Qnil,
6172 doc: /* Format in which to write auto-save files.
6173 Should be a list of symbols naming formats that are defined in `format-alist'.
6174 If it is t, which is the default, auto-save files are written in the
6175 same format as a regular save would use. */);
6176
6177 DEFVAR_PER_BUFFER ("buffer-invisibility-spec",
6178 &BVAR (current_buffer, invisibility_spec), Qnil,
6179 doc: /* Invisibility spec of this buffer.
6180 The default is t, which means that text is invisible if it has a non-nil
6181 `invisible' property.
6182 This variable can also be a list. The list can have two kinds of elements:
6183 `ATOM' and `(ATOM . ELLIPSIS)'. A text character is invisible if its
6184 `invisible' property is `ATOM', or has an `invisible' property that is a list
6185 that contains `ATOM'.
6186 If the `(ATOM . ELLIPSIS)' form is used, and `ELLIPSIS' is non-nil, an
6187 ellipsis will be displayed after the invisible characters.
6188 Setting this variable is very fast, much faster than scanning all the text in
6189 the buffer looking for properties to change. */);
6190
6191 DEFVAR_PER_BUFFER ("buffer-display-count",
6192 &BVAR (current_buffer, display_count), Qintegerp,
6193 doc: /* A number incremented each time this buffer is displayed in a window.
6194 The function `set-window-buffer' increments it. */);
6195
6196 DEFVAR_PER_BUFFER ("buffer-display-time",
6197 &BVAR (current_buffer, display_time), Qnil,
6198 doc: /* Time stamp updated each time this buffer is displayed in a window.
6199 The function `set-window-buffer' updates this variable
6200 to the value obtained by calling `current-time'.
6201 If the buffer has never been shown in a window, the value is nil. */);
6202
6203 DEFVAR_LISP ("transient-mark-mode", Vtransient_mark_mode,
6204 doc: /* Non-nil if Transient Mark mode is enabled.
6205 See the command `transient-mark-mode' for a description of this minor mode.
6206
6207 Non-nil also enables highlighting of the region whenever the mark is active.
6208 The variable `highlight-nonselected-windows' controls whether to highlight
6209 all windows or just the selected window.
6210
6211 Lisp programs may give this variable certain special values:
6212
6213 - A value of `lambda' enables Transient Mark mode temporarily.
6214 It is disabled again after any subsequent action that would
6215 normally deactivate the mark (e.g. buffer modification).
6216
6217 - A value of (only . OLDVAL) enables Transient Mark mode
6218 temporarily. After any subsequent point motion command that is
6219 not shift-translated, or any other action that would normally
6220 deactivate the mark (e.g. buffer modification), the value of
6221 `transient-mark-mode' is set to OLDVAL. */);
6222 Vtransient_mark_mode = Qnil;
6223
6224 DEFVAR_LISP ("inhibit-read-only", Vinhibit_read_only,
6225 doc: /* Non-nil means disregard read-only status of buffers or characters.
6226 If the value is t, disregard `buffer-read-only' and all `read-only'
6227 text properties. If the value is a list, disregard `buffer-read-only'
6228 and disregard a `read-only' text property if the property value
6229 is a member of the list. */);
6230 Vinhibit_read_only = Qnil;
6231
6232 DEFVAR_PER_BUFFER ("cursor-type", &BVAR (current_buffer, cursor_type), Qnil,
6233 doc: /* Cursor to use when this buffer is in the selected window.
6234 Values are interpreted as follows:
6235
6236 t use the cursor specified for the frame
6237 nil don't display a cursor
6238 box display a filled box cursor
6239 hollow display a hollow box cursor
6240 bar display a vertical bar cursor with default width
6241 (bar . WIDTH) display a vertical bar cursor with width WIDTH
6242 hbar display a horizontal bar cursor with default height
6243 (hbar . HEIGHT) display a horizontal bar cursor with height HEIGHT
6244 ANYTHING ELSE display a hollow box cursor
6245
6246 When the buffer is displayed in a non-selected window, the
6247 cursor's appearance is instead controlled by the variable
6248 `cursor-in-non-selected-windows'. */);
6249
6250 DEFVAR_PER_BUFFER ("line-spacing",
6251 &BVAR (current_buffer, extra_line_spacing), Qnumberp,
6252 doc: /* Additional space to put between lines when displaying a buffer.
6253 The space is measured in pixels, and put below lines on graphic displays,
6254 see `display-graphic-p'.
6255 If value is a floating point number, it specifies the spacing relative
6256 to the default frame line height. A value of nil means add no extra space. */);
6257
6258 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
6259 &BVAR (current_buffer, cursor_in_non_selected_windows), Qnil,
6260 doc: /* Non-nil means show a cursor in non-selected windows.
6261 If nil, only shows a cursor in the selected window.
6262 If t, displays a cursor related to the usual cursor type
6263 \(a solid box becomes hollow, a bar becomes a narrower bar).
6264 You can also specify the cursor type as in the `cursor-type' variable.
6265 Use Custom to set this variable and update the display." */);
6266
6267 DEFVAR_LISP ("kill-buffer-query-functions", Vkill_buffer_query_functions,
6268 doc: /* List of functions called with no args to query before killing a buffer.
6269 The buffer being killed will be current while the functions are running.
6270
6271 If any of them returns nil, the buffer is not killed. Functions run by
6272 this hook are supposed to not change the current buffer. */);
6273 Vkill_buffer_query_functions = Qnil;
6274
6275 DEFVAR_LISP ("change-major-mode-hook", Vchange_major_mode_hook,
6276 doc: /* Normal hook run before changing the major mode of a buffer.
6277 The function `kill-all-local-variables' runs this before doing anything else. */);
6278 Vchange_major_mode_hook = Qnil;
6279 DEFSYM (Qchange_major_mode_hook, "change-major-mode-hook");
6280
6281 DEFVAR_LISP ("buffer-list-update-hook", Vbuffer_list_update_hook,
6282 doc: /* Hook run when the buffer list changes.
6283 Functions running this hook are, `get-buffer-create',
6284 `make-indirect-buffer', `rename-buffer', `kill-buffer',
6285 `bury-buffer-internal' and `select-window'. */);
6286 Vbuffer_list_update_hook = Qnil;
6287 DEFSYM (Qbuffer_list_update_hook, "buffer-list-update-hook");
6288
6289 defsubr (&Sbuffer_live_p);
6290 defsubr (&Sbuffer_list);
6291 defsubr (&Sget_buffer);
6292 defsubr (&Sget_file_buffer);
6293 defsubr (&Sget_buffer_create);
6294 defsubr (&Smake_indirect_buffer);
6295 defsubr (&Sgenerate_new_buffer_name);
6296 defsubr (&Sbuffer_name);
6297 defsubr (&Sbuffer_file_name);
6298 defsubr (&Sbuffer_base_buffer);
6299 defsubr (&Sbuffer_local_value);
6300 defsubr (&Sbuffer_local_variables);
6301 defsubr (&Sbuffer_modified_p);
6302 defsubr (&Sforce_mode_line_update);
6303 defsubr (&Sset_buffer_modified_p);
6304 defsubr (&Sbuffer_modified_tick);
6305 defsubr (&Sbuffer_chars_modified_tick);
6306 defsubr (&Srename_buffer);
6307 defsubr (&Sother_buffer);
6308 defsubr (&Sbuffer_enable_undo);
6309 defsubr (&Skill_buffer);
6310 defsubr (&Sbury_buffer_internal);
6311 defsubr (&Sset_buffer_major_mode);
6312 defsubr (&Scurrent_buffer);
6313 defsubr (&Sset_buffer);
6314 defsubr (&Sbarf_if_buffer_read_only);
6315 defsubr (&Serase_buffer);
6316 defsubr (&Sbuffer_swap_text);
6317 defsubr (&Sset_buffer_multibyte);
6318 defsubr (&Skill_all_local_variables);
6319
6320 defsubr (&Soverlayp);
6321 defsubr (&Smake_overlay);
6322 defsubr (&Sdelete_overlay);
6323 defsubr (&Sdelete_all_overlays);
6324 defsubr (&Smove_overlay);
6325 defsubr (&Soverlay_start);
6326 defsubr (&Soverlay_end);
6327 defsubr (&Soverlay_buffer);
6328 defsubr (&Soverlay_properties);
6329 defsubr (&Soverlays_at);
6330 defsubr (&Soverlays_in);
6331 defsubr (&Snext_overlay_change);
6332 defsubr (&Sprevious_overlay_change);
6333 defsubr (&Soverlay_recenter);
6334 defsubr (&Soverlay_lists);
6335 defsubr (&Soverlay_get);
6336 defsubr (&Soverlay_put);
6337 defsubr (&Srestore_buffer_modified_p);
6338 }
6339
6340 void
6341 keys_of_buffer (void)
6342 {
6343 initial_define_key (control_x_map, 'b', "switch-to-buffer");
6344 initial_define_key (control_x_map, 'k', "kill-buffer");
6345
6346 /* This must not be in syms_of_buffer, because Qdisabled is not
6347 initialized when that function gets called. */
6348 Fput (intern_c_string ("erase-buffer"), Qdisabled, Qt);
6349 }