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