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