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