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