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