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