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