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