(rmail-show-message): Use overlays, not text properties.
[bpt/emacs.git] / src / buffer.c
CommitLineData
1ab256cb 1/* Buffer manipulation primitives for GNU Emacs.
4158c17d 2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994
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
19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21
2381d133
JB
22#include <sys/types.h>
23#include <sys/stat.h>
1ab256cb
RM
24#include <sys/param.h>
25
26#ifndef MAXPATHLEN
27/* in 4.1, param.h fails to define this. */
28#define MAXPATHLEN 1024
29#endif /* not MAXPATHLEN */
30
18160b98 31#include <config.h>
1ab256cb 32#include "lisp.h"
21cf4cf8 33#include "intervals.h"
1ab256cb
RM
34#include "window.h"
35#include "commands.h"
36#include "buffer.h"
1ab256cb 37#include "indent.h"
d014bf88 38#include "blockinput.h"
1ab256cb
RM
39
40struct buffer *current_buffer; /* the current buffer */
41
42/* First buffer in chain of all buffers (in reverse order of creation).
43 Threaded through ->next. */
44
45struct buffer *all_buffers;
46
47/* This structure holds the default values of the buffer-local variables
48 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer.
49 The default value occupies the same slot in this structure
50 as an individual buffer's value occupies in that buffer.
51 Setting the default value also goes through the alist of buffers
52 and stores into each buffer that does not say it has a local value. */
53
54struct buffer buffer_defaults;
55
56/* A Lisp_Object pointer to the above, used for staticpro */
57
58static Lisp_Object Vbuffer_defaults;
59
60/* This structure marks which slots in a buffer have corresponding
61 default values in buffer_defaults.
62 Each such slot has a nonzero value in this structure.
63 The value has only one nonzero bit.
64
65 When a buffer has its own local value for a slot,
66 the bit for that slot (found in the same slot in this structure)
67 is turned on in the buffer's local_var_flags slot.
68
69 If a slot in this structure is -1, then even though there may
70 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it;
71 and the corresponding slot in buffer_defaults is not used.
72
73 If a slot is -2, then there is no DEFVAR_PER_BUFFER for it,
74 but there is a default value which is copied into each buffer.
75
76 If a slot in this structure is negative, 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 in this structure corresponding to a DEFVAR_PER_BUFFER is
81 zero, that is a bug */
82
83struct buffer buffer_local_flags;
84
85/* This structure holds the names of symbols whose values may be
86 buffer-local. It is indexed and accessed in the same way as the above. */
87
88struct buffer buffer_local_symbols;
89/* A Lisp_Object pointer to the above, used for staticpro */
90static Lisp_Object Vbuffer_local_symbols;
91
0fa3ba92
JB
92/* This structure holds the required types for the values in the
93 buffer-local slots. If a slot contains Qnil, then the
94 corresponding buffer slot may contain a value of any type. If a
95 slot contains an integer, then prospective values' tags must be
96 equal to that integer. When a tag does not match, the function
97 buffer_slot_type_mismatch will signal an error. */
98struct buffer buffer_local_types;
99
1ab256cb 100Lisp_Object Fset_buffer ();
01050cb5 101void set_buffer_internal ();
173f2a64 102static void call_overlay_mod_hooks ();
1ab256cb
RM
103
104/* Alist of all buffer names vs the buffers. */
105/* This used to be a variable, but is no longer,
106 to prevent lossage due to user rplac'ing this alist or its elements. */
107Lisp_Object Vbuffer_alist;
108
109/* Functions to call before and after each text change. */
110Lisp_Object Vbefore_change_function;
111Lisp_Object Vafter_change_function;
5f079267
RS
112Lisp_Object Vbefore_change_functions;
113Lisp_Object Vafter_change_functions;
1ab256cb 114
c48f61ef
RS
115Lisp_Object Vtransient_mark_mode;
116
a96b68f1
RS
117/* t means ignore all read-only text properties.
118 A list means ignore such a property if its value is a member of the list.
119 Any non-nil value means ignore buffer-read-only. */
120Lisp_Object Vinhibit_read_only;
121
dcdffbf6
RS
122/* List of functions to call that can query about killing a buffer.
123 If any of these functions returns nil, we don't kill it. */
124Lisp_Object Vkill_buffer_query_functions;
125
dbc4e1c1
JB
126/* List of functions to call before changing an unmodified buffer. */
127Lisp_Object Vfirst_change_hook;
128Lisp_Object Qfirst_change_hook;
1ab256cb
RM
129
130Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local;
131
132Lisp_Object Qprotected_field;
133
134Lisp_Object QSFundamental; /* A string "Fundamental" */
135
136Lisp_Object Qkill_buffer_hook;
137
5fe0b67e
RS
138Lisp_Object Qget_file_buffer;
139
52f8ec73
JB
140Lisp_Object Qoverlayp;
141
5985d248
KH
142Lisp_Object Qpriority, Qwindow;
143
294d215f
RS
144Lisp_Object Qmodification_hooks;
145Lisp_Object Qinsert_in_front_hooks;
146Lisp_Object Qinsert_behind_hooks;
147
1ab256cb
RM
148/* For debugging; temporary. See set_buffer_internal. */
149/* Lisp_Object Qlisp_mode, Vcheck_symbol; */
150
54ad07d3
RS
151#ifdef MSDOS
152Lisp_Object Qbuffer_file_type;
153#endif
154
1ab256cb
RM
155nsberror (spec)
156 Lisp_Object spec;
157{
158 if (XTYPE (spec) == Lisp_String)
159 error ("No buffer named %s", XSTRING (spec)->data);
160 error ("Invalid buffer argument");
161}
162\f
163DEFUN ("buffer-list", Fbuffer_list, Sbuffer_list, 0, 0, 0,
164 "Return a list of all existing live buffers.")
165 ()
166{
167 return Fmapcar (Qcdr, Vbuffer_alist);
168}
169
170DEFUN ("get-buffer", Fget_buffer, Sget_buffer, 1, 1, 0,
171 "Return the buffer named NAME (a string).\n\
172If there is no live buffer named NAME, return nil.\n\
173NAME may also be a buffer; if so, the value is that buffer.")
174 (name)
175 register Lisp_Object name;
176{
177 if (XTYPE (name) == Lisp_Buffer)
178 return name;
179 CHECK_STRING (name, 0);
180
181 return Fcdr (Fassoc (name, Vbuffer_alist));
182}
183
184DEFUN ("get-file-buffer", Fget_file_buffer, Sget_file_buffer, 1, 1, 0,
185 "Return the buffer visiting file FILENAME (a string).\n\
92194d02 186The buffer's `buffer-file-name' must match exactly the expansion of FILENAME.\n\
1ab256cb
RM
187If there is no such live buffer, return nil.")
188 (filename)
189 register Lisp_Object filename;
190{
191 register Lisp_Object tail, buf, tem;
5fe0b67e
RS
192 Lisp_Object handler;
193
1ab256cb
RM
194 CHECK_STRING (filename, 0);
195 filename = Fexpand_file_name (filename, Qnil);
196
5fe0b67e
RS
197 /* If the file name has special constructs in it,
198 call the corresponding file handler. */
a617e913 199 handler = Ffind_file_name_handler (filename, Qget_file_buffer);
5fe0b67e
RS
200 if (!NILP (handler))
201 return call2 (handler, Qget_file_buffer, filename);
202
1ab256cb
RM
203 for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr)
204 {
205 buf = Fcdr (XCONS (tail)->car);
206 if (XTYPE (buf) != Lisp_Buffer) continue;
207 if (XTYPE (XBUFFER (buf)->filename) != Lisp_String) continue;
208 tem = Fstring_equal (XBUFFER (buf)->filename, filename);
265a9e55 209 if (!NILP (tem))
1ab256cb
RM
210 return buf;
211 }
212 return Qnil;
213}
214
215/* Incremented for each buffer created, to assign the buffer number. */
216int buffer_count;
217
218DEFUN ("get-buffer-create", Fget_buffer_create, Sget_buffer_create, 1, 1, 0,
219 "Return the buffer named NAME, or create such a buffer and return it.\n\
220A new buffer is created if there is no live buffer named NAME.\n\
b44895bc 221If NAME starts with a space, the new buffer does not keep undo information.\n\
1ab256cb
RM
222If NAME is a buffer instead of a string, then it is the value returned.\n\
223The value is never nil.")
224 (name)
225 register Lisp_Object name;
226{
227 register Lisp_Object buf, function, tem;
228 int count = specpdl_ptr - specpdl;
229 register struct buffer *b;
230
231 buf = Fget_buffer (name);
265a9e55 232 if (!NILP (buf))
1ab256cb
RM
233 return buf;
234
31cd83e9
KH
235 if (XSTRING (name)->size == 0)
236 error ("Empty string for buffer name is not allowed");
237
9ac0d9e0 238 b = (struct buffer *) xmalloc (sizeof (struct buffer));
1ab256cb
RM
239
240 BUF_GAP_SIZE (b) = 20;
9ac0d9e0 241 BLOCK_INPUT;
1ab256cb 242 BUFFER_ALLOC (BUF_BEG_ADDR (b), BUF_GAP_SIZE (b));
9ac0d9e0 243 UNBLOCK_INPUT;
1ab256cb
RM
244 if (! BUF_BEG_ADDR (b))
245 memory_full ();
246
247 BUF_PT (b) = 1;
248 BUF_GPT (b) = 1;
249 BUF_BEGV (b) = 1;
250 BUF_ZV (b) = 1;
251 BUF_Z (b) = 1;
252 BUF_MODIFF (b) = 1;
253
254 /* Put this on the chain of all buffers including killed ones. */
255 b->next = all_buffers;
256 all_buffers = b;
257
258 b->mark = Fmake_marker ();
259 /*b->number = make_number (++buffer_count);*/
260 b->name = name;
261 if (XSTRING (name)->data[0] != ' ')
262 b->undo_list = Qnil;
263 else
264 b->undo_list = Qt;
265
266 reset_buffer (b);
267
268 /* Put this in the alist of all live buffers. */
269 XSET (buf, Lisp_Buffer, b);
270 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
271
272 b->mark = Fmake_marker ();
273 b->markers = Qnil;
274 b->name = name;
275
276 function = buffer_defaults.major_mode;
265a9e55 277 if (NILP (function))
1ab256cb
RM
278 {
279 tem = Fget (current_buffer->major_mode, Qmode_class);
280 if (EQ (tem, Qnil))
281 function = current_buffer->major_mode;
282 }
283
265a9e55 284 if (NILP (function) || EQ (function, Qfundamental_mode))
1ab256cb
RM
285 return buf;
286
287 /* To select a nonfundamental mode,
288 select the buffer temporarily and then call the mode function. */
289
290 record_unwind_protect (save_excursion_restore, save_excursion_save ());
291
292 Fset_buffer (buf);
293 call0 (function);
294
295 return unbind_to (count, buf);
296}
297
298/* Reinitialize everything about a buffer except its name and contents. */
299
300void
301reset_buffer (b)
302 register struct buffer *b;
303{
304 b->filename = Qnil;
305 b->directory = (current_buffer) ? current_buffer->directory : Qnil;
306 b->modtime = 0;
307 b->save_modified = 1;
291026b5 308 XFASTINT (b->save_length) = 0;
1ab256cb
RM
309 b->last_window_start = 1;
310 b->backed_up = Qnil;
311 b->auto_save_modified = 0;
84f6bcba 312 b->auto_save_failure_time = -1;
1ab256cb
RM
313 b->auto_save_file_name = Qnil;
314 b->read_only = Qnil;
2eec3b4e
RS
315 b->overlays_before = Qnil;
316 b->overlays_after = Qnil;
317 XFASTINT (b->overlay_center) = 1;
dfda7a7f 318 b->mark_active = Qnil;
33f7013e
JA
319
320 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
321 INITIALIZE_INTERVAL (b, NULL_INTERVAL);
322
1ab256cb
RM
323 reset_buffer_local_variables(b);
324}
325
c48f61ef 326reset_buffer_local_variables (b)
1ab256cb
RM
327 register struct buffer *b;
328{
329 register int offset;
330
331 /* Reset the major mode to Fundamental, together with all the
332 things that depend on the major mode.
333 default-major-mode is handled at a higher level.
334 We ignore it here. */
335 b->major_mode = Qfundamental_mode;
336 b->keymap = Qnil;
337 b->abbrev_table = Vfundamental_mode_abbrev_table;
338 b->mode_name = QSFundamental;
339 b->minor_modes = Qnil;
340 b->downcase_table = Vascii_downcase_table;
341 b->upcase_table = Vascii_upcase_table;
e9edf33c
RS
342 b->case_canon_table = Vascii_canon_table;
343 b->case_eqv_table = Vascii_eqv_table;
1ab256cb
RM
344#if 0
345 b->sort_table = XSTRING (Vascii_sort_table);
346 b->folding_sort_table = XSTRING (Vascii_folding_sort_table);
347#endif /* 0 */
348
349 /* Reset all per-buffer variables to their defaults. */
350 b->local_var_alist = Qnil;
351 b->local_var_flags = 0;
352
353 /* For each slot that has a default value,
354 copy that into the slot. */
355
356 for (offset = (char *)&buffer_local_flags.name - (char *)&buffer_local_flags;
357 offset < sizeof (struct buffer);
358 offset += sizeof (Lisp_Object)) /* sizeof int == sizeof Lisp_Object */
359 if (*(int *)(offset + (char *) &buffer_local_flags) > 0
360 || *(int *)(offset + (char *) &buffer_local_flags) == -2)
361 *(Lisp_Object *)(offset + (char *)b) =
362 *(Lisp_Object *)(offset + (char *)&buffer_defaults);
363}
364
01050cb5
RM
365/* We split this away from generate-new-buffer, because rename-buffer
366 and set-visited-file-name ought to be able to use this to really
367 rename the buffer properly. */
368
369DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name, Sgenerate_new_buffer_name,
c273e647 370 1, 2, 0,
01050cb5
RM
371 "Return a string that is the name of no existing buffer based on NAME.\n\
372If there is no live buffer named NAME, then return NAME.\n\
1ab256cb 373Otherwise modify name by appending `<NUMBER>', incrementing NUMBER\n\
c273e647 374until an unused name is found, and then return that name.\n\
03bdd54c 375Optional second argument IGNORE specifies a name that is okay to use\n\
c273e647 376\(if it is in the sequence to be tried)\n\
e8b3a22d 377even if a buffer with that name exists.")
c273e647
RS
378 (name, ignore)
379 register Lisp_Object name, ignore;
1ab256cb
RM
380{
381 register Lisp_Object gentemp, tem;
382 int count;
383 char number[10];
384
385 CHECK_STRING (name, 0);
386
387 tem = Fget_buffer (name);
265a9e55 388 if (NILP (tem))
01050cb5 389 return name;
1ab256cb
RM
390
391 count = 1;
392 while (1)
393 {
394 sprintf (number, "<%d>", ++count);
395 gentemp = concat2 (name, build_string (number));
638e4fc3 396 tem = Fstring_equal (gentemp, ignore);
c273e647
RS
397 if (!NILP (tem))
398 return gentemp;
1ab256cb 399 tem = Fget_buffer (gentemp);
265a9e55 400 if (NILP (tem))
01050cb5 401 return gentemp;
1ab256cb
RM
402 }
403}
404
405\f
406DEFUN ("buffer-name", Fbuffer_name, Sbuffer_name, 0, 1, 0,
407 "Return the name of BUFFER, as a string.\n\
01050cb5 408With no argument or nil as argument, return the name of the current buffer.")
1ab256cb
RM
409 (buffer)
410 register Lisp_Object buffer;
411{
265a9e55 412 if (NILP (buffer))
1ab256cb
RM
413 return current_buffer->name;
414 CHECK_BUFFER (buffer, 0);
415 return XBUFFER (buffer)->name;
416}
417
418DEFUN ("buffer-file-name", Fbuffer_file_name, Sbuffer_file_name, 0, 1, 0,
419 "Return name of file BUFFER is visiting, or nil if none.\n\
420No argument or nil as argument means use the current buffer.")
421 (buffer)
422 register Lisp_Object buffer;
423{
265a9e55 424 if (NILP (buffer))
1ab256cb
RM
425 return current_buffer->filename;
426 CHECK_BUFFER (buffer, 0);
427 return XBUFFER (buffer)->filename;
428}
429
430DEFUN ("buffer-local-variables", Fbuffer_local_variables,
431 Sbuffer_local_variables, 0, 1, 0,
432 "Return an alist of variables that are buffer-local in BUFFER.\n\
553defa4
RS
433Most elements look like (SYMBOL . VALUE), describing one variable.\n\
434For a symbol that is locally unbound, just the symbol appears in the value.\n\
1ab256cb
RM
435Note that storing new VALUEs in these elements doesn't change the variables.\n\
436No argument or nil as argument means use current buffer as BUFFER.")
437 (buffer)
438 register Lisp_Object buffer;
439{
440 register struct buffer *buf;
553defa4 441 register Lisp_Object result;
1ab256cb 442
265a9e55 443 if (NILP (buffer))
1ab256cb
RM
444 buf = current_buffer;
445 else
446 {
447 CHECK_BUFFER (buffer, 0);
448 buf = XBUFFER (buffer);
449 }
450
553defa4
RS
451 result = Qnil;
452
1ab256cb
RM
453 {
454 /* Reference each variable in the alist in our current buffer.
455 If inquiring about the current buffer, this gets the current values,
456 so store them into the alist so the alist is up to date.
457 If inquiring about some other buffer, this swaps out any values
458 for that buffer, making the alist up to date automatically. */
553defa4
RS
459 register Lisp_Object tail;
460 for (tail = buf->local_var_alist; CONSP (tail); tail = XCONS (tail)->cdr)
1ab256cb 461 {
553defa4
RS
462 Lisp_Object val, elt;
463
464 elt = XCONS (tail)->car;
465
1ab256cb 466 if (buf == current_buffer)
553defa4
RS
467 val = find_symbol_value (XCONS (elt)->car);
468 else
469 val = XCONS (elt)->cdr;
470
471 /* If symbol is unbound, put just the symbol in the list. */
472 if (EQ (val, Qunbound))
473 result = Fcons (XCONS (elt)->car, result);
474 /* Otherwise, put (symbol . value) in the list. */
475 else
476 result = Fcons (Fcons (XCONS (elt)->car, val), result);
1ab256cb
RM
477 }
478 }
479
1ab256cb
RM
480 /* Add on all the variables stored in special slots. */
481 {
482 register int offset, mask;
483
484 for (offset = (char *)&buffer_local_symbols.name - (char *)&buffer_local_symbols;
485 offset < sizeof (struct buffer);
486 offset += (sizeof (int))) /* sizeof int == sizeof Lisp_Object */
487 {
488 mask = *(int *)(offset + (char *) &buffer_local_flags);
489 if (mask == -1 || (buf->local_var_flags & mask))
490 if (XTYPE (*(Lisp_Object *)(offset + (char *)&buffer_local_symbols))
491 == Lisp_Symbol)
553defa4
RS
492 result = Fcons (Fcons (*(Lisp_Object *)(offset + (char *)&buffer_local_symbols),
493 *(Lisp_Object *)(offset + (char *)buf)),
494 result);
1ab256cb
RM
495 }
496 }
553defa4
RS
497
498 return result;
1ab256cb
RM
499}
500
501\f
502DEFUN ("buffer-modified-p", Fbuffer_modified_p, Sbuffer_modified_p,
503 0, 1, 0,
504 "Return t if BUFFER was modified since its file was last read or saved.\n\
505No argument or nil as argument means use current buffer as BUFFER.")
506 (buffer)
507 register Lisp_Object buffer;
508{
509 register struct buffer *buf;
265a9e55 510 if (NILP (buffer))
1ab256cb
RM
511 buf = current_buffer;
512 else
513 {
514 CHECK_BUFFER (buffer, 0);
515 buf = XBUFFER (buffer);
516 }
517
518 return buf->save_modified < BUF_MODIFF (buf) ? Qt : Qnil;
519}
520
521DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p, Sset_buffer_modified_p,
522 1, 1, 0,
523 "Mark current buffer as modified or unmodified according to FLAG.\n\
524A non-nil FLAG means mark the buffer modified.")
525 (flag)
526 register Lisp_Object flag;
527{
528 register int already;
529 register Lisp_Object fn;
530
531#ifdef CLASH_DETECTION
532 /* If buffer becoming modified, lock the file.
533 If buffer becoming unmodified, unlock the file. */
534
535 fn = current_buffer->filename;
265a9e55 536 if (!NILP (fn))
1ab256cb
RM
537 {
538 already = current_buffer->save_modified < MODIFF;
265a9e55 539 if (!already && !NILP (flag))
1ab256cb 540 lock_file (fn);
265a9e55 541 else if (already && NILP (flag))
1ab256cb
RM
542 unlock_file (fn);
543 }
544#endif /* CLASH_DETECTION */
545
265a9e55 546 current_buffer->save_modified = NILP (flag) ? MODIFF : 0;
1ab256cb
RM
547 update_mode_lines++;
548 return flag;
549}
550
551DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick,
552 0, 1, 0,
553 "Return BUFFER's tick counter, incremented for each change in text.\n\
554Each buffer has a tick counter which is incremented each time the text in\n\
555that buffer is changed. It wraps around occasionally.\n\
556No argument or nil as argument means use current buffer as BUFFER.")
557 (buffer)
558 register Lisp_Object buffer;
559{
560 register struct buffer *buf;
265a9e55 561 if (NILP (buffer))
1ab256cb
RM
562 buf = current_buffer;
563 else
564 {
565 CHECK_BUFFER (buffer, 0);
566 buf = XBUFFER (buffer);
567 }
568
569 return make_number (BUF_MODIFF (buf));
570}
571\f
01050cb5 572DEFUN ("rename-buffer", Frename_buffer, Srename_buffer, 1, 2,
4c7e5f09 573 "sRename buffer (to new name): \nP",
1ab256cb 574 "Change current buffer's name to NEWNAME (a string).\n\
3bd779aa 575If second arg UNIQUE is nil or omitted, it is an error if a\n\
01050cb5 576buffer named NEWNAME already exists.\n\
3bd779aa 577If UNIQUE is non-nil, come up with a new name using\n\
01050cb5 578`generate-new-buffer-name'.\n\
3bd779aa
RS
579Interactively, you can set UNIQUE with a prefix argument.\n\
580We return the name we actually gave the buffer.\n\
1ab256cb 581This does not change the name of the visited file (if any).")
3bd779aa
RS
582 (name, unique)
583 register Lisp_Object name, unique;
1ab256cb
RM
584{
585 register Lisp_Object tem, buf;
586
587 CHECK_STRING (name, 0);
588 tem = Fget_buffer (name);
c059b5ea
RM
589 /* Don't short-circuit if UNIQUE is t. That is a useful way to rename
590 the buffer automatically so you can create another with the original name.
591 It makes UNIQUE equivalent to
592 (rename-buffer (generate-new-buffer-name NAME)). */
593 if (NILP (unique) && XBUFFER (tem) == current_buffer)
01050cb5 594 return current_buffer->name;
265a9e55 595 if (!NILP (tem))
01050cb5 596 {
3bd779aa 597 if (!NILP (unique))
c273e647 598 name = Fgenerate_new_buffer_name (name, current_buffer->name);
01050cb5
RM
599 else
600 error ("Buffer name \"%s\" is in use", XSTRING (name)->data);
601 }
1ab256cb
RM
602
603 current_buffer->name = name;
76f590d7
JB
604
605 /* Catch redisplay's attention. Unless we do this, the mode lines for
606 any windows displaying current_buffer will stay unchanged. */
607 update_mode_lines++;
608
1ab256cb
RM
609 XSET (buf, Lisp_Buffer, current_buffer);
610 Fsetcar (Frassq (buf, Vbuffer_alist), name);
265a9e55 611 if (NILP (current_buffer->filename) && !NILP (current_buffer->auto_save_file_name))
1ab256cb 612 call0 (intern ("rename-auto-save-file"));
01050cb5 613 return name;
1ab256cb
RM
614}
615
a0ebb746 616DEFUN ("other-buffer", Fother_buffer, Sother_buffer, 0, 2, 0,
1ab256cb 617 "Return most recently selected buffer other than BUFFER.\n\
a0ebb746
JB
618Buffers not visible in windows are preferred to visible buffers,\n\
619unless optional second argument VISIBLE-OK is non-nil.\n\
1ab256cb
RM
620If no other buffer exists, the buffer `*scratch*' is returned.\n\
621If BUFFER is omitted or nil, some interesting buffer is returned.")
a0ebb746
JB
622 (buffer, visible_ok)
623 register Lisp_Object buffer, visible_ok;
1ab256cb
RM
624{
625 register Lisp_Object tail, buf, notsogood, tem;
626 notsogood = Qnil;
627
265a9e55 628 for (tail = Vbuffer_alist; !NILP (tail); tail = Fcdr (tail))
1ab256cb
RM
629 {
630 buf = Fcdr (Fcar (tail));
631 if (EQ (buf, buffer))
632 continue;
633 if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ')
634 continue;
a0ebb746 635 if (NILP (visible_ok))
db732e5a 636 tem = Fget_buffer_window (buf, Qt);
a0ebb746
JB
637 else
638 tem = Qnil;
265a9e55 639 if (NILP (tem))
1ab256cb 640 return buf;
265a9e55 641 if (NILP (notsogood))
1ab256cb
RM
642 notsogood = buf;
643 }
265a9e55 644 if (!NILP (notsogood))
1ab256cb
RM
645 return notsogood;
646 return Fget_buffer_create (build_string ("*scratch*"));
647}
648\f
5b8bcf48 649DEFUN ("buffer-disable-undo", Fbuffer_disable_undo, Sbuffer_disable_undo, 0, 1,
1ab256cb 6500,
5b8bcf48
RS
651 "Make BUFFER stop keeping undo information.\n\
652No argument or nil as argument means do this for the current buffer.")
ffd56f97
JB
653 (buffer)
654 register Lisp_Object buffer;
1ab256cb 655{
ffd56f97
JB
656 Lisp_Object real_buffer;
657
658 if (NILP (buffer))
659 XSET (real_buffer, Lisp_Buffer, current_buffer);
660 else
661 {
662 real_buffer = Fget_buffer (buffer);
663 if (NILP (real_buffer))
664 nsberror (buffer);
665 }
666
667 XBUFFER (real_buffer)->undo_list = Qt;
668
1ab256cb
RM
669 return Qnil;
670}
671
672DEFUN ("buffer-enable-undo", Fbuffer_enable_undo, Sbuffer_enable_undo,
673 0, 1, "",
674 "Start keeping undo information for buffer BUFFER.\n\
675No argument or nil as argument means do this for the current buffer.")
ffd56f97
JB
676 (buffer)
677 register Lisp_Object buffer;
1ab256cb 678{
ffd56f97 679 Lisp_Object real_buffer;
1ab256cb 680
ffd56f97
JB
681 if (NILP (buffer))
682 XSET (real_buffer, Lisp_Buffer, current_buffer);
1ab256cb
RM
683 else
684 {
ffd56f97
JB
685 real_buffer = Fget_buffer (buffer);
686 if (NILP (real_buffer))
687 nsberror (buffer);
1ab256cb
RM
688 }
689
ffd56f97
JB
690 if (EQ (XBUFFER (real_buffer)->undo_list, Qt))
691 XBUFFER (real_buffer)->undo_list = Qnil;
1ab256cb
RM
692
693 return Qnil;
694}
695
696/*
697 DEFVAR_LISP ("kill-buffer-hook", no_cell, "\
698Hook to be run (by `run-hooks', which see) when a buffer is killed.\n\
699The buffer being killed will be current while the hook is running.\n\
700See `kill-buffer'."
701 */
702DEFUN ("kill-buffer", Fkill_buffer, Skill_buffer, 1, 1, "bKill buffer: ",
703 "Kill the buffer BUFFER.\n\
704The argument may be a buffer or may be the name of a buffer.\n\
705An argument of nil means kill the current buffer.\n\n\
706Value is t if the buffer is actually killed, nil if user says no.\n\n\
707The value of `kill-buffer-hook' (which may be local to that buffer),\n\
708if not void, is a list of functions to be called, with no arguments,\n\
709before the buffer is actually killed. The buffer to be killed is current\n\
710when the hook functions are called.\n\n\
711Any processes that have this buffer as the `process-buffer' are killed\n\
712with `delete-process'.")
713 (bufname)
714 Lisp_Object bufname;
715{
716 Lisp_Object buf;
717 register struct buffer *b;
718 register Lisp_Object tem;
719 register struct Lisp_Marker *m;
720 struct gcpro gcpro1, gcpro2;
721
265a9e55 722 if (NILP (bufname))
1ab256cb
RM
723 buf = Fcurrent_buffer ();
724 else
725 buf = Fget_buffer (bufname);
265a9e55 726 if (NILP (buf))
1ab256cb
RM
727 nsberror (bufname);
728
729 b = XBUFFER (buf);
730
731 /* Query if the buffer is still modified. */
265a9e55 732 if (INTERACTIVE && !NILP (b->filename)
1ab256cb
RM
733 && BUF_MODIFF (b) > b->save_modified)
734 {
735 GCPRO2 (buf, bufname);
736 tem = do_yes_or_no_p (format1 ("Buffer %s modified; kill anyway? ",
737 XSTRING (b->name)->data));
738 UNGCPRO;
265a9e55 739 if (NILP (tem))
1ab256cb
RM
740 return Qnil;
741 }
742
dcdffbf6 743 /* Run hooks with the buffer to be killed the current buffer. */
1ab256cb
RM
744 {
745 register Lisp_Object val;
746 int count = specpdl_ptr - specpdl;
dcdffbf6 747 Lisp_Object list;
1ab256cb
RM
748
749 record_unwind_protect (save_excursion_restore, save_excursion_save ());
750 set_buffer_internal (b);
dcdffbf6
RS
751
752 /* First run the query functions; if any query is answered no,
753 don't kill the buffer. */
754 for (list = Vkill_buffer_query_functions; !NILP (list); list = Fcdr (list))
755 {
756 tem = call0 (Fcar (list));
757 if (NILP (tem))
758 return unbind_to (count, Qnil);
759 }
760
761 /* Then run the hooks. */
fd186f07
RS
762 if (!NILP (Vrun_hooks))
763 call1 (Vrun_hooks, Qkill_buffer_hook);
1ab256cb
RM
764 unbind_to (count, Qnil);
765 }
766
767 /* We have no more questions to ask. Verify that it is valid
768 to kill the buffer. This must be done after the questions
769 since anything can happen within do_yes_or_no_p. */
770
771 /* Don't kill the minibuffer now current. */
772 if (EQ (buf, XWINDOW (minibuf_window)->buffer))
773 return Qnil;
774
265a9e55 775 if (NILP (b->name))
1ab256cb
RM
776 return Qnil;
777
778 /* Make this buffer not be current.
779 In the process, notice if this is the sole visible buffer
780 and give up if so. */
781 if (b == current_buffer)
782 {
172a9c1f 783 tem = Fother_buffer (buf, Qnil);
1ab256cb
RM
784 Fset_buffer (tem);
785 if (b == current_buffer)
786 return Qnil;
787 }
788
789 /* Now there is no question: we can kill the buffer. */
790
791#ifdef CLASH_DETECTION
792 /* Unlock this buffer's file, if it is locked. */
793 unlock_buffer (b);
794#endif /* CLASH_DETECTION */
795
1ab256cb 796 kill_buffer_processes (buf);
1ab256cb
RM
797
798 tem = Vinhibit_quit;
799 Vinhibit_quit = Qt;
800 Vbuffer_alist = Fdelq (Frassq (buf, Vbuffer_alist), Vbuffer_alist);
801 Freplace_buffer_in_windows (buf);
802 Vinhibit_quit = tem;
803
804 /* Delete any auto-save file. */
805 if (XTYPE (b->auto_save_file_name) == Lisp_String)
806 {
807 Lisp_Object tem;
808 tem = Fsymbol_value (intern ("delete-auto-save-files"));
265a9e55 809 if (! NILP (tem))
1ab256cb
RM
810 unlink (XSTRING (b->auto_save_file_name)->data);
811 }
812
813 /* Unchain all markers of this buffer
814 and leave them pointing nowhere. */
815 for (tem = b->markers; !EQ (tem, Qnil); )
816 {
817 m = XMARKER (tem);
818 m->buffer = 0;
819 tem = m->chain;
820 m->chain = Qnil;
821 }
822 b->markers = Qnil;
823
33f7013e
JA
824 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
825 INITIALIZE_INTERVAL (b, NULL_INTERVAL);
826 /* Perhaps we should explicitly free the interval tree here... */
827
1ab256cb 828 b->name = Qnil;
9ac0d9e0 829 BLOCK_INPUT;
1ab256cb 830 BUFFER_FREE (BUF_BEG_ADDR (b));
9ac0d9e0 831 UNBLOCK_INPUT;
1ab256cb
RM
832 b->undo_list = Qnil;
833
834 return Qt;
835}
836\f
36a8c287
JB
837/* Move the assoc for buffer BUF to the front of buffer-alist. Since
838 we do this each time BUF is selected visibly, the more recently
839 selected buffers are always closer to the front of the list. This
840 means that other_buffer is more likely to choose a relevant buffer. */
1ab256cb
RM
841
842record_buffer (buf)
843 Lisp_Object buf;
844{
845 register Lisp_Object link, prev;
846
847 prev = Qnil;
848 for (link = Vbuffer_alist; CONSP (link); link = XCONS (link)->cdr)
849 {
850 if (EQ (XCONS (XCONS (link)->car)->cdr, buf))
851 break;
852 prev = link;
853 }
854
36a8c287
JB
855 /* Effectively do Vbuffer_alist = Fdelq (link, Vbuffer_alist);
856 we cannot use Fdelq itself here because it allows quitting. */
1ab256cb 857
265a9e55 858 if (NILP (prev))
1ab256cb
RM
859 Vbuffer_alist = XCONS (Vbuffer_alist)->cdr;
860 else
861 XCONS (prev)->cdr = XCONS (XCONS (prev)->cdr)->cdr;
862
863 XCONS(link)->cdr = Vbuffer_alist;
864 Vbuffer_alist = link;
865}
866
867DEFUN ("switch-to-buffer", Fswitch_to_buffer, Sswitch_to_buffer, 1, 2, "BSwitch to buffer: ",
868 "Select buffer BUFFER in the current window.\n\
869BUFFER may be a buffer or a buffer name.\n\
870Optional second arg NORECORD non-nil means\n\
871do not put this buffer at the front of the list of recently selected ones.\n\
872\n\
873WARNING: This is NOT the way to work on another buffer temporarily\n\
874within a Lisp program! Use `set-buffer' instead. That avoids messing with\n\
875the window-buffer correspondences.")
876 (bufname, norecord)
877 Lisp_Object bufname, norecord;
878{
879 register Lisp_Object buf;
880 Lisp_Object tem;
881
882 if (EQ (minibuf_window, selected_window))
883 error ("Cannot switch buffers in minibuffer window");
884 tem = Fwindow_dedicated_p (selected_window);
265a9e55 885 if (!NILP (tem))
1ab256cb
RM
886 error ("Cannot switch buffers in a dedicated window");
887
265a9e55 888 if (NILP (bufname))
172a9c1f 889 buf = Fother_buffer (Fcurrent_buffer (), Qnil);
1ab256cb
RM
890 else
891 buf = Fget_buffer_create (bufname);
892 Fset_buffer (buf);
265a9e55 893 if (NILP (norecord))
1ab256cb
RM
894 record_buffer (buf);
895
896 Fset_window_buffer (EQ (selected_window, minibuf_window)
5fcd022d
JB
897 ? Fnext_window (minibuf_window, Qnil, Qnil)
898 : selected_window,
1ab256cb
RM
899 buf);
900
e8b3a22d 901 return buf;
1ab256cb
RM
902}
903
904DEFUN ("pop-to-buffer", Fpop_to_buffer, Spop_to_buffer, 1, 2, 0,
905 "Select buffer BUFFER in some window, preferably a different one.\n\
906If BUFFER is nil, then some other buffer is chosen.\n\
907If `pop-up-windows' is non-nil, windows can be split to do this.\n\
908If optional second arg OTHER-WINDOW is non-nil, insist on finding another\n\
909window even if BUFFER is already visible in the selected window.")
910 (bufname, other)
911 Lisp_Object bufname, other;
912{
913 register Lisp_Object buf;
265a9e55 914 if (NILP (bufname))
172a9c1f 915 buf = Fother_buffer (Fcurrent_buffer (), Qnil);
1ab256cb
RM
916 else
917 buf = Fget_buffer_create (bufname);
918 Fset_buffer (buf);
919 record_buffer (buf);
920 Fselect_window (Fdisplay_buffer (buf, other));
e8b3a22d 921 return buf;
1ab256cb
RM
922}
923
924DEFUN ("current-buffer", Fcurrent_buffer, Scurrent_buffer, 0, 0, 0,
925 "Return the current buffer as a Lisp object.")
926 ()
927{
928 register Lisp_Object buf;
929 XSET (buf, Lisp_Buffer, current_buffer);
930 return buf;
931}
932\f
933/* Set the current buffer to b */
934
935void
936set_buffer_internal (b)
937 register struct buffer *b;
938{
939 register struct buffer *old_buf;
940 register Lisp_Object tail, valcontents;
941 enum Lisp_Type tem;
942
943 if (current_buffer == b)
944 return;
945
946 windows_or_buffers_changed = 1;
947 old_buf = current_buffer;
948 current_buffer = b;
949 last_known_column_point = -1; /* invalidate indentation cache */
950
951 /* Look down buffer's list of local Lisp variables
952 to find and update any that forward into C variables. */
953
265a9e55 954 for (tail = b->local_var_alist; !NILP (tail); tail = XCONS (tail)->cdr)
1ab256cb
RM
955 {
956 valcontents = XSYMBOL (XCONS (XCONS (tail)->car)->car)->value;
957 if ((XTYPE (valcontents) == Lisp_Buffer_Local_Value
958 || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value)
959 && (tem = XTYPE (XCONS (valcontents)->car),
960 (tem == Lisp_Boolfwd || tem == Lisp_Intfwd
961 || tem == Lisp_Objfwd)))
962 /* Just reference the variable
963 to cause it to become set for this buffer. */
964 Fsymbol_value (XCONS (XCONS (tail)->car)->car);
965 }
966
967 /* Do the same with any others that were local to the previous buffer */
968
969 if (old_buf)
265a9e55 970 for (tail = old_buf->local_var_alist; !NILP (tail); tail = XCONS (tail)->cdr)
1ab256cb
RM
971 {
972 valcontents = XSYMBOL (XCONS (XCONS (tail)->car)->car)->value;
973 if ((XTYPE (valcontents) == Lisp_Buffer_Local_Value
974 || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value)
975 && (tem = XTYPE (XCONS (valcontents)->car),
976 (tem == Lisp_Boolfwd || tem == Lisp_Intfwd
977 || tem == Lisp_Objfwd)))
978 /* Just reference the variable
979 to cause it to become set for this buffer. */
980 Fsymbol_value (XCONS (XCONS (tail)->car)->car);
981 }
982}
983
984DEFUN ("set-buffer", Fset_buffer, Sset_buffer, 1, 1, 0,
985 "Make the buffer BUFFER current for editing operations.\n\
986BUFFER may be a buffer or the name of an existing buffer.\n\
987See also `save-excursion' when you want to make a buffer current temporarily.\n\
988This function does not display the buffer, so its effect ends\n\
989when the current command terminates.\n\
990Use `switch-to-buffer' or `pop-to-buffer' to switch buffers permanently.")
991 (bufname)
992 register Lisp_Object bufname;
993{
994 register Lisp_Object buffer;
995 buffer = Fget_buffer (bufname);
265a9e55 996 if (NILP (buffer))
1ab256cb 997 nsberror (bufname);
265a9e55 998 if (NILP (XBUFFER (buffer)->name))
1ab256cb
RM
999 error ("Selecting deleted buffer");
1000 set_buffer_internal (XBUFFER (buffer));
1001 return buffer;
1002}
1003\f
1004DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only,
1005 Sbarf_if_buffer_read_only, 0, 0, 0,
1006 "Signal a `buffer-read-only' error if the current buffer is read-only.")
1007 ()
1008{
a96b68f1
RS
1009 if (!NILP (current_buffer->read_only)
1010 && NILP (Vinhibit_read_only))
1ab256cb
RM
1011 Fsignal (Qbuffer_read_only, (Fcons (Fcurrent_buffer (), Qnil)));
1012 return Qnil;
1013}
1014
1015DEFUN ("bury-buffer", Fbury_buffer, Sbury_buffer, 0, 1, "",
1016 "Put BUFFER at the end of the list of all buffers.\n\
1017There it is the least likely candidate for `other-buffer' to return;\n\
528415e7 1018thus, the least likely buffer for \\[switch-to-buffer] to select by default.\n\
a5611885
JB
1019If BUFFER is nil or omitted, bury the current buffer.\n\
1020Also, if BUFFER is nil or omitted, remove the current buffer from the\n\
1021selected window if it is displayed there.")
1ab256cb
RM
1022 (buf)
1023 register Lisp_Object buf;
1024{
b271272a 1025 /* Figure out what buffer we're going to bury. */
265a9e55 1026 if (NILP (buf))
a5611885
JB
1027 {
1028 XSET (buf, Lisp_Buffer, current_buffer);
1029
1030 /* If we're burying the current buffer, unshow it. */
5fcd022d 1031 Fswitch_to_buffer (Fother_buffer (buf, Qnil), Qnil);
a5611885 1032 }
1ab256cb
RM
1033 else
1034 {
1035 Lisp_Object buf1;
1036
1037 buf1 = Fget_buffer (buf);
265a9e55 1038 if (NILP (buf1))
1ab256cb
RM
1039 nsberror (buf);
1040 buf = buf1;
b271272a
JB
1041 }
1042
a5611885 1043 /* Move buf to the end of the buffer list. */
b271272a
JB
1044 {
1045 register Lisp_Object aelt, link;
1046
1047 aelt = Frassq (buf, Vbuffer_alist);
1048 link = Fmemq (aelt, Vbuffer_alist);
1049 Vbuffer_alist = Fdelq (aelt, Vbuffer_alist);
1050 XCONS (link)->cdr = Qnil;
1051 Vbuffer_alist = nconc2 (Vbuffer_alist, link);
1052 }
1ab256cb 1053
1ab256cb
RM
1054 return Qnil;
1055}
1056\f
c922bc55 1057DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*",
1ab256cb 1058 "Delete the entire contents of the current buffer.\n\
2950a20e 1059Any narrowing restriction in effect (see `narrow-to-region') is removed,\n\
1ab256cb
RM
1060so the buffer is truly empty after this.")
1061 ()
1062{
1063 Fwiden ();
1064 del_range (BEG, Z);
1065 current_buffer->last_window_start = 1;
1066 /* Prevent warnings, or suspension of auto saving, that would happen
1067 if future size is less than past size. Use of erase-buffer
1068 implies that the future text is not really related to the past text. */
1069 XFASTINT (current_buffer->save_length) = 0;
1070 return Qnil;
1071}
1072
1073validate_region (b, e)
1074 register Lisp_Object *b, *e;
1075{
1076 register int i;
1077
1078 CHECK_NUMBER_COERCE_MARKER (*b, 0);
1079 CHECK_NUMBER_COERCE_MARKER (*e, 1);
1080
1081 if (XINT (*b) > XINT (*e))
1082 {
1083 i = XFASTINT (*b); /* This is legit even if *b is < 0 */
1084 *b = *e;
1085 XFASTINT (*e) = i; /* because this is all we do with i. */
1086 }
1087
1088 if (!(BEGV <= XINT (*b) && XINT (*b) <= XINT (*e)
1089 && XINT (*e) <= ZV))
1090 args_out_of_range (*b, *e);
1091}
1092\f
9f31d21b 1093static Lisp_Object
1ab256cb
RM
1094list_buffers_1 (files)
1095 Lisp_Object files;
1096{
1097 register Lisp_Object tail, tem, buf;
1098 Lisp_Object col1, col2, col3, minspace;
1099 register struct buffer *old = current_buffer, *b;
718cde7d 1100 Lisp_Object desired_point;
1ab256cb
RM
1101 Lisp_Object other_file_symbol;
1102
718cde7d 1103 desired_point = Qnil;
1ab256cb
RM
1104 other_file_symbol = intern ("list-buffers-directory");
1105
1106 XFASTINT (col1) = 19;
1107 XFASTINT (col2) = 25;
1108 XFASTINT (col3) = 40;
1109 XFASTINT (minspace) = 1;
1110
1111 Fset_buffer (Vstandard_output);
1ab256cb
RM
1112 Fbuffer_disable_undo (Vstandard_output);
1113 current_buffer->read_only = Qnil;
1114
1115 write_string ("\
1116 MR Buffer Size Mode File\n\
1117 -- ------ ---- ---- ----\n", -1);
1118
265a9e55 1119 for (tail = Vbuffer_alist; !NILP (tail); tail = Fcdr (tail))
1ab256cb
RM
1120 {
1121 buf = Fcdr (Fcar (tail));
1122 b = XBUFFER (buf);
1123 /* Don't mention the minibuffers. */
1124 if (XSTRING (b->name)->data[0] == ' ')
1125 continue;
1126 /* Optionally don't mention buffers that lack files. */
265a9e55 1127 if (!NILP (files) && NILP (b->filename))
1ab256cb
RM
1128 continue;
1129 /* Identify the current buffer. */
1130 if (b == old)
718cde7d 1131 XFASTINT (desired_point) = point;
1ab256cb
RM
1132 write_string (b == old ? "." : " ", -1);
1133 /* Identify modified buffers */
1134 write_string (BUF_MODIFF (b) > b->save_modified ? "*" : " ", -1);
265a9e55 1135 write_string (NILP (b->read_only) ? " " : "% ", -1);
1ab256cb
RM
1136 Fprinc (b->name, Qnil);
1137 Findent_to (col1, make_number (2));
1138 XFASTINT (tem) = BUF_Z (b) - BUF_BEG (b);
1139 Fprin1 (tem, Qnil);
1140 Findent_to (col2, minspace);
1141 Fprinc (b->mode_name, Qnil);
1142 Findent_to (col3, minspace);
1143
265a9e55 1144 if (!NILP (b->filename))
1ab256cb
RM
1145 Fprinc (b->filename, Qnil);
1146 else
1147 {
1148 /* No visited file; check local value of list-buffers-directory. */
1149 Lisp_Object tem;
1150 set_buffer_internal (b);
1151 tem = Fboundp (other_file_symbol);
265a9e55 1152 if (!NILP (tem))
1ab256cb
RM
1153 {
1154 tem = Fsymbol_value (other_file_symbol);
1155 Fset_buffer (Vstandard_output);
1156 if (XTYPE (tem) == Lisp_String)
1157 Fprinc (tem, Qnil);
1158 }
1159 else
1160 Fset_buffer (Vstandard_output);
1161 }
1162 write_string ("\n", -1);
1163 }
1164
9f31d21b
KH
1165 tail = intern ("Buffer-menu-mode");
1166 if ((tem = Ffboundp (tail), !NILP (tem)))
1167 call0 (tail);
1ab256cb 1168 set_buffer_internal (old);
718cde7d 1169 return desired_point;
1ab256cb
RM
1170}
1171
1172DEFUN ("list-buffers", Flist_buffers, Slist_buffers, 0, 1, "P",
1173 "Display a list of names of existing buffers.\n\
1174The list is displayed in a buffer named `*Buffer List*'.\n\
1175Note that buffers with names starting with spaces are omitted.\n\
1176Non-null optional arg FILES-ONLY means mention only file buffers.\n\
1177\n\
1178The M column contains a * for buffers that are modified.\n\
1179The R column contains a % for buffers that are read-only.")
1180 (files)
1181 Lisp_Object files;
1182{
e87f38ef
JB
1183 Lisp_Object desired_point;
1184
fd2dab90
RS
1185 desired_point
1186 = internal_with_output_to_temp_buffer ("*Buffer List*",
1187 list_buffers_1, files);
e87f38ef 1188
718cde7d
JB
1189 if (NUMBERP (desired_point))
1190 {
1191 int count = specpdl_ptr - specpdl;
1192 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
1193 Fset_buffer (build_string ("*Buffer List*"));
1194 SET_PT (XINT (desired_point));
1195 return unbind_to (count, Qnil);
1196 }
fd2dab90 1197 return Qnil;
1ab256cb
RM
1198}
1199
1200DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables,
1201 0, 0, 0,
1202 "Switch to Fundamental mode by killing current buffer's local variables.\n\
1203Most local variable bindings are eliminated so that the default values\n\
1204become effective once more. Also, the syntax table is set from\n\
1205`standard-syntax-table', the local keymap is set to nil,\n\
1206and the abbrev table from `fundamental-mode-abbrev-table'.\n\
1207This function also forces redisplay of the mode line.\n\
1208\n\
1209Every function to select a new major mode starts by\n\
1210calling this function.\n\n\
1211As a special exception, local variables whose names have\n\
1212a non-nil `permanent-local' property are not eliminated by this function.")
1213 ()
1214{
1215 register Lisp_Object alist, sym, tem;
1216 Lisp_Object oalist;
7410477a 1217
fd186f07
RS
1218 if (!NILP (Vrun_hooks))
1219 call1 (Vrun_hooks, intern ("change-major-mode-hook"));
1ab256cb
RM
1220 oalist = current_buffer->local_var_alist;
1221
1222 /* Make sure no local variables remain set up with this buffer
1223 for their current values. */
1224
265a9e55 1225 for (alist = oalist; !NILP (alist); alist = XCONS (alist)->cdr)
1ab256cb
RM
1226 {
1227 sym = XCONS (XCONS (alist)->car)->car;
1228
1229 /* Need not do anything if some other buffer's binding is now encached. */
1230 tem = XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->car;
1231 if (XBUFFER (tem) == current_buffer)
1232 {
1233 /* Symbol is set up for this buffer's old local value.
1234 Set it up for the current buffer with the default value. */
1235
1236 tem = XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->cdr;
542143d7
RS
1237 /* Store the symbol's current value into the alist entry
1238 it is currently set up for. This is so that, if the
1239 local is marked permanent, and we make it local again below,
1240 we don't lose the value. */
2735b685
RS
1241 XCONS (XCONS (tem)->car)->cdr
1242 = do_symval_forwarding (XCONS (XSYMBOL (sym)->value)->car);
542143d7 1243 /* Switch to the symbol's default-value alist entry. */
1ab256cb 1244 XCONS (tem)->car = tem;
542143d7 1245 /* Mark it as current for the current buffer. */
1ab256cb 1246 XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->car = Fcurrent_buffer ();
542143d7 1247 /* Store the current value into any forwarding in the symbol. */
1ab256cb
RM
1248 store_symval_forwarding (sym, XCONS (XSYMBOL (sym)->value)->car,
1249 XCONS (tem)->cdr);
1250 }
1251 }
1252
1253 /* Actually eliminate all local bindings of this buffer. */
1254
1255 reset_buffer_local_variables (current_buffer);
1256
1257 /* Redisplay mode lines; we are changing major mode. */
1258
1259 update_mode_lines++;
1260
1261 /* Any which are supposed to be permanent,
1262 make local again, with the same values they had. */
1263
265a9e55 1264 for (alist = oalist; !NILP (alist); alist = XCONS (alist)->cdr)
1ab256cb
RM
1265 {
1266 sym = XCONS (XCONS (alist)->car)->car;
1267 tem = Fget (sym, Qpermanent_local);
265a9e55 1268 if (! NILP (tem))
01050cb5
RM
1269 {
1270 Fmake_local_variable (sym);
1271 Fset (sym, XCONS (XCONS (alist)->car)->cdr);
1272 }
1ab256cb
RM
1273 }
1274
1275 /* Force mode-line redisplay. Useful here because all major mode
1276 commands call this function. */
1277 update_mode_lines++;
1278
1279 return Qnil;
1280}
1281\f
2eec3b4e
RS
1282/* Find all the overlays in the current buffer that contain position POS.
1283 Return the number found, and store them in a vector in *VEC_PTR.
1284 Store in *LEN_PTR the size allocated for the vector.
52f8ec73
JB
1285 Store in *NEXT_PTR the next position after POS where an overlay starts,
1286 or ZV if there are no more overlays.
2eec3b4e
RS
1287
1288 *VEC_PTR and *LEN_PTR should contain a valid vector and size
61d54cd5
RS
1289 when this function is called.
1290
1291 If EXTEND is non-zero, we make the vector bigger if necessary.
1292 If EXTEND is zero, we never extend the vector,
1293 and we store only as many overlays as will fit.
1294 But we still return the total number of overlays. */
2eec3b4e
RS
1295
1296int
61d54cd5 1297overlays_at (pos, extend, vec_ptr, len_ptr, next_ptr)
2eec3b4e 1298 int pos;
61d54cd5 1299 int extend;
2eec3b4e
RS
1300 Lisp_Object **vec_ptr;
1301 int *len_ptr;
1302 int *next_ptr;
1ab256cb 1303{
2eec3b4e
RS
1304 Lisp_Object tail, overlay, start, end, result;
1305 int idx = 0;
1306 int len = *len_ptr;
1307 Lisp_Object *vec = *vec_ptr;
1308 int next = ZV;
61d54cd5
RS
1309 int inhibit_storing = 0;
1310
2eec3b4e 1311 for (tail = current_buffer->overlays_before;
4a44b14c 1312 XGCTYPE (tail) == Lisp_Cons;
2eec3b4e
RS
1313 tail = XCONS (tail)->cdr)
1314 {
52f8ec73
JB
1315 int startpos;
1316
2eec3b4e 1317 overlay = XCONS (tail)->car;
3ccf510a 1318 if (XGCTYPE (overlay) != Lisp_Overlay)
52f8ec73 1319 abort ();
1ab256cb 1320
2eec3b4e
RS
1321 start = OVERLAY_START (overlay);
1322 end = OVERLAY_END (overlay);
1323 if (OVERLAY_POSITION (end) <= pos)
1324 break;
1325 startpos = OVERLAY_POSITION (start);
1326 if (startpos <= pos)
1327 {
1328 if (idx == len)
1329 {
61d54cd5
RS
1330 /* The supplied vector is full.
1331 Either make it bigger, or don't store any more in it. */
1332 if (extend)
1333 {
1334 *len_ptr = len *= 2;
1335 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
1336 *vec_ptr = vec;
1337 }
1338 else
1339 inhibit_storing = 1;
2eec3b4e 1340 }
61d54cd5
RS
1341
1342 if (!inhibit_storing)
1343 vec[idx] = overlay;
1344 /* Keep counting overlays even if we can't return them all. */
1345 idx++;
2eec3b4e
RS
1346 }
1347 else if (startpos < next)
1348 next = startpos;
1349 }
1350
1351 for (tail = current_buffer->overlays_after;
4a44b14c 1352 XGCTYPE (tail) == Lisp_Cons;
2eec3b4e 1353 tail = XCONS (tail)->cdr)
1ab256cb 1354 {
52f8ec73
JB
1355 int startpos;
1356
2eec3b4e 1357 overlay = XCONS (tail)->car;
3ccf510a 1358 if (XGCTYPE (overlay) != Lisp_Overlay)
52f8ec73 1359 abort ();
2eec3b4e
RS
1360
1361 start = OVERLAY_START (overlay);
1362 end = OVERLAY_END (overlay);
1363 startpos = OVERLAY_POSITION (start);
52f8ec73 1364 if (pos < startpos)
2eec3b4e
RS
1365 {
1366 if (startpos < next)
1367 next = startpos;
1368 break;
1369 }
52f8ec73 1370 if (pos < OVERLAY_POSITION (end))
2eec3b4e
RS
1371 {
1372 if (idx == len)
1373 {
61d54cd5
RS
1374 if (extend)
1375 {
1376 *len_ptr = len *= 2;
1377 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
1378 *vec_ptr = vec;
1379 }
1380 else
1381 inhibit_storing = 1;
2eec3b4e 1382 }
61d54cd5
RS
1383
1384 if (!inhibit_storing)
1385 vec[idx] = overlay;
1386 idx++;
2eec3b4e 1387 }
1ab256cb
RM
1388 }
1389
2eec3b4e
RS
1390 *next_ptr = next;
1391 return idx;
1392}
1393\f
5985d248
KH
1394struct sortvec
1395{
1396 Lisp_Object overlay;
1397 int beg, end;
1398 int priority;
1399};
1400
1401static int
1402compare_overlays (s1, s2)
1403 struct sortvec *s1, *s2;
1404{
1405 if (s1->priority != s2->priority)
1406 return s1->priority - s2->priority;
1407 if (s1->beg != s2->beg)
1408 return s1->beg - s2->beg;
1409 if (s1->end != s2->end)
1410 return s2->end - s1->end;
1411 return 0;
1412}
1413
1414/* Sort an array of overlays by priority. The array is modified in place.
1415 The return value is the new size; this may be smaller than the original
1416 size if some of the overlays were invalid or were window-specific. */
1417int
1418sort_overlays (overlay_vec, noverlays, w)
1419 Lisp_Object *overlay_vec;
1420 int noverlays;
1421 struct window *w;
1422{
1423 int i, j;
1424 struct sortvec *sortvec;
1425 sortvec = (struct sortvec *) alloca (noverlays * sizeof (struct sortvec));
1426
1427 /* Put the valid and relevant overlays into sortvec. */
1428
1429 for (i = 0, j = 0; i < noverlays; i++)
1430 {
0fa767e7 1431 Lisp_Object tem;
c99fc30f 1432 Lisp_Object overlay;
5985d248 1433
c99fc30f 1434 overlay = overlay_vec[i];
5985d248
KH
1435 if (OVERLAY_VALID (overlay)
1436 && OVERLAY_POSITION (OVERLAY_START (overlay)) > 0
1437 && OVERLAY_POSITION (OVERLAY_END (overlay)) > 0)
1438 {
0fa767e7
KH
1439 /* If we're interested in a specific window, then ignore
1440 overlays that are limited to some other window. */
1441 if (w)
5985d248 1442 {
0fa767e7
KH
1443 Lisp_Object window;
1444
1445 window = Foverlay_get (overlay, Qwindow);
1446 if (XTYPE (window) == Lisp_Window && XWINDOW (window) != w)
1447 continue;
5985d248 1448 }
0fa767e7
KH
1449
1450 /* This overlay is good and counts: put it into sortvec. */
1451 sortvec[j].overlay = overlay;
1452 sortvec[j].beg = OVERLAY_POSITION (OVERLAY_START (overlay));
1453 sortvec[j].end = OVERLAY_POSITION (OVERLAY_END (overlay));
1454 tem = Foverlay_get (overlay, Qpriority);
1455 if (INTEGERP (tem))
1456 sortvec[j].priority = XINT (tem);
1457 else
1458 sortvec[j].priority = 0;
1459 j++;
5985d248
KH
1460 }
1461 }
1462 noverlays = j;
1463
1464 /* Sort the overlays into the proper order: increasing priority. */
1465
1466 if (noverlays > 1)
1467 qsort (sortvec, noverlays, sizeof (struct sortvec), compare_overlays);
1468
1469 for (i = 0; i < noverlays; i++)
1470 overlay_vec[i] = sortvec[i].overlay;
1471 return (noverlays);
1472}
1473\f
5c4f68f1 1474/* Shift overlays in BUF's overlay lists, to center the lists at POS. */
1ab256cb 1475
2eec3b4e 1476void
5c4f68f1
JB
1477recenter_overlay_lists (buf, pos)
1478 struct buffer *buf;
2eec3b4e
RS
1479 int pos;
1480{
1481 Lisp_Object overlay, tail, next, prev, beg, end;
1482
1483 /* See if anything in overlays_before should move to overlays_after. */
1484
1485 /* We don't strictly need prev in this loop; it should always be nil.
1486 But we use it for symmetry and in case that should cease to be true
1487 with some future change. */
1488 prev = Qnil;
5c4f68f1 1489 for (tail = buf->overlays_before;
2eec3b4e
RS
1490 CONSP (tail);
1491 prev = tail, tail = next)
1ab256cb 1492 {
2eec3b4e
RS
1493 next = XCONS (tail)->cdr;
1494 overlay = XCONS (tail)->car;
1495
1496 /* If the overlay is not valid, get rid of it. */
1497 if (!OVERLAY_VALID (overlay))
52f8ec73
JB
1498#if 1
1499 abort ();
1500#else
2eec3b4e
RS
1501 {
1502 /* Splice the cons cell TAIL out of overlays_before. */
1503 if (!NILP (prev))
1504 XCONS (prev)->cdr = next;
1505 else
5c4f68f1 1506 buf->overlays_before = next;
2eec3b4e
RS
1507 tail = prev;
1508 continue;
1509 }
52f8ec73 1510#endif
1ab256cb 1511
2eec3b4e
RS
1512 beg = OVERLAY_START (overlay);
1513 end = OVERLAY_END (overlay);
1ab256cb 1514
2eec3b4e 1515 if (OVERLAY_POSITION (end) > pos)
1ab256cb 1516 {
2eec3b4e
RS
1517 /* OVERLAY needs to be moved. */
1518 int where = OVERLAY_POSITION (beg);
1519 Lisp_Object other, other_prev;
1520
1521 /* Splice the cons cell TAIL out of overlays_before. */
1522 if (!NILP (prev))
1523 XCONS (prev)->cdr = next;
1524 else
5c4f68f1 1525 buf->overlays_before = next;
2eec3b4e
RS
1526
1527 /* Search thru overlays_after for where to put it. */
1528 other_prev = Qnil;
5c4f68f1 1529 for (other = buf->overlays_after;
2eec3b4e
RS
1530 CONSP (other);
1531 other_prev = other, other = XCONS (other)->cdr)
1ab256cb 1532 {
2eec3b4e
RS
1533 Lisp_Object otherbeg, otheroverlay, follower;
1534 int win;
1535
1536 otheroverlay = XCONS (other)->car;
1537 if (! OVERLAY_VALID (otheroverlay))
52f8ec73 1538 abort ();
2eec3b4e
RS
1539
1540 otherbeg = OVERLAY_START (otheroverlay);
1541 if (OVERLAY_POSITION (otherbeg) >= where)
1542 break;
1ab256cb 1543 }
2eec3b4e
RS
1544
1545 /* Add TAIL to overlays_after before OTHER. */
1546 XCONS (tail)->cdr = other;
1547 if (!NILP (other_prev))
1548 XCONS (other_prev)->cdr = tail;
1ab256cb 1549 else
5c4f68f1 1550 buf->overlays_after = tail;
2eec3b4e 1551 tail = prev;
1ab256cb 1552 }
2eec3b4e
RS
1553 else
1554 /* We've reached the things that should stay in overlays_before.
1555 All the rest of overlays_before must end even earlier,
1556 so stop now. */
1557 break;
1558 }
1559
1560 /* See if anything in overlays_after should be in overlays_before. */
1561 prev = Qnil;
5c4f68f1 1562 for (tail = buf->overlays_after;
2eec3b4e
RS
1563 CONSP (tail);
1564 prev = tail, tail = next)
1565 {
1566 next = XCONS (tail)->cdr;
1567 overlay = XCONS (tail)->car;
1568
1569 /* If the overlay is not valid, get rid of it. */
1570 if (!OVERLAY_VALID (overlay))
52f8ec73
JB
1571#if 1
1572 abort ();
1573#else
2eec3b4e
RS
1574 {
1575 /* Splice the cons cell TAIL out of overlays_after. */
1576 if (!NILP (prev))
1577 XCONS (prev)->cdr = next;
1578 else
5c4f68f1 1579 buf->overlays_after = next;
2eec3b4e
RS
1580 tail = prev;
1581 continue;
1582 }
52f8ec73 1583#endif
2eec3b4e
RS
1584
1585 beg = OVERLAY_START (overlay);
1586 end = OVERLAY_END (overlay);
1587
1588 /* Stop looking, when we know that nothing further
1589 can possibly end before POS. */
1590 if (OVERLAY_POSITION (beg) > pos)
1591 break;
1592
1593 if (OVERLAY_POSITION (end) <= pos)
1594 {
1595 /* OVERLAY needs to be moved. */
1596 int where = OVERLAY_POSITION (end);
1597 Lisp_Object other, other_prev;
1598
1599 /* Splice the cons cell TAIL out of overlays_after. */
1600 if (!NILP (prev))
1601 XCONS (prev)->cdr = next;
1602 else
5c4f68f1 1603 buf->overlays_after = next;
2eec3b4e
RS
1604
1605 /* Search thru overlays_before for where to put it. */
1606 other_prev = Qnil;
5c4f68f1 1607 for (other = buf->overlays_before;
2eec3b4e
RS
1608 CONSP (other);
1609 other_prev = other, other = XCONS (other)->cdr)
1610 {
1611 Lisp_Object otherend, otheroverlay;
1612 int win;
1613
1614 otheroverlay = XCONS (other)->car;
1615 if (! OVERLAY_VALID (otheroverlay))
52f8ec73 1616 abort ();
2eec3b4e
RS
1617
1618 otherend = OVERLAY_END (otheroverlay);
1619 if (OVERLAY_POSITION (otherend) <= where)
1620 break;
1621 }
1622
1623 /* Add TAIL to overlays_before before OTHER. */
1624 XCONS (tail)->cdr = other;
1625 if (!NILP (other_prev))
1626 XCONS (other_prev)->cdr = tail;
1627 else
5c4f68f1 1628 buf->overlays_before = tail;
2eec3b4e
RS
1629 tail = prev;
1630 }
1631 }
1632
5c4f68f1 1633 XFASTINT (buf->overlay_center) = pos;
2eec3b4e
RS
1634}
1635\f
52f8ec73
JB
1636DEFUN ("overlayp", Foverlayp, Soverlayp, 1, 1, 0,
1637 "Return t if OBJECT is an overlay.")
1638 (object)
1639 Lisp_Object object;
1640{
1641 return (OVERLAYP (object) ? Qt : Qnil);
1642}
1643
5c4f68f1
JB
1644DEFUN ("make-overlay", Fmake_overlay, Smake_overlay, 2, 3, 0,
1645 "Create a new overlay with range BEG to END in BUFFER.\n\
1646If omitted, BUFFER defaults to the current buffer.\n\
2eec3b4e 1647BEG and END may be integers or markers.")
5c4f68f1
JB
1648 (beg, end, buffer)
1649 Lisp_Object beg, end, buffer;
2eec3b4e
RS
1650{
1651 Lisp_Object overlay;
5c4f68f1 1652 struct buffer *b;
2eec3b4e 1653
5c4f68f1
JB
1654 if (NILP (buffer))
1655 XSET (buffer, Lisp_Buffer, current_buffer);
883047b9
JB
1656 else
1657 CHECK_BUFFER (buffer, 2);
1658 if (MARKERP (beg)
1659 && ! EQ (Fmarker_buffer (beg), buffer))
1660 error ("Marker points into wrong buffer");
1661 if (MARKERP (end)
1662 && ! EQ (Fmarker_buffer (end), buffer))
1663 error ("Marker points into wrong buffer");
2eec3b4e 1664
883047b9
JB
1665 CHECK_NUMBER_COERCE_MARKER (beg, 1);
1666 CHECK_NUMBER_COERCE_MARKER (end, 1);
5c4f68f1 1667
883047b9 1668 if (XINT (beg) > XINT (end))
5c4f68f1 1669 {
c99fc30f
KH
1670 Lisp_Object temp;
1671 temp = beg; beg = end; end = temp;
5c4f68f1 1672 }
883047b9
JB
1673
1674 b = XBUFFER (buffer);
1675
1676 beg = Fset_marker (Fmake_marker (), beg, buffer);
1677 end = Fset_marker (Fmake_marker (), end, buffer);
5c4f68f1
JB
1678
1679 overlay = Fcons (Fcons (beg, end), Qnil);
52f8ec73 1680 XSETTYPE (overlay, Lisp_Overlay);
2eec3b4e
RS
1681
1682 /* Put the new overlay on the wrong list. */
1683 end = OVERLAY_END (overlay);
5c4f68f1
JB
1684 if (OVERLAY_POSITION (end) < XINT (b->overlay_center))
1685 b->overlays_after = Fcons (overlay, b->overlays_after);
2eec3b4e 1686 else
5c4f68f1 1687 b->overlays_before = Fcons (overlay, b->overlays_before);
2eec3b4e
RS
1688
1689 /* This puts it in the right list, and in the right order. */
5c4f68f1 1690 recenter_overlay_lists (b, XINT (b->overlay_center));
2eec3b4e 1691
b61982dd
JB
1692 /* We don't need to redisplay the region covered by the overlay, because
1693 the overlay has no properties at the moment. */
1694
2eec3b4e
RS
1695 return overlay;
1696}
1697
5c4f68f1
JB
1698DEFUN ("move-overlay", Fmove_overlay, Smove_overlay, 3, 4, 0,
1699 "Set the endpoints of OVERLAY to BEG and END in BUFFER.\n\
3ece337a
JB
1700If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.\n\
1701If BUFFER is omitted, and OVERLAY is in no buffer, put it in the current\n\
1702buffer.")
5c4f68f1
JB
1703 (overlay, beg, end, buffer)
1704 Lisp_Object overlay, beg, end, buffer;
2eec3b4e 1705{
0a4469c9
RS
1706 struct buffer *b, *ob;
1707 Lisp_Object obuffer;
1708 int count = specpdl_ptr - specpdl;
5c4f68f1 1709
52f8ec73 1710 CHECK_OVERLAY (overlay, 0);
5c4f68f1
JB
1711 if (NILP (buffer))
1712 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3ece337a
JB
1713 if (NILP (buffer))
1714 XSET (buffer, Lisp_Buffer, current_buffer);
5c4f68f1 1715 CHECK_BUFFER (buffer, 3);
883047b9
JB
1716
1717 if (MARKERP (beg)
1718 && ! EQ (Fmarker_buffer (beg), buffer))
1719 error ("Marker points into wrong buffer");
1720 if (MARKERP (end)
1721 && ! EQ (Fmarker_buffer (end), buffer))
1722 error ("Marker points into wrong buffer");
1723
b61982dd
JB
1724 CHECK_NUMBER_COERCE_MARKER (beg, 1);
1725 CHECK_NUMBER_COERCE_MARKER (end, 1);
1726
0a4469c9
RS
1727 specbind (Qinhibit_quit, Qt);
1728
b61982dd
JB
1729 if (XINT (beg) > XINT (end))
1730 {
c99fc30f
KH
1731 Lisp_Object temp;
1732 temp = beg; beg = end; end = temp;
b61982dd
JB
1733 }
1734
0a4469c9 1735 obuffer = Fmarker_buffer (OVERLAY_START (overlay));
5c4f68f1 1736 b = XBUFFER (buffer);
0a4469c9 1737 ob = XBUFFER (obuffer);
2eec3b4e 1738
c82ed728 1739 /* If the overlay has changed buffers, do a thorough redisplay. */
0a4469c9 1740 if (!EQ (buffer, obuffer))
c82ed728
JB
1741 windows_or_buffers_changed = 1;
1742 else
1743 /* Redisplay the area the overlay has just left, or just enclosed. */
1744 {
be8b1c6b
RS
1745 Lisp_Object o_beg;
1746 Lisp_Object o_end;
c82ed728
JB
1747 int change_beg, change_end;
1748
be8b1c6b
RS
1749 o_beg = OVERLAY_START (overlay);
1750 o_end = OVERLAY_END (overlay);
c82ed728
JB
1751 o_beg = OVERLAY_POSITION (o_beg);
1752 o_end = OVERLAY_POSITION (o_end);
1753
1754 if (XINT (o_beg) == XINT (beg))
1755 redisplay_region (b, XINT (o_end), XINT (end));
1756 else if (XINT (o_end) == XINT (end))
1757 redisplay_region (b, XINT (o_beg), XINT (beg));
1758 else
1759 {
1760 if (XINT (beg) < XINT (o_beg)) o_beg = beg;
1761 if (XINT (end) > XINT (o_end)) o_end = end;
1762 redisplay_region (b, XINT (o_beg), XINT (o_end));
1763 }
1764 }
b61982dd 1765
0a4469c9
RS
1766 if (!NILP (obuffer))
1767 {
1768 ob->overlays_before = Fdelq (overlay, ob->overlays_before);
1769 ob->overlays_after = Fdelq (overlay, ob->overlays_after);
1770 }
5c4f68f1
JB
1771
1772 Fset_marker (OVERLAY_START (overlay), beg, buffer);
1773 Fset_marker (OVERLAY_END (overlay), end, buffer);
2eec3b4e
RS
1774
1775 /* Put the overlay on the wrong list. */
1776 end = OVERLAY_END (overlay);
5c4f68f1
JB
1777 if (OVERLAY_POSITION (end) < XINT (b->overlay_center))
1778 b->overlays_after = Fcons (overlay, b->overlays_after);
2eec3b4e 1779 else
5c4f68f1 1780 b->overlays_before = Fcons (overlay, b->overlays_before);
2eec3b4e
RS
1781
1782 /* This puts it in the right list, and in the right order. */
5c4f68f1 1783 recenter_overlay_lists (b, XINT (b->overlay_center));
2eec3b4e 1784
0a4469c9 1785 return unbind_to (count, overlay);
2eec3b4e
RS
1786}
1787
1788DEFUN ("delete-overlay", Fdelete_overlay, Sdelete_overlay, 1, 1, 0,
5c4f68f1 1789 "Delete the overlay OVERLAY from its buffer.")
2eec3b4e 1790 (overlay)
5c4f68f1 1791 Lisp_Object overlay;
2eec3b4e 1792{
0a4469c9 1793 Lisp_Object buffer;
5c4f68f1 1794 struct buffer *b;
0a4469c9 1795 int count = specpdl_ptr - specpdl;
5c4f68f1 1796
52f8ec73
JB
1797 CHECK_OVERLAY (overlay, 0);
1798
0a4469c9
RS
1799 buffer = Fmarker_buffer (OVERLAY_START (overlay));
1800 if (NILP (buffer))
1801 return Qnil;
1802
1803 b = XBUFFER (buffer);
1804
1805 specbind (Qinhibit_quit, Qt);
5c4f68f1
JB
1806
1807 b->overlays_before = Fdelq (overlay, b->overlays_before);
1808 b->overlays_after = Fdelq (overlay, b->overlays_after);
1809
b61982dd 1810 redisplay_region (b,
a927f5c9
RS
1811 marker_position (OVERLAY_START (overlay)),
1812 marker_position (OVERLAY_END (overlay)));
b61982dd 1813
3ece337a
JB
1814 Fset_marker (OVERLAY_START (overlay), Qnil, Qnil);
1815 Fset_marker (OVERLAY_END (overlay), Qnil, Qnil);
1816
0a4469c9 1817 return unbind_to (count, Qnil);
2eec3b4e
RS
1818}
1819\f
8ebafa8d
JB
1820/* Overlay dissection functions. */
1821
1822DEFUN ("overlay-start", Foverlay_start, Soverlay_start, 1, 1, 0,
1823 "Return the position at which OVERLAY starts.")
1824 (overlay)
1825 Lisp_Object overlay;
1826{
1827 CHECK_OVERLAY (overlay, 0);
1828
1829 return (Fmarker_position (OVERLAY_START (overlay)));
1830}
1831
1832DEFUN ("overlay-end", Foverlay_end, Soverlay_end, 1, 1, 0,
1833 "Return the position at which OVERLAY ends.")
1834 (overlay)
1835 Lisp_Object overlay;
1836{
1837 CHECK_OVERLAY (overlay, 0);
1838
1839 return (Fmarker_position (OVERLAY_END (overlay)));
1840}
1841
1842DEFUN ("overlay-buffer", Foverlay_buffer, Soverlay_buffer, 1, 1, 0,
1843 "Return the buffer OVERLAY belongs to.")
1844 (overlay)
1845 Lisp_Object overlay;
1846{
1847 CHECK_OVERLAY (overlay, 0);
1848
1849 return Fmarker_buffer (OVERLAY_START (overlay));
1850}
1851
1852DEFUN ("overlay-properties", Foverlay_properties, Soverlay_properties, 1, 1, 0,
1853 "Return a list of the properties on OVERLAY.\n\
1854This is a copy of OVERLAY's plist; modifying its conses has no effect on\n\
1855OVERLAY.")
1856 (overlay)
1857 Lisp_Object overlay;
1858{
1859 CHECK_OVERLAY (overlay, 0);
1860
1861 return Fcopy_sequence (Fcdr_safe (XCONS (overlay)->cdr));
1862}
1863
1864\f
2eec3b4e 1865DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 1, 0,
eb8c3be9 1866 "Return a list of the overlays that contain position POS.")
2eec3b4e
RS
1867 (pos)
1868 Lisp_Object pos;
1869{
1870 int noverlays;
1871 int endpos;
1872 Lisp_Object *overlay_vec;
1873 int len;
1874 Lisp_Object result;
1875
1876 CHECK_NUMBER_COERCE_MARKER (pos, 0);
1877
1878 len = 10;
1879 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
1880
1881 /* Put all the overlays we want in a vector in overlay_vec.
1882 Store the length in len. */
61d54cd5 1883 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len, &endpos);
2eec3b4e
RS
1884
1885 /* Make a list of them all. */
1886 result = Flist (noverlays, overlay_vec);
1887
9ac0d9e0 1888 xfree (overlay_vec);
2eec3b4e
RS
1889 return result;
1890}
1891
1892DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
1893 1, 1, 0,
1894 "Return the next position after POS where an overlay starts or ends.")
1895 (pos)
1896 Lisp_Object pos;
1897{
1898 int noverlays;
1899 int endpos;
1900 Lisp_Object *overlay_vec;
1901 int len;
1902 Lisp_Object result;
1903 int i;
1904
1905 CHECK_NUMBER_COERCE_MARKER (pos, 0);
1906
1907 len = 10;
1908 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
1909
1910 /* Put all the overlays we want in a vector in overlay_vec.
1911 Store the length in len.
1912 endpos gets the position where the next overlay starts. */
61d54cd5 1913 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len, &endpos);
2eec3b4e
RS
1914
1915 /* If any of these overlays ends before endpos,
1916 use its ending point instead. */
1917 for (i = 0; i < noverlays; i++)
1918 {
1919 Lisp_Object oend;
1920 int oendpos;
1921
1922 oend = OVERLAY_END (overlay_vec[i]);
1923 oendpos = OVERLAY_POSITION (oend);
1924 if (oendpos < endpos)
1925 endpos = oendpos;
1ab256cb
RM
1926 }
1927
9ac0d9e0 1928 xfree (overlay_vec);
2eec3b4e
RS
1929 return make_number (endpos);
1930}
1931\f
1932/* These functions are for debugging overlays. */
1933
1934DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0,
1935 "Return a pair of lists giving all the overlays of the current buffer.\n\
1936The car has all the overlays before the overlay center;\n\
1937the cdr has all the overlays before the overlay center.\n\
1938Recentering overlays moves overlays between these lists.\n\
1939The lists you get are copies, so that changing them has no effect.\n\
1940However, the overlays you get are the real objects that the buffer uses.")
1941 ()
1942{
1943 Lisp_Object before, after;
1944 before = current_buffer->overlays_before;
1945 if (CONSP (before))
1946 before = Fcopy_sequence (before);
1947 after = current_buffer->overlays_after;
1948 if (CONSP (after))
1949 after = Fcopy_sequence (after);
1950
1951 return Fcons (before, after);
1952}
1953
1954DEFUN ("overlay-recenter", Foverlay_recenter, Soverlay_recenter, 1, 1, 0,
1955 "Recenter the overlays of the current buffer around position POS.")
1956 (pos)
1957 Lisp_Object pos;
1958{
1959 CHECK_NUMBER_COERCE_MARKER (pos, 0);
1960
5c4f68f1 1961 recenter_overlay_lists (current_buffer, XINT (pos));
2eec3b4e
RS
1962 return Qnil;
1963}
1964\f
1965DEFUN ("overlay-get", Foverlay_get, Soverlay_get, 2, 2, 0,
1966 "Get the property of overlay OVERLAY with property name NAME.")
1967 (overlay, prop)
1968 Lisp_Object overlay, prop;
1969{
1970 Lisp_Object plist;
52f8ec73
JB
1971
1972 CHECK_OVERLAY (overlay, 0);
1973
1974 for (plist = Fcdr_safe (XCONS (overlay)->cdr);
2eec3b4e
RS
1975 CONSP (plist) && CONSP (XCONS (plist)->cdr);
1976 plist = XCONS (XCONS (plist)->cdr)->cdr)
1977 {
1978 if (EQ (XCONS (plist)->car, prop))
1979 return XCONS (XCONS (plist)->cdr)->car;
1980 }
52f8ec73
JB
1981
1982 return Qnil;
2eec3b4e
RS
1983}
1984
1985DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0,
1986 "Set one property of overlay OVERLAY: give property PROP value VALUE.")
1987 (overlay, prop, value)
1988 Lisp_Object overlay, prop, value;
1989{
1990 Lisp_Object plist, tail;
1991
52f8ec73 1992 CHECK_OVERLAY (overlay, 0);
b61982dd 1993
25d16451
RS
1994 tail = Fmarker_buffer (OVERLAY_START (overlay));
1995 if (! NILP (tail))
1996 redisplay_region (XMARKER (OVERLAY_START (overlay))->buffer,
1997 marker_position (OVERLAY_START (overlay)),
1998 marker_position (OVERLAY_END (overlay)));
b61982dd 1999
52f8ec73 2000 plist = Fcdr_safe (XCONS (overlay)->cdr);
2eec3b4e
RS
2001
2002 for (tail = plist;
2003 CONSP (tail) && CONSP (XCONS (tail)->cdr);
2004 tail = XCONS (XCONS (tail)->cdr)->cdr)
2005 {
2006 if (EQ (XCONS (tail)->car, prop))
2007 return XCONS (XCONS (tail)->cdr)->car = value;
2008 }
2009
2010 if (! CONSP (XCONS (overlay)->cdr))
2011 XCONS (overlay)->cdr = Fcons (Qnil, Qnil);
2012
2013 XCONS (XCONS (overlay)->cdr)->cdr
2014 = Fcons (prop, Fcons (value, plist));
2015
2016 return value;
1ab256cb
RM
2017}
2018\f
173f2a64
RS
2019/* Run the modification-hooks of overlays that include
2020 any part of the text in START to END.
2021 Run the insert-before-hooks of overlay starting at END,
2022 and the insert-after-hooks of overlay ending at START. */
2023
2024void
2025verify_overlay_modification (start, end)
2026 Lisp_Object start, end;
2027{
2028 Lisp_Object prop, overlay, tail;
2029 int insertion = EQ (start, end);
2030
2031 for (tail = current_buffer->overlays_before;
2032 CONSP (tail);
2033 tail = XCONS (tail)->cdr)
2034 {
2035 int startpos, endpos;
be8b1c6b 2036 Lisp_Object ostart, oend;
173f2a64
RS
2037
2038 overlay = XCONS (tail)->car;
2039
2040 ostart = OVERLAY_START (overlay);
2041 oend = OVERLAY_END (overlay);
2042 endpos = OVERLAY_POSITION (oend);
2043 if (XFASTINT (start) > endpos)
2044 break;
2045 startpos = OVERLAY_POSITION (ostart);
2046 if (XFASTINT (end) == startpos && insertion)
2047 {
2048 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
5fb5aa33
RS
2049 if (!NILP (prop))
2050 {
2051 /* Copy TAIL in case the hook recenters the overlay lists. */
2052 tail = Fcopy_sequence (tail);
2053 call_overlay_mod_hooks (prop, overlay, start, end);
2054 }
173f2a64
RS
2055 }
2056 if (XFASTINT (start) == endpos && insertion)
2057 {
2058 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
5fb5aa33
RS
2059 if (!NILP (prop))
2060 {
2061 tail = Fcopy_sequence (tail);
2062 call_overlay_mod_hooks (prop, overlay, start, end);
2063 }
173f2a64 2064 }
3bd13e92
KH
2065 /* Test for intersecting intervals. This does the right thing
2066 for both insertion and deletion. */
2067 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
173f2a64
RS
2068 {
2069 prop = Foverlay_get (overlay, Qmodification_hooks);
5fb5aa33
RS
2070 if (!NILP (prop))
2071 {
2072 tail = Fcopy_sequence (tail);
2073 call_overlay_mod_hooks (prop, overlay, start, end);
2074 }
173f2a64
RS
2075 }
2076 }
2077
2078 for (tail = current_buffer->overlays_after;
2079 CONSP (tail);
2080 tail = XCONS (tail)->cdr)
2081 {
2082 int startpos, endpos;
be8b1c6b 2083 Lisp_Object ostart, oend;
173f2a64
RS
2084
2085 overlay = XCONS (tail)->car;
2086
2087 ostart = OVERLAY_START (overlay);
2088 oend = OVERLAY_END (overlay);
2089 startpos = OVERLAY_POSITION (ostart);
cdf0b096 2090 endpos = OVERLAY_POSITION (oend);
173f2a64
RS
2091 if (XFASTINT (end) < startpos)
2092 break;
2093 if (XFASTINT (end) == startpos && insertion)
2094 {
2095 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
5fb5aa33
RS
2096 if (!NILP (prop))
2097 {
2098 tail = Fcopy_sequence (tail);
2099 call_overlay_mod_hooks (prop, overlay, start, end);
2100 }
173f2a64
RS
2101 }
2102 if (XFASTINT (start) == endpos && insertion)
2103 {
2104 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
5fb5aa33
RS
2105 if (!NILP (prop))
2106 {
2107 tail = Fcopy_sequence (tail);
2108 call_overlay_mod_hooks (prop, overlay, start, end);
2109 }
173f2a64 2110 }
3bd13e92
KH
2111 /* Test for intersecting intervals. This does the right thing
2112 for both insertion and deletion. */
2113 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
173f2a64
RS
2114 {
2115 prop = Foverlay_get (overlay, Qmodification_hooks);
5fb5aa33
RS
2116 if (!NILP (prop))
2117 {
2118 tail = Fcopy_sequence (tail);
2119 call_overlay_mod_hooks (prop, overlay, start, end);
2120 }
173f2a64
RS
2121 }
2122 }
2123}
2124
2125static void
2126call_overlay_mod_hooks (list, overlay, start, end)
2127 Lisp_Object list, overlay, start, end;
2128{
2129 struct gcpro gcpro1;
2130 GCPRO1 (list);
2131 while (!NILP (list))
2132 {
2133 call3 (Fcar (list), overlay, start, end);
2134 list = Fcdr (list);
2135 }
2136 UNGCPRO;
2137}
2138\f
0fa3ba92
JB
2139/* Somebody has tried to store NEWVAL into the buffer-local slot with
2140 offset XUINT (valcontents), and NEWVAL has an unacceptable type. */
2141void
2142buffer_slot_type_mismatch (valcontents, newval)
2143 Lisp_Object valcontents, newval;
2144{
2145 unsigned int offset = XUINT (valcontents);
5fcd022d 2146 unsigned char *symbol_name =
0fa3ba92
JB
2147 (XSYMBOL (*(Lisp_Object *)(offset + (char *)&buffer_local_symbols))
2148 ->name->data);
2149 char *type_name;
2150
2151 switch (XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_types)))
2152 {
2153 case Lisp_Int: type_name = "integers"; break;
2154 case Lisp_String: type_name = "strings"; break;
2155 case Lisp_Marker: type_name = "markers"; break;
2156 case Lisp_Symbol: type_name = "symbols"; break;
2157 case Lisp_Cons: type_name = "lists"; break;
5fcd022d 2158 case Lisp_Vector: type_name = "vectors"; break;
0fa3ba92
JB
2159 default:
2160 abort ();
2161 }
2162
2163 error ("only %s should be stored in the buffer-local variable %s",
2164 type_name, symbol_name);
2165}
2166\f
1ab256cb
RM
2167init_buffer_once ()
2168{
2169 register Lisp_Object tem;
2170
2171 /* Make sure all markable slots in buffer_defaults
2172 are initialized reasonably, so mark_buffer won't choke. */
2173 reset_buffer (&buffer_defaults);
2174 reset_buffer (&buffer_local_symbols);
2175 XSET (Vbuffer_defaults, Lisp_Buffer, &buffer_defaults);
2176 XSET (Vbuffer_local_symbols, Lisp_Buffer, &buffer_local_symbols);
2177
2178 /* Set up the default values of various buffer slots. */
2179 /* Must do these before making the first buffer! */
2180
2181 /* real setup is done in loaddefs.el */
2182 buffer_defaults.mode_line_format = build_string ("%-");
2183 buffer_defaults.abbrev_mode = Qnil;
2184 buffer_defaults.overwrite_mode = Qnil;
2185 buffer_defaults.case_fold_search = Qt;
2186 buffer_defaults.auto_fill_function = Qnil;
2187 buffer_defaults.selective_display = Qnil;
2188#ifndef old
2189 buffer_defaults.selective_display_ellipses = Qt;
2190#endif
2191 buffer_defaults.abbrev_table = Qnil;
2192 buffer_defaults.display_table = Qnil;
1ab256cb 2193 buffer_defaults.undo_list = Qnil;
c48f61ef 2194 buffer_defaults.mark_active = Qnil;
2eec3b4e
RS
2195 buffer_defaults.overlays_before = Qnil;
2196 buffer_defaults.overlays_after = Qnil;
2197 XFASTINT (buffer_defaults.overlay_center) = 1;
1ab256cb
RM
2198
2199 XFASTINT (buffer_defaults.tab_width) = 8;
2200 buffer_defaults.truncate_lines = Qnil;
2201 buffer_defaults.ctl_arrow = Qt;
2202
54ad07d3
RS
2203#ifdef MSDOS
2204 buffer_defaults.buffer_file_type = 0; /* TEXT */
2205#endif
1ab256cb
RM
2206 XFASTINT (buffer_defaults.fill_column) = 70;
2207 XFASTINT (buffer_defaults.left_margin) = 0;
2208
2209 /* Assign the local-flags to the slots that have default values.
2210 The local flag is a bit that is used in the buffer
2211 to say that it has its own local value for the slot.
2212 The local flag bits are in the local_var_flags slot of the buffer. */
2213
2214 /* Nothing can work if this isn't true */
2215 if (sizeof (int) != sizeof (Lisp_Object)) abort ();
2216
2217 /* 0 means not a lisp var, -1 means always local, else mask */
2218 bzero (&buffer_local_flags, sizeof buffer_local_flags);
2219 XFASTINT (buffer_local_flags.filename) = -1;
2220 XFASTINT (buffer_local_flags.directory) = -1;
2221 XFASTINT (buffer_local_flags.backed_up) = -1;
2222 XFASTINT (buffer_local_flags.save_length) = -1;
2223 XFASTINT (buffer_local_flags.auto_save_file_name) = -1;
2224 XFASTINT (buffer_local_flags.read_only) = -1;
2225 XFASTINT (buffer_local_flags.major_mode) = -1;
2226 XFASTINT (buffer_local_flags.mode_name) = -1;
2227 XFASTINT (buffer_local_flags.undo_list) = -1;
c48f61ef 2228 XFASTINT (buffer_local_flags.mark_active) = -1;
1ab256cb
RM
2229
2230 XFASTINT (buffer_local_flags.mode_line_format) = 1;
2231 XFASTINT (buffer_local_flags.abbrev_mode) = 2;
2232 XFASTINT (buffer_local_flags.overwrite_mode) = 4;
2233 XFASTINT (buffer_local_flags.case_fold_search) = 8;
2234 XFASTINT (buffer_local_flags.auto_fill_function) = 0x10;
2235 XFASTINT (buffer_local_flags.selective_display) = 0x20;
2236#ifndef old
2237 XFASTINT (buffer_local_flags.selective_display_ellipses) = 0x40;
2238#endif
2239 XFASTINT (buffer_local_flags.tab_width) = 0x80;
2240 XFASTINT (buffer_local_flags.truncate_lines) = 0x100;
2241 XFASTINT (buffer_local_flags.ctl_arrow) = 0x200;
2242 XFASTINT (buffer_local_flags.fill_column) = 0x400;
2243 XFASTINT (buffer_local_flags.left_margin) = 0x800;
2244 XFASTINT (buffer_local_flags.abbrev_table) = 0x1000;
2245 XFASTINT (buffer_local_flags.display_table) = 0x2000;
1ab256cb 2246 XFASTINT (buffer_local_flags.syntax_table) = 0x8000;
54ad07d3
RS
2247#ifdef MSDOS
2248 XFASTINT (buffer_local_flags.buffer_file_type) = 0x4000;
2249#endif
1ab256cb
RM
2250
2251 Vbuffer_alist = Qnil;
2252 current_buffer = 0;
2253 all_buffers = 0;
2254
2255 QSFundamental = build_string ("Fundamental");
2256
2257 Qfundamental_mode = intern ("fundamental-mode");
2258 buffer_defaults.major_mode = Qfundamental_mode;
2259
2260 Qmode_class = intern ("mode-class");
2261
2262 Qprotected_field = intern ("protected-field");
2263
2264 Qpermanent_local = intern ("permanent-local");
2265
2266 Qkill_buffer_hook = intern ("kill-buffer-hook");
2267
2268 Vprin1_to_string_buffer = Fget_buffer_create (build_string (" prin1"));
2269 /* super-magic invisible buffer */
2270 Vbuffer_alist = Qnil;
2271
ffd56f97 2272 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
1ab256cb
RM
2273}
2274
2275init_buffer ()
2276{
2277 char buf[MAXPATHLEN+1];
2381d133
JB
2278 char *pwd;
2279 struct stat dotstat, pwdstat;
136351b7 2280 Lisp_Object temp;
1ab256cb
RM
2281
2282 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
2381d133
JB
2283
2284 /* If PWD is accurate, use it instead of calling getwd. This is faster
2285 when PWD is right, and may avoid a fatal error. */
2286 if ((pwd = getenv ("PWD")) != 0 && *pwd == '/'
2287 && stat (pwd, &pwdstat) == 0
2288 && stat (".", &dotstat) == 0
2289 && dotstat.st_ino == pwdstat.st_ino
2290 && dotstat.st_dev == pwdstat.st_dev
2291 && strlen (pwd) < MAXPATHLEN)
2292 strcpy (buf, pwd);
2293 else if (getwd (buf) == 0)
1ab256cb
RM
2294 fatal ("`getwd' failed: %s.\n", buf);
2295
2296#ifndef VMS
2297 /* Maybe this should really use some standard subroutine
2298 whose definition is filename syntax dependent. */
2299 if (buf[strlen (buf) - 1] != '/')
2300 strcat (buf, "/");
2301#endif /* not VMS */
2302 current_buffer->directory = build_string (buf);
136351b7
RS
2303
2304 temp = get_minibuffer (0);
2305 XBUFFER (temp)->directory = current_buffer->directory;
1ab256cb
RM
2306}
2307
2308/* initialize the buffer routines */
2309syms_of_buffer ()
2310{
188d4d11
RM
2311 extern Lisp_Object Qdisabled;
2312
1ab256cb
RM
2313 staticpro (&Vbuffer_defaults);
2314 staticpro (&Vbuffer_local_symbols);
2315 staticpro (&Qfundamental_mode);
2316 staticpro (&Qmode_class);
2317 staticpro (&QSFundamental);
2318 staticpro (&Vbuffer_alist);
2319 staticpro (&Qprotected_field);
2320 staticpro (&Qpermanent_local);
2321 staticpro (&Qkill_buffer_hook);
52f8ec73 2322 staticpro (&Qoverlayp);
294d215f
RS
2323 staticpro (&Qmodification_hooks);
2324 Qmodification_hooks = intern ("modification-hooks");
2325 staticpro (&Qinsert_in_front_hooks);
2326 Qinsert_in_front_hooks = intern ("insert-in-front-hooks");
2327 staticpro (&Qinsert_behind_hooks);
2328 Qinsert_behind_hooks = intern ("insert-behind-hooks");
5fe0b67e
RS
2329 staticpro (&Qget_file_buffer);
2330 Qget_file_buffer = intern ("get-file-buffer");
5985d248
KH
2331 Qpriority = intern ("priority");
2332 staticpro (&Qpriority);
2333 Qwindow = intern ("window");
2334 staticpro (&Qwindow);
52f8ec73
JB
2335
2336 Qoverlayp = intern ("overlayp");
1ab256cb
RM
2337
2338 Fput (Qprotected_field, Qerror_conditions,
2339 Fcons (Qprotected_field, Fcons (Qerror, Qnil)));
2340 Fput (Qprotected_field, Qerror_message,
2341 build_string ("Attempt to modify a protected field"));
2342
2343 /* All these use DEFVAR_LISP_NOPRO because the slots in
2344 buffer_defaults will all be marked via Vbuffer_defaults. */
2345
2346 DEFVAR_LISP_NOPRO ("default-mode-line-format",
2347 &buffer_defaults.mode_line_format,
2348 "Default value of `mode-line-format' for buffers that don't override it.\n\
2349This is the same as (default-value 'mode-line-format).");
2350
2351 DEFVAR_LISP_NOPRO ("default-abbrev-mode",
2352 &buffer_defaults.abbrev_mode,
2353 "Default value of `abbrev-mode' for buffers that do not override it.\n\
2354This is the same as (default-value 'abbrev-mode).");
2355
2356 DEFVAR_LISP_NOPRO ("default-ctl-arrow",
2357 &buffer_defaults.ctl_arrow,
2358 "Default value of `ctl-arrow' for buffers that do not override it.\n\
2359This is the same as (default-value 'ctl-arrow).");
2360
2361 DEFVAR_LISP_NOPRO ("default-truncate-lines",
2362 &buffer_defaults.truncate_lines,
2363 "Default value of `truncate-lines' for buffers that do not override it.\n\
2364This is the same as (default-value 'truncate-lines).");
2365
2366 DEFVAR_LISP_NOPRO ("default-fill-column",
2367 &buffer_defaults.fill_column,
2368 "Default value of `fill-column' for buffers that do not override it.\n\
2369This is the same as (default-value 'fill-column).");
2370
2371 DEFVAR_LISP_NOPRO ("default-left-margin",
2372 &buffer_defaults.left_margin,
2373 "Default value of `left-margin' for buffers that do not override it.\n\
2374This is the same as (default-value 'left-margin).");
2375
2376 DEFVAR_LISP_NOPRO ("default-tab-width",
2377 &buffer_defaults.tab_width,
2378 "Default value of `tab-width' for buffers that do not override it.\n\
2379This is the same as (default-value 'tab-width).");
2380
2381 DEFVAR_LISP_NOPRO ("default-case-fold-search",
2382 &buffer_defaults.case_fold_search,
2383 "Default value of `case-fold-search' for buffers that don't override it.\n\
2384This is the same as (default-value 'case-fold-search).");
2385
54ad07d3
RS
2386#ifdef MSDOS
2387 DEFVAR_LISP_NOPRO ("default-buffer-file-type",
2388 &buffer_defaults.buffer_file_type,
2389 "Default file type for buffers that do not override it.\n\
2390This is the same as (default-value 'buffer-file-type).\n\
2391The file type is nil for text, t for binary.");
2392#endif
2393
0fa3ba92
JB
2394 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
2395 Qnil, 0);
1ab256cb
RM
2396
2397/* This doc string is too long for cpp; cpp dies if it isn't in a comment.
2398 But make-docfile finds it!
2399 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
bec44fd6 2400 Qnil,
1ab256cb
RM
2401 "Template for displaying mode line for current buffer.\n\
2402Each buffer has its own value of this variable.\n\
2403Value may be a string, a symbol or a list or cons cell.\n\
2404For a symbol, its value is used (but it is ignored if t or nil).\n\
2405 A string appearing directly as the value of a symbol is processed verbatim\n\
2406 in that the %-constructs below are not recognized.\n\
2407For a list whose car is a symbol, the symbol's value is taken,\n\
2408 and if that is non-nil, the cadr of the list is processed recursively.\n\
2409 Otherwise, the caddr of the list (if there is one) is processed.\n\
2410For a list whose car is a string or list, each element is processed\n\
2411 recursively and the results are effectively concatenated.\n\
2412For a list whose car is an integer, the cdr of the list is processed\n\
2413 and padded (if the number is positive) or truncated (if negative)\n\
2414 to the width specified by that number.\n\
2415A string is printed verbatim in the mode line except for %-constructs:\n\
2416 (%-constructs are allowed when the string is the entire mode-line-format\n\
2417 or when it is found in a cons-cell or a list)\n\
2418 %b -- print buffer name. %f -- print visited file name.\n\
2419 %* -- print *, % or hyphen. %m -- print value of mode-name (obsolete).\n\
a97c374a 2420 %s -- print process status. %l -- print the current line number.\n\
dd24e6a6
RS
2421 %p -- print percent of buffer above top of window, or Top, Bot or All.\n\
2422 %p -- print percent of buffer above bottom of window, perhaps plus Top,\n\
2423 or print Bottom or All.\n\
1ab256cb 2424 %n -- print Narrow if appropriate.\n\
54ad07d3 2425 %t -- print T if files is text, B if binary.\n\
1ab256cb
RM
2426 %[ -- print one [ for each recursive editing level. %] similar.\n\
2427 %% -- print %. %- -- print infinitely many dashes.\n\
2428Decimal digits after the % specify field width to which to pad.");
2429*/
2430
2431 DEFVAR_LISP_NOPRO ("default-major-mode", &buffer_defaults.major_mode,
2432 "*Major mode for new buffers. Defaults to `fundamental-mode'.\n\
2433nil here means use current buffer's major mode.");
2434
2435 DEFVAR_PER_BUFFER ("major-mode", &current_buffer->major_mode,
0fa3ba92 2436 make_number (Lisp_Symbol),
1ab256cb
RM
2437 "Symbol for current buffer's major mode.");
2438
2439 DEFVAR_PER_BUFFER ("mode-name", &current_buffer->mode_name,
0fa3ba92 2440 make_number (Lisp_String),
1ab256cb
RM
2441 "Pretty name of current buffer's major mode (a string).");
2442
0fa3ba92 2443 DEFVAR_PER_BUFFER ("abbrev-mode", &current_buffer->abbrev_mode, Qnil,
1ab256cb
RM
2444 "Non-nil turns on automatic expansion of abbrevs as they are inserted.\n\
2445Automatically becomes buffer-local when set in any fashion.");
2446
2447 DEFVAR_PER_BUFFER ("case-fold-search", &current_buffer->case_fold_search,
0fa3ba92 2448 Qnil,
1ab256cb
RM
2449 "*Non-nil if searches should ignore case.\n\
2450Automatically becomes buffer-local when set in any fashion.");
2451
2452 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column,
0fa3ba92 2453 make_number (Lisp_Int),
1ab256cb
RM
2454 "*Column beyond which automatic line-wrapping should happen.\n\
2455Automatically becomes buffer-local when set in any fashion.");
2456
2457 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin,
0fa3ba92 2458 make_number (Lisp_Int),
1ab256cb
RM
2459 "*Column for the default indent-line-function to indent to.\n\
2460Linefeed indents to this column in Fundamental mode.\n\
2461Automatically becomes buffer-local when set in any fashion.");
2462
2463 DEFVAR_PER_BUFFER ("tab-width", &current_buffer->tab_width,
0fa3ba92 2464 make_number (Lisp_Int),
1ab256cb
RM
2465 "*Distance between tab stops (for display of tab characters), in columns.\n\
2466Automatically becomes buffer-local when set in any fashion.");
2467
0fa3ba92 2468 DEFVAR_PER_BUFFER ("ctl-arrow", &current_buffer->ctl_arrow, Qnil,
1ab256cb
RM
2469 "*Non-nil means display control chars with uparrow.\n\
2470Nil means use backslash and octal digits.\n\
2471Automatically becomes buffer-local when set in any fashion.\n\
2472This variable does not apply to characters whose display is specified\n\
2473in the current display table (if there is one).");
2474
0fa3ba92 2475 DEFVAR_PER_BUFFER ("truncate-lines", &current_buffer->truncate_lines, Qnil,
1ab256cb
RM
2476 "*Non-nil means do not display continuation lines;\n\
2477give each line of text one screen line.\n\
2478Automatically becomes buffer-local when set in any fashion.\n\
2479\n\
2480Note that this is overridden by the variable\n\
2481`truncate-partial-width-windows' if that variable is non-nil\n\
502b9b64 2482and this buffer is not full-frame width.");
1ab256cb 2483
54ad07d3
RS
2484#ifdef MSDOS
2485 DEFVAR_PER_BUFFER ("buffer-file-type", &current_buffer->buffer_file_type,
2486 Qnil,
2487 "*If visited file is text, nil; otherwise, t.");
2488#endif
2489
1ab256cb 2490 DEFVAR_PER_BUFFER ("default-directory", &current_buffer->directory,
0fa3ba92 2491 make_number (Lisp_String),
1ab256cb
RM
2492 "Name of default directory of current buffer. Should end with slash.\n\
2493Each buffer has its own value of this variable.");
2494
2495 DEFVAR_PER_BUFFER ("auto-fill-function", &current_buffer->auto_fill_function,
0fa3ba92 2496 Qnil,
1ab256cb
RM
2497 "Function called (if non-nil) to perform auto-fill.\n\
2498It is called after self-inserting a space at a column beyond `fill-column'.\n\
2499Each buffer has its own value of this variable.\n\
2500NOTE: This variable is not an ordinary hook;\n\
2501It may not be a list of functions.");
2502
2503 DEFVAR_PER_BUFFER ("buffer-file-name", &current_buffer->filename,
0fa3ba92 2504 make_number (Lisp_String),
1ab256cb
RM
2505 "Name of file visited in current buffer, or nil if not visiting a file.\n\
2506Each buffer has its own value of this variable.");
2507
2508 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
3f5fcd47 2509 &current_buffer->auto_save_file_name,
0fa3ba92 2510 make_number (Lisp_String),
1ab256cb
RM
2511 "Name of file for auto-saving current buffer,\n\
2512or nil if buffer should not be auto-saved.\n\
2513Each buffer has its own value of this variable.");
2514
0fa3ba92 2515 DEFVAR_PER_BUFFER ("buffer-read-only", &current_buffer->read_only, Qnil,
1ab256cb
RM
2516 "Non-nil if this buffer is read-only.\n\
2517Each buffer has its own value of this variable.");
2518
0fa3ba92 2519 DEFVAR_PER_BUFFER ("buffer-backed-up", &current_buffer->backed_up, Qnil,
1ab256cb
RM
2520 "Non-nil if this buffer's file has been backed up.\n\
2521Backing up is done before the first time the file is saved.\n\
2522Each buffer has its own value of this variable.");
2523
2524 DEFVAR_PER_BUFFER ("buffer-saved-size", &current_buffer->save_length,
0fa3ba92 2525 make_number (Lisp_Int),
1ab256cb
RM
2526 "Length of current buffer when last read in, saved or auto-saved.\n\
25270 initially.\n\
2528Each buffer has its own value of this variable.");
2529
2530 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
0fa3ba92 2531 Qnil,
1ab256cb
RM
2532 "Non-nil enables selective display:\n\
2533Integer N as value means display only lines\n\
2534 that start with less than n columns of space.\n\
2535A value of t means, after a ^M, all the rest of the line is invisible.\n\
2536 Then ^M's in the file are written into files as newlines.\n\n\
2537Automatically becomes buffer-local when set in any fashion.");
2538
2539#ifndef old
2540 DEFVAR_PER_BUFFER ("selective-display-ellipses",
2541 &current_buffer->selective_display_ellipses,
0fa3ba92 2542 Qnil,
1ab256cb
RM
2543 "t means display ... on previous line when a line is invisible.\n\
2544Automatically becomes buffer-local when set in any fashion.");
2545#endif
2546
0fa3ba92 2547 DEFVAR_PER_BUFFER ("overwrite-mode", &current_buffer->overwrite_mode, Qnil,
1ab256cb 2548 "Non-nil if self-insertion should replace existing text.\n\
6bbb0d4a
JB
2549If non-nil and not `overwrite-mode-binary', self-insertion still\n\
2550inserts at the end of a line, and inserts when point is before a tab,\n\
2e94b813 2551until the tab is filled in.\n\
6bbb0d4a 2552If `overwrite-mode-binary', self-insertion replaces newlines and tabs too.\n\
1ab256cb
RM
2553Automatically becomes buffer-local when set in any fashion.");
2554
54939090
RS
2555#if 0 /* The doc string is too long for some compilers,
2556 but make-docfile can find it in this comment. */
1ab256cb 2557 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
5d305367 2558 Qnil,
1ab256cb
RM
2559 "Display table that controls display of the contents of current buffer.\n\
2560Automatically becomes buffer-local when set in any fashion.\n\
2561The display table is a vector created with `make-display-table'.\n\
2562The first 256 elements control how to display each possible text character.\n\
6158b3b0 2563Each value should be a vector of characters or nil;\n\
1ab256cb 2564nil means display the character in the default fashion.\n\
6158b3b0
JB
2565The remaining five elements control the display of\n\
2566 the end of a truncated screen line (element 256, a single character);\n\
2567 the end of a continued line (element 257, a single character);\n\
2568 the escape character used to display character codes in octal\n\
2569 (element 258, a single character);\n\
2570 the character used as an arrow for control characters (element 259,\n\
2571 a single character);\n\
2572 the decoration indicating the presence of invisible lines (element 260,\n\
2573 a vector of characters).\n\
1ab256cb
RM
2574If this variable is nil, the value of `standard-display-table' is used.\n\
2575Each window can have its own, overriding display table.");
54939090
RS
2576#endif
2577 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
de15914a 2578 Qnil, 0);
1ab256cb 2579
1ab256cb
RM
2580/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
2581 "Don't ask.");
2582*/
01050cb5 2583 DEFVAR_LISP ("before-change-function", &Vbefore_change_function,
1ab256cb
RM
2584 "Function to call before each text change.\n\
2585Two arguments are passed to the function: the positions of\n\
2586the beginning and end of the range of old text to be changed.\n\
2587\(For an insertion, the beginning and end are at the same place.)\n\
2588No information is given about the length of the text after the change.\n\
2589position of the change\n\
2590\n\
5f079267
RS
2591Buffer changes made while executing the `before-change-function'\n\
2592don't call any before-change or after-change functions.");
1ab256cb
RM
2593 Vbefore_change_function = Qnil;
2594
2595 DEFVAR_LISP ("after-change-function", &Vafter_change_function,
2596 "Function to call after each text change.\n\
2597Three arguments are passed to the function: the positions of\n\
2598the beginning and end of the range of changed text,\n\
2599and the length of the pre-change text replaced by that range.\n\
2600\(For an insertion, the pre-change length is zero;\n\
2601for a deletion, that length is the number of characters deleted,\n\
2602and the post-change beginning and end are at the same place.)\n\
2603\n\
5f079267
RS
2604Buffer changes made while executing the `after-change-function'\n\
2605don't call any before-change or after-change functions.");
1ab256cb
RM
2606 Vafter_change_function = Qnil;
2607
5f079267
RS
2608 DEFVAR_LISP ("before-change-functions", &Vbefore_change_functions,
2609 "List of functions to call before each text change.\n\
2610Two arguments are passed to each function: the positions of\n\
2611the beginning and end of the range of old text to be changed.\n\
2612\(For an insertion, the beginning and end are at the same place.)\n\
2613No information is given about the length of the text after the change.\n\
2614position of the change\n\
2615\n\
2616Buffer changes made while executing the `before-change-functions'\n\
2617don't call any before-change or after-change functions.");
2618 Vbefore_change_functions = Qnil;
2619
2620 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions,
2621 "List of function to call after each text change.\n\
2622Three arguments are passed to each function: the positions of\n\
2623the beginning and end of the range of changed text,\n\
2624and the length of the pre-change text replaced by that range.\n\
2625\(For an insertion, the pre-change length is zero;\n\
2626for a deletion, that length is the number of characters deleted,\n\
2627and the post-change beginning and end are at the same place.)\n\
2628\n\
2629Buffer changes made while executing the `after-change-functions'\n\
2630don't call any before-change or after-change functions.");
2631 Vafter_change_functions = Qnil;
2632
dbc4e1c1
JB
2633 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook,
2634 "A list of functions to call before changing a buffer which is unmodified.\n\
2635The functions are run using the `run-hooks' function.");
2636 Vfirst_change_hook = Qnil;
2637 Qfirst_change_hook = intern ("first-change-hook");
2638 staticpro (&Qfirst_change_hook);
1ab256cb 2639
54939090
RS
2640#if 0 /* The doc string is too long for some compilers,
2641 but make-docfile can find it in this comment. */
3f5fcd47 2642 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
1ab256cb
RM
2643 "List of undo entries in current buffer.\n\
2644Recent changes come first; older changes follow newer.\n\
2645\n\
2646An entry (START . END) represents an insertion which begins at\n\
2647position START and ends at position END.\n\
2648\n\
2649An entry (TEXT . POSITION) represents the deletion of the string TEXT\n\
2650from (abs POSITION). If POSITION is positive, point was at the front\n\
2651of the text being deleted; if negative, point was at the end.\n\
2652\n\
2653An entry (t HIGHWORD LOWWORD) indicates that the buffer had been\n\
2654previously unmodified. HIGHWORD and LOWWORD are the high and low\n\
265516-bit words of the buffer's modification count at the time. If the\n\
2656modification count of the most recent save is different, this entry is\n\
2657obsolete.\n\
2658\n\
483c1fd3
RS
2659An entry (nil PROP VAL BEG . END) indicates that a text property\n\
2660was modified between BEG and END. PROP is the property name,\n\
2661and VAL is the old value.\n\
2662\n\
bec44fd6
JB
2663An entry of the form POSITION indicates that point was at the buffer\n\
2664location given by the integer. Undoing an entry of this form places\n\
2665point at POSITION.\n\
2666\n\
1ab256cb
RM
2667nil marks undo boundaries. The undo command treats the changes\n\
2668between two undo boundaries as a single step to be undone.\n\
2669\n\
bec44fd6 2670If the value of the variable is t, undo information is not recorded.");
54939090
RS
2671#endif
2672 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
de15914a 2673 0);
1ab256cb 2674
c48f61ef
RS
2675 DEFVAR_PER_BUFFER ("mark-active", &current_buffer->mark_active, Qnil,
2676 "Non-nil means the mark and region are currently active in this buffer.\n\
2677Automatically local in all buffers.");
2678
2679 DEFVAR_LISP ("transient-mark-mode", &Vtransient_mark_mode,
2680 "*Non-nil means deactivate the mark when the buffer contents change.");
2681 Vtransient_mark_mode = Qnil;
2682
0a4469c9 2683 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only,
a96b68f1
RS
2684 "*Non-nil means disregard read-only status of buffers or characters.\n\
2685If the value is t, disregard `buffer-read-only' and all `read-only'\n\
2686text properties. If the value is a list, disregard `buffer-read-only'\n\
2687and disregard a `read-only' text property if the property value\n\
2688is a member of the list.");
2689 Vinhibit_read_only = Qnil;
2690
dcdffbf6
RS
2691 DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions,
2692 "List of functions called with no args to query before killing a buffer.");
2693 Vkill_buffer_query_functions = Qnil;
2694
1ab256cb
RM
2695 defsubr (&Sbuffer_list);
2696 defsubr (&Sget_buffer);
2697 defsubr (&Sget_file_buffer);
2698 defsubr (&Sget_buffer_create);
01050cb5 2699 defsubr (&Sgenerate_new_buffer_name);
1ab256cb
RM
2700 defsubr (&Sbuffer_name);
2701/*defsubr (&Sbuffer_number);*/
2702 defsubr (&Sbuffer_file_name);
2703 defsubr (&Sbuffer_local_variables);
2704 defsubr (&Sbuffer_modified_p);
2705 defsubr (&Sset_buffer_modified_p);
2706 defsubr (&Sbuffer_modified_tick);
2707 defsubr (&Srename_buffer);
2708 defsubr (&Sother_buffer);
2709 defsubr (&Sbuffer_disable_undo);
2710 defsubr (&Sbuffer_enable_undo);
2711 defsubr (&Skill_buffer);
2712 defsubr (&Serase_buffer);
2713 defsubr (&Sswitch_to_buffer);
2714 defsubr (&Spop_to_buffer);
2715 defsubr (&Scurrent_buffer);
2716 defsubr (&Sset_buffer);
2717 defsubr (&Sbarf_if_buffer_read_only);
2718 defsubr (&Sbury_buffer);
2719 defsubr (&Slist_buffers);
2720 defsubr (&Skill_all_local_variables);
2eec3b4e 2721
52f8ec73 2722 defsubr (&Soverlayp);
2eec3b4e
RS
2723 defsubr (&Smake_overlay);
2724 defsubr (&Sdelete_overlay);
2725 defsubr (&Smove_overlay);
8ebafa8d
JB
2726 defsubr (&Soverlay_start);
2727 defsubr (&Soverlay_end);
2728 defsubr (&Soverlay_buffer);
2729 defsubr (&Soverlay_properties);
2eec3b4e
RS
2730 defsubr (&Soverlays_at);
2731 defsubr (&Snext_overlay_change);
2732 defsubr (&Soverlay_recenter);
2733 defsubr (&Soverlay_lists);
2734 defsubr (&Soverlay_get);
2735 defsubr (&Soverlay_put);
1ab256cb
RM
2736}
2737
2738keys_of_buffer ()
2739{
2740 initial_define_key (control_x_map, 'b', "switch-to-buffer");
2741 initial_define_key (control_x_map, 'k', "kill-buffer");
2742 initial_define_key (control_x_map, Ctl ('B'), "list-buffers");
4158c17d
RM
2743
2744 /* This must not be in syms_of_buffer, because Qdisabled is not
2745 initialized when that function gets called. */
2746 Fput (intern ("erase-buffer"), Qdisabled, Qt);
1ab256cb 2747}