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