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