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