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