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