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