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