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