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