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