(etc): Delete *.orig and *.rej.
[emacs.git] / src / buffer.c
blobd43b3d19c7b42250a986cbf81886fee590f4f51e
1 /* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <sys/param.h>
26 #ifndef MAXPATHLEN
27 /* in 4.1, param.h fails to define this. */
28 #define MAXPATHLEN 1024
29 #endif /* not MAXPATHLEN */
31 #include <config.h>
32 #include "lisp.h"
33 #include "intervals.h"
34 #include "window.h"
35 #include "commands.h"
36 #include "buffer.h"
37 #include "region-cache.h"
38 #include "indent.h"
39 #include "blockinput.h"
41 struct buffer *current_buffer; /* the current buffer */
43 /* First buffer in chain of all buffers (in reverse order of creation).
44 Threaded through ->next. */
46 struct buffer *all_buffers;
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. */
55 struct buffer buffer_defaults;
57 /* A Lisp_Object pointer to the above, used for staticpro */
59 static Lisp_Object Vbuffer_defaults;
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.
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.
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.
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.
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.
81 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is
82 zero, that is a bug */
84 struct buffer buffer_local_flags;
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. */
89 struct buffer buffer_local_symbols;
90 /* A Lisp_Object pointer to the above, used for staticpro */
91 static Lisp_Object Vbuffer_local_symbols;
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. */
99 struct buffer buffer_local_types;
101 Lisp_Object Fset_buffer ();
102 void set_buffer_internal ();
103 void set_buffer_internal_1 ();
104 static void call_overlay_mod_hooks ();
105 static void swap_out_buffer_local_variables ();
107 /* Alist of all buffer names vs the buffers. */
108 /* This used to be a variable, but is no longer,
109 to prevent lossage due to user rplac'ing this alist or its elements. */
110 Lisp_Object Vbuffer_alist;
112 /* Functions to call before and after each text change. */
113 Lisp_Object Vbefore_change_function;
114 Lisp_Object Vafter_change_function;
115 Lisp_Object Vbefore_change_functions;
116 Lisp_Object Vafter_change_functions;
118 Lisp_Object Vtransient_mark_mode;
120 /* t means ignore all read-only text properties.
121 A list means ignore such a property if its value is a member of the list.
122 Any non-nil value means ignore buffer-read-only. */
123 Lisp_Object Vinhibit_read_only;
125 /* List of functions to call that can query about killing a buffer.
126 If any of these functions returns nil, we don't kill it. */
127 Lisp_Object Vkill_buffer_query_functions;
129 /* List of functions to call before changing an unmodified buffer. */
130 Lisp_Object Vfirst_change_hook;
132 Lisp_Object Qfirst_change_hook;
133 Lisp_Object Qbefore_change_functions;
134 Lisp_Object Qafter_change_functions;
136 Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local;
138 Lisp_Object Qprotected_field;
140 Lisp_Object QSFundamental; /* A string "Fundamental" */
142 Lisp_Object Qkill_buffer_hook;
144 Lisp_Object Qget_file_buffer;
146 Lisp_Object Qoverlayp;
148 Lisp_Object Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string;
150 Lisp_Object Qmodification_hooks;
151 Lisp_Object Qinsert_in_front_hooks;
152 Lisp_Object Qinsert_behind_hooks;
154 /* For debugging; temporary. See set_buffer_internal. */
155 /* Lisp_Object Qlisp_mode, Vcheck_symbol; */
157 nsberror (spec)
158 Lisp_Object spec;
160 if (STRINGP (spec))
161 error ("No buffer named %s", XSTRING (spec)->data);
162 error ("Invalid buffer argument");
165 DEFUN ("buffer-list", Fbuffer_list, Sbuffer_list, 0, 0, 0,
166 "Return a list of all existing live buffers.")
169 return Fmapcar (Qcdr, Vbuffer_alist);
172 /* Like Fassoc, but use Fstring_equal to compare
173 (which ignores text properties),
174 and don't ever QUIT. */
176 static Lisp_Object
177 assoc_ignore_text_properties (key, list)
178 register Lisp_Object key;
179 Lisp_Object list;
181 register Lisp_Object tail;
182 for (tail = list; !NILP (tail); tail = Fcdr (tail))
184 register Lisp_Object elt, tem;
185 elt = Fcar (tail);
186 tem = Fstring_equal (Fcar (elt), key);
187 if (!NILP (tem))
188 return elt;
190 return Qnil;
193 DEFUN ("get-buffer", Fget_buffer, Sget_buffer, 1, 1, 0,
194 "Return the buffer named NAME (a string).\n\
195 If there is no live buffer named NAME, return nil.\n\
196 NAME may also be a buffer; if so, the value is that buffer.")
197 (name)
198 register Lisp_Object name;
200 if (BUFFERP (name))
201 return name;
202 CHECK_STRING (name, 0);
204 return Fcdr (assoc_ignore_text_properties (name, Vbuffer_alist));
207 DEFUN ("get-file-buffer", Fget_file_buffer, Sget_file_buffer, 1, 1, 0,
208 "Return the buffer visiting file FILENAME (a string).\n\
209 The buffer's `buffer-file-name' must match exactly the expansion of FILENAME.\n\
210 If there is no such live buffer, return nil.\n\
211 See also `find-buffer-visiting'.")
212 (filename)
213 register Lisp_Object filename;
215 register Lisp_Object tail, buf, tem;
216 Lisp_Object handler;
218 CHECK_STRING (filename, 0);
219 filename = Fexpand_file_name (filename, Qnil);
221 /* If the file name has special constructs in it,
222 call the corresponding file handler. */
223 handler = Ffind_file_name_handler (filename, Qget_file_buffer);
224 if (!NILP (handler))
225 return call2 (handler, Qget_file_buffer, filename);
227 for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr)
229 buf = Fcdr (XCONS (tail)->car);
230 if (!BUFFERP (buf)) continue;
231 if (!STRINGP (XBUFFER (buf)->filename)) continue;
232 tem = Fstring_equal (XBUFFER (buf)->filename, filename);
233 if (!NILP (tem))
234 return buf;
236 return Qnil;
239 Lisp_Object
240 get_truename_buffer (filename)
241 register Lisp_Object filename;
243 register Lisp_Object tail, buf, tem;
245 for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr)
247 buf = Fcdr (XCONS (tail)->car);
248 if (!BUFFERP (buf)) continue;
249 if (!STRINGP (XBUFFER (buf)->file_truename)) continue;
250 tem = Fstring_equal (XBUFFER (buf)->file_truename, filename);
251 if (!NILP (tem))
252 return buf;
254 return Qnil;
257 /* Incremented for each buffer created, to assign the buffer number. */
258 int buffer_count;
260 DEFUN ("get-buffer-create", Fget_buffer_create, Sget_buffer_create, 1, 1, 0,
261 "Return the buffer named NAME, or create such a buffer and return it.\n\
262 A new buffer is created if there is no live buffer named NAME.\n\
263 If NAME starts with a space, the new buffer does not keep undo information.\n\
264 If NAME is a buffer instead of a string, then it is the value returned.\n\
265 The value is never nil.")
266 (name)
267 register Lisp_Object name;
269 register Lisp_Object buf;
270 register struct buffer *b;
272 buf = Fget_buffer (name);
273 if (!NILP (buf))
274 return buf;
276 if (XSTRING (name)->size == 0)
277 error ("Empty string for buffer name is not allowed");
279 b = (struct buffer *) xmalloc (sizeof (struct buffer));
281 b->size = sizeof (struct buffer) / sizeof (EMACS_INT);
283 /* An ordinary buffer uses its own struct buffer_text. */
284 b->text = &b->own_text;
285 b->base_buffer = 0;
287 BUF_GAP_SIZE (b) = 20;
288 BLOCK_INPUT;
289 BUFFER_ALLOC (BUF_BEG_ADDR (b), BUF_GAP_SIZE (b));
290 UNBLOCK_INPUT;
291 if (! BUF_BEG_ADDR (b))
292 buffer_memory_full ();
294 BUF_PT (b) = 1;
295 BUF_GPT (b) = 1;
296 BUF_BEGV (b) = 1;
297 BUF_ZV (b) = 1;
298 BUF_Z (b) = 1;
299 BUF_MODIFF (b) = 1;
300 BUF_SAVE_MODIFF (b) = 1;
301 BUF_INTERVALS (b) = 0;
303 b->newline_cache = 0;
304 b->width_run_cache = 0;
305 b->width_table = Qnil;
307 /* Put this on the chain of all buffers including killed ones. */
308 b->next = all_buffers;
309 all_buffers = b;
311 /* An ordinary buffer normally doesn't need markers
312 to handle BEGV and ZV. */
313 b->pt_marker = Qnil;
314 b->begv_marker = Qnil;
315 b->zv_marker = Qnil;
317 name = Fcopy_sequence (name);
318 INITIALIZE_INTERVAL (XSTRING (name), NULL_INTERVAL);
319 b->name = name;
321 if (XSTRING (name)->data[0] != ' ')
322 b->undo_list = Qnil;
323 else
324 b->undo_list = Qt;
326 reset_buffer (b);
327 reset_buffer_local_variables (b);
329 /* Put this in the alist of all live buffers. */
330 XSETBUFFER (buf, b);
331 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
333 b->mark = Fmake_marker ();
334 BUF_MARKERS (b) = Qnil;
335 b->name = name;
336 return buf;
339 DEFUN ("make-indirect-buffer",
340 Fmake_indirect_buffer, Smake_indirect_buffer, 2, 2,
341 "bMake indirect buffer (to buffer): \nBName of indirect buffer: ",
342 "Create and return an indirect buffer for buffer BASE, named NAME.\n\
343 BASE should be an existing buffer (or buffer name).\n\
344 NAME should be a string which is not the name of an existing buffer.")
345 (base_buffer, name)
346 register Lisp_Object base_buffer, name;
348 register Lisp_Object buf;
349 register struct buffer *b;
351 buf = Fget_buffer (name);
352 if (!NILP (buf))
353 error ("Buffer name `%s' is in use", XSTRING (name)->data);
355 base_buffer = Fget_buffer (base_buffer);
356 if (NILP (base_buffer))
357 error ("No such buffer: `%s'",
358 XSTRING (XBUFFER (base_buffer)->name)->data);
360 if (XSTRING (name)->size == 0)
361 error ("Empty string for buffer name is not allowed");
363 b = (struct buffer *) xmalloc (sizeof (struct buffer));
365 b->size = sizeof (struct buffer) / sizeof (EMACS_INT);
367 if (XBUFFER (base_buffer)->base_buffer)
368 b->base_buffer = XBUFFER (base_buffer)->base_buffer;
369 else
370 b->base_buffer = XBUFFER (base_buffer);
372 /* Use the base buffer's text object. */
373 b->text = b->base_buffer->text;
375 BUF_BEGV (b) = BUF_BEGV (b->base_buffer);
376 BUF_ZV (b) = BUF_ZV (b->base_buffer);
377 BUF_PT (b) = BUF_PT (b->base_buffer);
379 b->newline_cache = 0;
380 b->width_run_cache = 0;
381 b->width_table = Qnil;
383 /* Put this on the chain of all buffers including killed ones. */
384 b->next = all_buffers;
385 all_buffers = b;
387 name = Fcopy_sequence (name);
388 INITIALIZE_INTERVAL (XSTRING (name), NULL_INTERVAL);
389 b->name = name;
391 reset_buffer (b);
392 reset_buffer_local_variables (b);
394 /* Put this in the alist of all live buffers. */
395 XSETBUFFER (buf, b);
396 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
398 b->mark = Fmake_marker ();
399 b->name = name;
401 /* Make sure the base buffer has markers for its narrowing. */
402 if (NILP (b->base_buffer->pt_marker))
404 b->base_buffer->pt_marker = Fmake_marker ();
405 Fset_marker (b->base_buffer->pt_marker,
406 make_number (BUF_PT (b->base_buffer)), base_buffer);
408 if (NILP (b->base_buffer->begv_marker))
410 b->base_buffer->begv_marker = Fmake_marker ();
411 Fset_marker (b->base_buffer->begv_marker,
412 make_number (BUF_BEGV (b->base_buffer)), base_buffer);
414 if (NILP (b->base_buffer->zv_marker))
416 b->base_buffer->zv_marker = Fmake_marker ();
417 Fset_marker (b->base_buffer->zv_marker,
418 make_number (BUF_ZV (b->base_buffer)), base_buffer);
419 XMARKER (b->base_buffer->zv_marker)->insertion_type = 1;
422 /* Give the indirect buffer markers for its narrowing. */
423 b->pt_marker = Fmake_marker ();
424 Fset_marker (b->pt_marker, make_number (BUF_PT (b)), buf);
425 b->begv_marker = Fmake_marker ();
426 Fset_marker (b->begv_marker, make_number (BUF_BEGV (b)), buf);
427 b->zv_marker = Fmake_marker ();
428 Fset_marker (b->zv_marker, make_number (BUF_ZV (b)), buf);
430 XMARKER (b->zv_marker)->insertion_type = 1;
432 return buf;
435 /* Reinitialize everything about a buffer except its name and contents
436 and local variables. */
438 void
439 reset_buffer (b)
440 register struct buffer *b;
442 b->filename = Qnil;
443 b->file_truename = Qnil;
444 b->directory = (current_buffer) ? current_buffer->directory : Qnil;
445 b->modtime = 0;
446 XSETFASTINT (b->save_length, 0);
447 b->last_window_start = 1;
448 b->backed_up = Qnil;
449 b->auto_save_modified = 0;
450 b->auto_save_failure_time = -1;
451 b->auto_save_file_name = Qnil;
452 b->read_only = Qnil;
453 b->overlays_before = Qnil;
454 b->overlays_after = Qnil;
455 XSETFASTINT (b->overlay_center, 1);
456 b->mark_active = Qnil;
457 b->point_before_scroll = Qnil;
458 b->file_format = Qnil;
459 b->redisplay_end_trigger = Qnil;
460 b->extra1 = Qnil;
461 b->extra2 = Qnil;
462 b->extra3 = Qnil;
465 /* Reset buffer B's local variables info.
466 Don't use this on a buffer that has already been in use;
467 it does not treat permanent locals consistently.
468 Instead, use Fkill_all_local_variables. */
470 reset_buffer_local_variables (b)
471 register struct buffer *b;
473 register int offset;
475 /* Reset the major mode to Fundamental, together with all the
476 things that depend on the major mode.
477 default-major-mode is handled at a higher level.
478 We ignore it here. */
479 b->major_mode = Qfundamental_mode;
480 b->keymap = Qnil;
481 b->abbrev_table = Vfundamental_mode_abbrev_table;
482 b->mode_name = QSFundamental;
483 b->minor_modes = Qnil;
485 /* If the standard case table has been altered and invalidated,
486 fix up its insides first. */
487 if (! (CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[0])
488 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[1])
489 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[2])))
490 Fset_standard_case_table (Vascii_downcase_table);
492 b->downcase_table = Vascii_downcase_table;
493 b->upcase_table = XCHAR_TABLE (Vascii_downcase_table)->extras[0];
494 b->case_canon_table = XCHAR_TABLE (Vascii_downcase_table)->extras[1];
495 b->case_eqv_table = XCHAR_TABLE (Vascii_downcase_table)->extras[2];
496 b->buffer_file_type = Qnil;
497 b->invisibility_spec = Qt;
499 #if 0
500 b->sort_table = XSTRING (Vascii_sort_table);
501 b->folding_sort_table = XSTRING (Vascii_folding_sort_table);
502 #endif /* 0 */
504 /* Reset all per-buffer variables to their defaults. */
505 b->local_var_alist = Qnil;
506 b->local_var_flags = 0;
508 /* For each slot that has a default value,
509 copy that into the slot. */
511 for (offset = (char *)&buffer_local_flags.name - (char *)&buffer_local_flags;
512 offset < sizeof (struct buffer);
513 offset += sizeof (Lisp_Object)) /* sizeof EMACS_INT == sizeof Lisp_Object */
515 int flag = XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_flags));
516 if (flag > 0 || flag == -2)
517 *(Lisp_Object *)(offset + (char *)b) =
518 *(Lisp_Object *)(offset + (char *)&buffer_defaults);
522 /* We split this away from generate-new-buffer, because rename-buffer
523 and set-visited-file-name ought to be able to use this to really
524 rename the buffer properly. */
526 DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name, Sgenerate_new_buffer_name,
527 1, 2, 0,
528 "Return a string that is the name of no existing buffer based on NAME.\n\
529 If there is no live buffer named NAME, then return NAME.\n\
530 Otherwise modify name by appending `<NUMBER>', incrementing NUMBER\n\
531 until an unused name is found, and then return that name.\n\
532 Optional second argument IGNORE specifies a name that is okay to use\n\
533 \(if it is in the sequence to be tried)\n\
534 even if a buffer with that name exists.")
535 (name, ignore)
536 register Lisp_Object name, ignore;
538 register Lisp_Object gentemp, tem;
539 int count;
540 char number[10];
542 CHECK_STRING (name, 0);
544 tem = Fget_buffer (name);
545 if (NILP (tem))
546 return name;
548 count = 1;
549 while (1)
551 sprintf (number, "<%d>", ++count);
552 gentemp = concat2 (name, build_string (number));
553 tem = Fstring_equal (gentemp, ignore);
554 if (!NILP (tem))
555 return gentemp;
556 tem = Fget_buffer (gentemp);
557 if (NILP (tem))
558 return gentemp;
563 DEFUN ("buffer-name", Fbuffer_name, Sbuffer_name, 0, 1, 0,
564 "Return the name of BUFFER, as a string.\n\
565 With no argument or nil as argument, return the name of the current buffer.")
566 (buffer)
567 register Lisp_Object buffer;
569 if (NILP (buffer))
570 return current_buffer->name;
571 CHECK_BUFFER (buffer, 0);
572 return XBUFFER (buffer)->name;
575 DEFUN ("buffer-file-name", Fbuffer_file_name, Sbuffer_file_name, 0, 1, 0,
576 "Return name of file BUFFER is visiting, or nil if none.\n\
577 No argument or nil as argument means use the current buffer.")
578 (buffer)
579 register Lisp_Object buffer;
581 if (NILP (buffer))
582 return current_buffer->filename;
583 CHECK_BUFFER (buffer, 0);
584 return XBUFFER (buffer)->filename;
587 DEFUN ("buffer-base-buffer", Fbuffer_base_buffer, Sbuffer_base_buffer,
588 0, 1, 0,
589 "Return the base buffer of indirect buffer BUFFER.\n\
590 If BUFFER is not indirect, return nil.")
591 (buffer)
592 register Lisp_Object buffer;
594 struct buffer *base;
595 Lisp_Object base_buffer;
597 if (NILP (buffer))
598 base = current_buffer->base_buffer;
599 else
601 CHECK_BUFFER (buffer, 0);
602 base = XBUFFER (buffer)->base_buffer;
605 if (! base)
606 return Qnil;
607 XSETBUFFER (base_buffer, base);
608 return base_buffer;
611 DEFUN ("buffer-local-variables", Fbuffer_local_variables,
612 Sbuffer_local_variables, 0, 1, 0,
613 "Return an alist of variables that are buffer-local in BUFFER.\n\
614 Most elements look like (SYMBOL . VALUE), describing one variable.\n\
615 For a symbol that is locally unbound, just the symbol appears in the value.\n\
616 Note that storing new VALUEs in these elements doesn't change the variables.\n\
617 No argument or nil as argument means use current buffer as BUFFER.")
618 (buffer)
619 register Lisp_Object buffer;
621 register struct buffer *buf;
622 register Lisp_Object result;
624 if (NILP (buffer))
625 buf = current_buffer;
626 else
628 CHECK_BUFFER (buffer, 0);
629 buf = XBUFFER (buffer);
632 result = Qnil;
635 register Lisp_Object tail;
636 for (tail = buf->local_var_alist; CONSP (tail); tail = XCONS (tail)->cdr)
638 Lisp_Object val, elt;
640 elt = XCONS (tail)->car;
642 /* Reference each variable in the alist in buf.
643 If inquiring about the current buffer, this gets the current values,
644 so store them into the alist so the alist is up to date.
645 If inquiring about some other buffer, this swaps out any values
646 for that buffer, making the alist up to date automatically. */
647 val = find_symbol_value (XCONS (elt)->car);
648 /* Use the current buffer value only if buf is the current buffer. */
649 if (buf != current_buffer)
650 val = XCONS (elt)->cdr;
652 /* If symbol is unbound, put just the symbol in the list. */
653 if (EQ (val, Qunbound))
654 result = Fcons (XCONS (elt)->car, result);
655 /* Otherwise, put (symbol . value) in the list. */
656 else
657 result = Fcons (Fcons (XCONS (elt)->car, val), result);
661 /* Add on all the variables stored in special slots. */
663 register int offset, mask;
665 for (offset = (char *)&buffer_local_symbols.name - (char *)&buffer_local_symbols;
666 offset < sizeof (struct buffer);
667 offset += (sizeof (EMACS_INT))) /* sizeof EMACS_INT == sizeof Lisp_Object */
669 mask = XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_flags));
670 if (mask == -1 || (buf->local_var_flags & mask))
671 if (SYMBOLP (*(Lisp_Object *)(offset
672 + (char *)&buffer_local_symbols)))
673 result = Fcons (Fcons (*((Lisp_Object *)
674 (offset + (char *)&buffer_local_symbols)),
675 *(Lisp_Object *)(offset + (char *)buf)),
676 result);
680 return result;
684 DEFUN ("buffer-modified-p", Fbuffer_modified_p, Sbuffer_modified_p,
685 0, 1, 0,
686 "Return t if BUFFER was modified since its file was last read or saved.\n\
687 No argument or nil as argument means use current buffer as BUFFER.")
688 (buffer)
689 register Lisp_Object buffer;
691 register struct buffer *buf;
692 if (NILP (buffer))
693 buf = current_buffer;
694 else
696 CHECK_BUFFER (buffer, 0);
697 buf = XBUFFER (buffer);
700 return BUF_SAVE_MODIFF (buf) < BUF_MODIFF (buf) ? Qt : Qnil;
703 DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p, Sset_buffer_modified_p,
704 1, 1, 0,
705 "Mark current buffer as modified or unmodified according to FLAG.\n\
706 A non-nil FLAG means mark the buffer modified.")
707 (flag)
708 register Lisp_Object flag;
710 register int already;
711 register Lisp_Object fn;
713 #ifdef CLASH_DETECTION
714 /* If buffer becoming modified, lock the file.
715 If buffer becoming unmodified, unlock the file. */
717 fn = current_buffer->file_truename;
718 if (!NILP (fn))
720 already = SAVE_MODIFF < MODIFF;
721 if (!already && !NILP (flag))
722 lock_file (fn);
723 else if (already && NILP (flag))
724 unlock_file (fn);
726 #endif /* CLASH_DETECTION */
728 SAVE_MODIFF = NILP (flag) ? MODIFF : 0;
729 update_mode_lines++;
730 return flag;
733 DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick,
734 0, 1, 0,
735 "Return BUFFER's tick counter, incremented for each change in text.\n\
736 Each buffer has a tick counter which is incremented each time the text in\n\
737 that buffer is changed. It wraps around occasionally.\n\
738 No argument or nil as argument means use current buffer as BUFFER.")
739 (buffer)
740 register Lisp_Object buffer;
742 register struct buffer *buf;
743 if (NILP (buffer))
744 buf = current_buffer;
745 else
747 CHECK_BUFFER (buffer, 0);
748 buf = XBUFFER (buffer);
751 return make_number (BUF_MODIFF (buf));
754 DEFUN ("rename-buffer", Frename_buffer, Srename_buffer, 1, 2,
755 "sRename buffer (to new name): \nP",
756 "Change current buffer's name to NEWNAME (a string).\n\
757 If second arg UNIQUE is nil or omitted, it is an error if a\n\
758 buffer named NEWNAME already exists.\n\
759 If UNIQUE is non-nil, come up with a new name using\n\
760 `generate-new-buffer-name'.\n\
761 Interactively, you can set UNIQUE with a prefix argument.\n\
762 We return the name we actually gave the buffer.\n\
763 This does not change the name of the visited file (if any).")
764 (newname, unique)
765 register Lisp_Object newname, unique;
767 register Lisp_Object tem, buf;
769 CHECK_STRING (newname, 0);
771 if (XSTRING (newname)->size == 0)
772 error ("Empty string is invalid as a buffer name");
774 tem = Fget_buffer (newname);
775 /* Don't short-circuit if UNIQUE is t. That is a useful way to rename
776 the buffer automatically so you can create another with the original name.
777 It makes UNIQUE equivalent to
778 (rename-buffer (generate-new-buffer-name NEWNAME)). */
779 if (NILP (unique) && XBUFFER (tem) == current_buffer)
780 return current_buffer->name;
781 if (!NILP (tem))
783 if (!NILP (unique))
784 newname = Fgenerate_new_buffer_name (newname, current_buffer->name);
785 else
786 error ("Buffer name `%s' is in use", XSTRING (newname)->data);
789 current_buffer->name = newname;
791 /* Catch redisplay's attention. Unless we do this, the mode lines for
792 any windows displaying current_buffer will stay unchanged. */
793 update_mode_lines++;
795 XSETBUFFER (buf, current_buffer);
796 Fsetcar (Frassq (buf, Vbuffer_alist), newname);
797 if (NILP (current_buffer->filename)
798 && !NILP (current_buffer->auto_save_file_name))
799 call0 (intern ("rename-auto-save-file"));
800 /* Refetch since that last call may have done GC. */
801 return current_buffer->name;
804 DEFUN ("other-buffer", Fother_buffer, Sother_buffer, 0, 2, 0,
805 "Return most recently selected buffer other than BUFFER.\n\
806 Buffers not visible in windows are preferred to visible buffers,\n\
807 unless optional second argument VISIBLE-OK is non-nil.\n\
808 If no other buffer exists, the buffer `*scratch*' is returned.\n\
809 If BUFFER is omitted or nil, some interesting buffer is returned.")
810 (buffer, visible_ok)
811 register Lisp_Object buffer, visible_ok;
813 register Lisp_Object tail, buf, notsogood, tem;
814 notsogood = Qnil;
816 for (tail = Vbuffer_alist; !NILP (tail); tail = Fcdr (tail))
818 buf = Fcdr (Fcar (tail));
819 if (EQ (buf, buffer))
820 continue;
821 if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ')
822 continue;
823 #ifdef MULTI_FRAME
824 /* If the selected frame has a buffer_predicate,
825 disregard buffers that don't fit the predicate. */
826 tem = frame_buffer_predicate ();
827 if (!NILP (tem))
829 tem = call1 (tem, buf);
830 if (NILP (tem))
831 continue;
833 #endif
835 if (NILP (visible_ok))
836 tem = Fget_buffer_window (buf, Qt);
837 else
838 tem = Qnil;
839 if (NILP (tem))
840 return buf;
841 if (NILP (notsogood))
842 notsogood = buf;
844 if (!NILP (notsogood))
845 return notsogood;
846 return Fget_buffer_create (build_string ("*scratch*"));
849 DEFUN ("buffer-disable-undo", Fbuffer_disable_undo, Sbuffer_disable_undo,
850 0, 1, "",
851 "Make BUFFER stop keeping undo information.\n\
852 No argument or nil as argument means do this for the current buffer.")
853 (buffer)
854 register Lisp_Object buffer;
856 Lisp_Object real_buffer;
858 if (NILP (buffer))
859 XSETBUFFER (real_buffer, current_buffer);
860 else
862 real_buffer = Fget_buffer (buffer);
863 if (NILP (real_buffer))
864 nsberror (buffer);
867 XBUFFER (real_buffer)->undo_list = Qt;
869 return Qnil;
872 DEFUN ("buffer-enable-undo", Fbuffer_enable_undo, Sbuffer_enable_undo,
873 0, 1, "",
874 "Start keeping undo information for buffer BUFFER.\n\
875 No argument or nil as argument means do this for the current buffer.")
876 (buffer)
877 register Lisp_Object buffer;
879 Lisp_Object real_buffer;
881 if (NILP (buffer))
882 XSETBUFFER (real_buffer, current_buffer);
883 else
885 real_buffer = Fget_buffer (buffer);
886 if (NILP (real_buffer))
887 nsberror (buffer);
890 if (EQ (XBUFFER (real_buffer)->undo_list, Qt))
891 XBUFFER (real_buffer)->undo_list = Qnil;
893 return Qnil;
897 DEFVAR_LISP ("kill-buffer-hook", no_cell, "\
898 Hook to be run (by `run-hooks', which see) when a buffer is killed.\n\
899 The buffer being killed will be current while the hook is running.\n\
900 See `kill-buffer'."
902 DEFUN ("kill-buffer", Fkill_buffer, Skill_buffer, 1, 1, "bKill buffer: ",
903 "Kill the buffer BUFFER.\n\
904 The argument may be a buffer or may be the name of a buffer.\n\
905 An argument of nil means kill the current buffer.\n\n\
906 Value is t if the buffer is actually killed, nil if user says no.\n\n\
907 The value of `kill-buffer-hook' (which may be local to that buffer),\n\
908 if not void, is a list of functions to be called, with no arguments,\n\
909 before the buffer is actually killed. The buffer to be killed is current\n\
910 when the hook functions are called.\n\n\
911 Any processes that have this buffer as the `process-buffer' are killed\n\
912 with `delete-process'.")
913 (bufname)
914 Lisp_Object bufname;
916 Lisp_Object buf;
917 register struct buffer *b;
918 register Lisp_Object tem;
919 register struct Lisp_Marker *m;
920 struct gcpro gcpro1, gcpro2;
922 if (NILP (bufname))
923 buf = Fcurrent_buffer ();
924 else
925 buf = Fget_buffer (bufname);
926 if (NILP (buf))
927 nsberror (bufname);
929 b = XBUFFER (buf);
931 /* Avoid trouble for buffer already dead. */
932 if (NILP (b->name))
933 return Qnil;
935 /* Query if the buffer is still modified. */
936 if (INTERACTIVE && !NILP (b->filename)
937 && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
939 GCPRO2 (buf, bufname);
940 tem = do_yes_or_no_p (format1 ("Buffer %s modified; kill anyway? ",
941 XSTRING (b->name)->data));
942 UNGCPRO;
943 if (NILP (tem))
944 return Qnil;
947 /* Run hooks with the buffer to be killed the current buffer. */
949 register Lisp_Object val;
950 int count = specpdl_ptr - specpdl;
951 Lisp_Object list;
953 record_unwind_protect (save_excursion_restore, save_excursion_save ());
954 set_buffer_internal (b);
956 /* First run the query functions; if any query is answered no,
957 don't kill the buffer. */
958 for (list = Vkill_buffer_query_functions; !NILP (list); list = Fcdr (list))
960 tem = call0 (Fcar (list));
961 if (NILP (tem))
962 return unbind_to (count, Qnil);
965 /* Then run the hooks. */
966 if (!NILP (Vrun_hooks))
967 call1 (Vrun_hooks, Qkill_buffer_hook);
968 unbind_to (count, Qnil);
971 /* We have no more questions to ask. Verify that it is valid
972 to kill the buffer. This must be done after the questions
973 since anything can happen within do_yes_or_no_p. */
975 /* Don't kill the minibuffer now current. */
976 if (EQ (buf, XWINDOW (minibuf_window)->buffer))
977 return Qnil;
979 if (NILP (b->name))
980 return Qnil;
982 /* When we kill a base buffer, kill all its indirect buffers.
983 We do it at this stage so nothing terrible happens if they
984 ask questions or their hooks get errors. */
985 if (! b->base_buffer)
987 struct buffer *other;
989 GCPRO1 (buf);
991 for (other = all_buffers; other; other = other->next)
992 /* all_buffers contains dead buffers too;
993 don't re-kill them. */
994 if (other->base_buffer == b && !NILP (other->name))
996 Lisp_Object buf;
997 XSETBUFFER (buf, other);
998 Fkill_buffer (buf);
1001 UNGCPRO;
1004 /* Make this buffer not be current.
1005 In the process, notice if this is the sole visible buffer
1006 and give up if so. */
1007 if (b == current_buffer)
1009 tem = Fother_buffer (buf, Qnil);
1010 Fset_buffer (tem);
1011 if (b == current_buffer)
1012 return Qnil;
1015 /* Now there is no question: we can kill the buffer. */
1017 #ifdef CLASH_DETECTION
1018 /* Unlock this buffer's file, if it is locked. */
1019 unlock_buffer (b);
1020 #endif /* CLASH_DETECTION */
1022 kill_buffer_processes (buf);
1024 tem = Vinhibit_quit;
1025 Vinhibit_quit = Qt;
1026 Vbuffer_alist = Fdelq (Frassq (buf, Vbuffer_alist), Vbuffer_alist);
1027 Freplace_buffer_in_windows (buf);
1028 Vinhibit_quit = tem;
1030 /* Delete any auto-save file, if we saved it in this session. */
1031 if (STRINGP (b->auto_save_file_name)
1032 && b->auto_save_modified != 0
1033 && SAVE_MODIFF < b->auto_save_modified)
1035 Lisp_Object tem;
1036 tem = Fsymbol_value (intern ("delete-auto-save-files"));
1037 if (! NILP (tem))
1038 internal_delete_file (b->auto_save_file_name);
1041 if (b->base_buffer)
1043 /* Unchain all markers that belong to this indirect buffer.
1044 Don't unchain the markers that belong to the base buffer
1045 or its other indirect buffers. */
1046 for (tem = BUF_MARKERS (b); !NILP (tem); )
1048 Lisp_Object next;
1049 m = XMARKER (tem);
1050 next = m->chain;
1051 if (m->buffer == b)
1052 unchain_marker (tem);
1053 tem = next;
1056 else
1058 /* Unchain all markers of this buffer and its indirect buffers.
1059 and leave them pointing nowhere. */
1060 for (tem = BUF_MARKERS (b); !NILP (tem); )
1062 m = XMARKER (tem);
1063 m->buffer = 0;
1064 tem = m->chain;
1065 m->chain = Qnil;
1067 BUF_MARKERS (b) = Qnil;
1069 #ifdef USE_TEXT_PROPERTIES
1070 BUF_INTERVALS (b) = NULL_INTERVAL;
1071 #endif
1073 /* Perhaps we should explicitly free the interval tree here... */
1076 /* Reset the local variables, so that this buffer's local values
1077 won't be protected from GC. They would be protected
1078 if they happened to remain encached in their symbols.
1079 This gets rid of them for certain. */
1080 swap_out_buffer_local_variables (b);
1081 reset_buffer_local_variables (b);
1083 b->name = Qnil;
1085 BLOCK_INPUT;
1086 if (! b->base_buffer)
1087 BUFFER_FREE (BUF_BEG_ADDR (b));
1089 if (b->newline_cache)
1091 free_region_cache (b->newline_cache);
1092 b->newline_cache = 0;
1094 if (b->width_run_cache)
1096 free_region_cache (b->width_run_cache);
1097 b->width_run_cache = 0;
1099 b->width_table = Qnil;
1100 UNBLOCK_INPUT;
1101 b->undo_list = Qnil;
1103 return Qt;
1106 /* Move the assoc for buffer BUF to the front of buffer-alist. Since
1107 we do this each time BUF is selected visibly, the more recently
1108 selected buffers are always closer to the front of the list. This
1109 means that other_buffer is more likely to choose a relevant buffer. */
1111 record_buffer (buf)
1112 Lisp_Object buf;
1114 register Lisp_Object link, prev;
1116 prev = Qnil;
1117 for (link = Vbuffer_alist; CONSP (link); link = XCONS (link)->cdr)
1119 if (EQ (XCONS (XCONS (link)->car)->cdr, buf))
1120 break;
1121 prev = link;
1124 /* Effectively do Vbuffer_alist = Fdelq (link, Vbuffer_alist);
1125 we cannot use Fdelq itself here because it allows quitting. */
1127 if (NILP (prev))
1128 Vbuffer_alist = XCONS (Vbuffer_alist)->cdr;
1129 else
1130 XCONS (prev)->cdr = XCONS (XCONS (prev)->cdr)->cdr;
1132 XCONS(link)->cdr = Vbuffer_alist;
1133 Vbuffer_alist = link;
1136 DEFUN ("set-buffer-major-mode", Fset_buffer_major_mode, Sset_buffer_major_mode, 1, 1, 0,
1137 "Set an appropriate major mode for BUFFER, according to `default-major-mode'.\n\
1138 Use this function before selecting the buffer, since it may need to inspect\n\
1139 the current buffer's major mode.")
1140 (buf)
1141 Lisp_Object buf;
1143 int count;
1144 Lisp_Object function;
1146 function = buffer_defaults.major_mode;
1147 if (NILP (function) && NILP (Fget (current_buffer->major_mode, Qmode_class)))
1148 function = current_buffer->major_mode;
1150 if (NILP (function) || EQ (function, Qfundamental_mode))
1151 return Qnil;
1153 count = specpdl_ptr - specpdl;
1155 /* To select a nonfundamental mode,
1156 select the buffer temporarily and then call the mode function. */
1158 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1160 Fset_buffer (buf);
1161 call0 (function);
1163 return unbind_to (count, Qnil);
1166 DEFUN ("switch-to-buffer", Fswitch_to_buffer, Sswitch_to_buffer, 1, 2, "BSwitch to buffer: ",
1167 "Select buffer BUFFER in the current window.\n\
1168 BUFFER may be a buffer or a buffer name.\n\
1169 Optional second arg NORECORD non-nil means\n\
1170 do not put this buffer at the front of the list of recently selected ones.\n\
1172 WARNING: This is NOT the way to work on another buffer temporarily\n\
1173 within a Lisp program! Use `set-buffer' instead. That avoids messing with\n\
1174 the window-buffer correspondences.")
1175 (bufname, norecord)
1176 Lisp_Object bufname, norecord;
1178 register Lisp_Object buf;
1179 Lisp_Object tem;
1181 if (EQ (minibuf_window, selected_window))
1182 error ("Cannot switch buffers in minibuffer window");
1183 tem = Fwindow_dedicated_p (selected_window);
1184 if (!NILP (tem))
1185 error ("Cannot switch buffers in a dedicated window");
1187 if (NILP (bufname))
1188 buf = Fother_buffer (Fcurrent_buffer (), Qnil);
1189 else
1191 buf = Fget_buffer (bufname);
1192 if (NILP (buf))
1194 buf = Fget_buffer_create (bufname);
1195 Fset_buffer_major_mode (buf);
1198 Fset_buffer (buf);
1199 if (NILP (norecord))
1200 record_buffer (buf);
1202 Fset_window_buffer (EQ (selected_window, minibuf_window)
1203 ? Fnext_window (minibuf_window, Qnil, Qnil)
1204 : selected_window,
1205 buf);
1207 return buf;
1210 DEFUN ("pop-to-buffer", Fpop_to_buffer, Spop_to_buffer, 1, 2, 0,
1211 "Select buffer BUFFER in some window, preferably a different one.\n\
1212 If BUFFER is nil, then some other buffer is chosen.\n\
1213 If `pop-up-windows' is non-nil, windows can be split to do this.\n\
1214 If optional second arg OTHER-WINDOW is non-nil, insist on finding another\n\
1215 window even if BUFFER is already visible in the selected window.")
1216 (bufname, other)
1217 Lisp_Object bufname, other;
1219 register Lisp_Object buf;
1220 if (NILP (bufname))
1221 buf = Fother_buffer (Fcurrent_buffer (), Qnil);
1222 else
1224 buf = Fget_buffer (bufname);
1225 if (NILP (buf))
1227 buf = Fget_buffer_create (bufname);
1228 Fset_buffer_major_mode (buf);
1231 Fset_buffer (buf);
1232 record_buffer (buf);
1233 Fselect_window (Fdisplay_buffer (buf, other));
1234 return buf;
1237 DEFUN ("current-buffer", Fcurrent_buffer, Scurrent_buffer, 0, 0, 0,
1238 "Return the current buffer as a Lisp object.")
1241 register Lisp_Object buf;
1242 XSETBUFFER (buf, current_buffer);
1243 return buf;
1246 /* Set the current buffer to B. */
1248 void
1249 set_buffer_internal (b)
1250 register struct buffer *b;
1252 register struct buffer *old_buf;
1253 register Lisp_Object tail, valcontents;
1254 Lisp_Object tem;
1256 if (current_buffer == b)
1257 return;
1259 windows_or_buffers_changed = 1;
1260 set_buffer_internal_1 (b);
1263 /* Set the current buffer to B, and do not set windows_or_buffers_changed.
1264 This is used by redisplay. */
1266 void
1267 set_buffer_internal_1 (b)
1268 register struct buffer *b;
1270 register struct buffer *old_buf;
1271 register Lisp_Object tail, valcontents;
1272 Lisp_Object tem;
1274 if (current_buffer == b)
1275 return;
1277 old_buf = current_buffer;
1278 current_buffer = b;
1279 last_known_column_point = -1; /* invalidate indentation cache */
1281 if (old_buf)
1283 /* Put the undo list back in the base buffer, so that it appears
1284 that an indirect buffer shares the undo list of its base. */
1285 if (old_buf->base_buffer)
1286 old_buf->base_buffer->undo_list = old_buf->undo_list;
1288 /* If the old current buffer has markers to record PT, BEGV and ZV
1289 when it is not current, update them now. */
1290 if (! NILP (old_buf->pt_marker))
1292 Lisp_Object obuf;
1293 XSETBUFFER (obuf, old_buf);
1294 Fset_marker (old_buf->pt_marker, BUF_PT (old_buf), obuf);
1296 if (! NILP (old_buf->begv_marker))
1298 Lisp_Object obuf;
1299 XSETBUFFER (obuf, old_buf);
1300 Fset_marker (old_buf->begv_marker, BUF_BEGV (old_buf), obuf);
1302 if (! NILP (old_buf->zv_marker))
1304 Lisp_Object obuf;
1305 XSETBUFFER (obuf, old_buf);
1306 Fset_marker (old_buf->zv_marker, BUF_ZV (old_buf), obuf);
1310 /* Get the undo list from the base buffer, so that it appears
1311 that an indirect buffer shares the undo list of its base. */
1312 if (b->base_buffer)
1313 b->undo_list = b->base_buffer->undo_list;
1315 /* If the new current buffer has markers to record PT, BEGV and ZV
1316 when it is not current, fetch them now. */
1317 if (! NILP (b->pt_marker))
1318 BUF_PT (b) = marker_position (b->pt_marker);
1319 if (! NILP (b->begv_marker))
1320 BUF_BEGV (b) = marker_position (b->begv_marker);
1321 if (! NILP (b->zv_marker))
1322 BUF_ZV (b) = marker_position (b->zv_marker);
1324 /* Look down buffer's list of local Lisp variables
1325 to find and update any that forward into C variables. */
1327 for (tail = b->local_var_alist; !NILP (tail); tail = XCONS (tail)->cdr)
1329 valcontents = XSYMBOL (XCONS (XCONS (tail)->car)->car)->value;
1330 if ((BUFFER_LOCAL_VALUEP (valcontents)
1331 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
1332 && (tem = XBUFFER_LOCAL_VALUE (valcontents)->car,
1333 (BOOLFWDP (tem) || INTFWDP (tem) || OBJFWDP (tem))))
1334 /* Just reference the variable
1335 to cause it to become set for this buffer. */
1336 Fsymbol_value (XCONS (XCONS (tail)->car)->car);
1339 /* Do the same with any others that were local to the previous buffer */
1341 if (old_buf)
1342 for (tail = old_buf->local_var_alist; !NILP (tail); tail = XCONS (tail)->cdr)
1344 valcontents = XSYMBOL (XCONS (XCONS (tail)->car)->car)->value;
1345 if ((BUFFER_LOCAL_VALUEP (valcontents)
1346 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
1347 && (tem = XBUFFER_LOCAL_VALUE (valcontents)->car,
1348 (BOOLFWDP (tem) || INTFWDP (tem) || OBJFWDP (tem))))
1349 /* Just reference the variable
1350 to cause it to become set for this buffer. */
1351 Fsymbol_value (XCONS (XCONS (tail)->car)->car);
1355 /* Switch to buffer B temporarily for redisplay purposes.
1356 This avoids certain things that don't need to be done within redisplay. */
1358 void
1359 set_buffer_temp (b)
1360 struct buffer *b;
1362 register struct buffer *old_buf;
1364 if (current_buffer == b)
1365 return;
1367 old_buf = current_buffer;
1368 current_buffer = b;
1370 if (old_buf)
1372 /* If the old current buffer has markers to record PT, BEGV and ZV
1373 when it is not current, update them now. */
1374 if (! NILP (old_buf->pt_marker))
1376 Lisp_Object obuf;
1377 XSETBUFFER (obuf, old_buf);
1378 Fset_marker (old_buf->pt_marker, BUF_PT (old_buf), obuf);
1380 if (! NILP (old_buf->begv_marker))
1382 Lisp_Object obuf;
1383 XSETBUFFER (obuf, old_buf);
1384 Fset_marker (old_buf->begv_marker, BUF_BEGV (old_buf), obuf);
1386 if (! NILP (old_buf->zv_marker))
1388 Lisp_Object obuf;
1389 XSETBUFFER (obuf, old_buf);
1390 Fset_marker (old_buf->zv_marker, BUF_ZV (old_buf), obuf);
1394 /* If the new current buffer has markers to record PT, BEGV and ZV
1395 when it is not current, fetch them now. */
1396 if (! NILP (b->pt_marker))
1397 BUF_PT (b) = marker_position (b->pt_marker);
1398 if (! NILP (b->begv_marker))
1399 BUF_BEGV (b) = marker_position (b->begv_marker);
1400 if (! NILP (b->zv_marker))
1401 BUF_ZV (b) = marker_position (b->zv_marker);
1404 DEFUN ("set-buffer", Fset_buffer, Sset_buffer, 1, 1, 0,
1405 "Make the buffer BUFFER current for editing operations.\n\
1406 BUFFER may be a buffer or the name of an existing buffer.\n\
1407 See also `save-excursion' when you want to make a buffer current temporarily.\n\
1408 This function does not display the buffer, so its effect ends\n\
1409 when the current command terminates.\n\
1410 Use `switch-to-buffer' or `pop-to-buffer' to switch buffers permanently.")
1411 (bufname)
1412 register Lisp_Object bufname;
1414 register Lisp_Object buffer;
1415 buffer = Fget_buffer (bufname);
1416 if (NILP (buffer))
1417 nsberror (bufname);
1418 if (NILP (XBUFFER (buffer)->name))
1419 error ("Selecting deleted buffer");
1420 set_buffer_internal (XBUFFER (buffer));
1421 return buffer;
1424 DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only,
1425 Sbarf_if_buffer_read_only, 0, 0, 0,
1426 "Signal a `buffer-read-only' error if the current buffer is read-only.")
1429 if (!NILP (current_buffer->read_only)
1430 && NILP (Vinhibit_read_only))
1431 Fsignal (Qbuffer_read_only, (Fcons (Fcurrent_buffer (), Qnil)));
1432 return Qnil;
1435 DEFUN ("bury-buffer", Fbury_buffer, Sbury_buffer, 0, 1, "",
1436 "Put BUFFER at the end of the list of all buffers.\n\
1437 There it is the least likely candidate for `other-buffer' to return;\n\
1438 thus, the least likely buffer for \\[switch-to-buffer] to select by default.\n\
1439 If BUFFER is nil or omitted, bury the current buffer.\n\
1440 Also, if BUFFER is nil or omitted, remove the current buffer from the\n\
1441 selected window if it is displayed there.")
1442 (buf)
1443 register Lisp_Object buf;
1445 /* Figure out what buffer we're going to bury. */
1446 if (NILP (buf))
1448 XSETBUFFER (buf, current_buffer);
1450 /* If we're burying the current buffer, unshow it. */
1451 Fswitch_to_buffer (Fother_buffer (buf, Qnil), Qnil);
1453 else
1455 Lisp_Object buf1;
1457 buf1 = Fget_buffer (buf);
1458 if (NILP (buf1))
1459 nsberror (buf);
1460 buf = buf1;
1463 /* Move buf to the end of the buffer list. */
1465 register Lisp_Object aelt, link;
1467 aelt = Frassq (buf, Vbuffer_alist);
1468 link = Fmemq (aelt, Vbuffer_alist);
1469 Vbuffer_alist = Fdelq (aelt, Vbuffer_alist);
1470 XCONS (link)->cdr = Qnil;
1471 Vbuffer_alist = nconc2 (Vbuffer_alist, link);
1474 return Qnil;
1477 DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*",
1478 "Delete the entire contents of the current buffer.\n\
1479 Any narrowing restriction in effect (see `narrow-to-region') is removed,\n\
1480 so the buffer is truly empty after this.")
1483 Fwiden ();
1484 del_range (BEG, Z);
1485 current_buffer->last_window_start = 1;
1486 /* Prevent warnings, or suspension of auto saving, that would happen
1487 if future size is less than past size. Use of erase-buffer
1488 implies that the future text is not really related to the past text. */
1489 XSETFASTINT (current_buffer->save_length, 0);
1490 return Qnil;
1493 validate_region (b, e)
1494 register Lisp_Object *b, *e;
1496 CHECK_NUMBER_COERCE_MARKER (*b, 0);
1497 CHECK_NUMBER_COERCE_MARKER (*e, 1);
1499 if (XINT (*b) > XINT (*e))
1501 Lisp_Object tem;
1502 tem = *b; *b = *e; *e = tem;
1505 if (!(BEGV <= XINT (*b) && XINT (*b) <= XINT (*e)
1506 && XINT (*e) <= ZV))
1507 args_out_of_range (*b, *e);
1510 DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables,
1511 0, 0, 0,
1512 "Switch to Fundamental mode by killing current buffer's local variables.\n\
1513 Most local variable bindings are eliminated so that the default values\n\
1514 become effective once more. Also, the syntax table is set from\n\
1515 `standard-syntax-table', the local keymap is set to nil,\n\
1516 and the abbrev table from `fundamental-mode-abbrev-table'.\n\
1517 This function also forces redisplay of the mode line.\n\
1519 Every function to select a new major mode starts by\n\
1520 calling this function.\n\n\
1521 As a special exception, local variables whose names have\n\
1522 a non-nil `permanent-local' property are not eliminated by this function.\n\
1524 The first thing this function does is run\n\
1525 the normal hook `change-major-mode-hook'.")
1528 register Lisp_Object alist, sym, tem;
1529 Lisp_Object oalist;
1531 if (!NILP (Vrun_hooks))
1532 call1 (Vrun_hooks, intern ("change-major-mode-hook"));
1533 oalist = current_buffer->local_var_alist;
1535 /* Make sure none of the bindings in oalist
1536 remain swapped in, in their symbols. */
1538 swap_out_buffer_local_variables (current_buffer);
1540 /* Actually eliminate all local bindings of this buffer. */
1542 reset_buffer_local_variables (current_buffer);
1544 /* Redisplay mode lines; we are changing major mode. */
1546 update_mode_lines++;
1548 /* Any which are supposed to be permanent,
1549 make local again, with the same values they had. */
1551 for (alist = oalist; !NILP (alist); alist = XCONS (alist)->cdr)
1553 sym = XCONS (XCONS (alist)->car)->car;
1554 tem = Fget (sym, Qpermanent_local);
1555 if (! NILP (tem))
1557 Fmake_local_variable (sym);
1558 Fset (sym, XCONS (XCONS (alist)->car)->cdr);
1562 /* Force mode-line redisplay. Useful here because all major mode
1563 commands call this function. */
1564 update_mode_lines++;
1566 return Qnil;
1569 /* Make sure no local variables remain set up with buffer B
1570 for their current values. */
1572 static void
1573 swap_out_buffer_local_variables (b)
1574 struct buffer *b;
1576 Lisp_Object oalist, alist, sym, tem, buffer;
1578 XSETBUFFER (buffer, b);
1579 oalist = b->local_var_alist;
1581 for (alist = oalist; !NILP (alist); alist = XCONS (alist)->cdr)
1583 sym = XCONS (XCONS (alist)->car)->car;
1585 /* Need not do anything if some other buffer's binding is now encached. */
1586 tem = XCONS (XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->cdr)->car;
1587 if (XBUFFER (tem) == current_buffer)
1589 /* Symbol is set up for this buffer's old local value.
1590 Set it up for the current buffer with the default value. */
1592 tem = XCONS (XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->cdr)->cdr;
1593 /* Store the symbol's current value into the alist entry
1594 it is currently set up for. This is so that, if the
1595 local is marked permanent, and we make it local again
1596 later in Fkill_all_local_variables, we don't lose the value. */
1597 XCONS (XCONS (tem)->car)->cdr
1598 = do_symval_forwarding (XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->car);
1599 /* Switch to the symbol's default-value alist entry. */
1600 XCONS (tem)->car = tem;
1601 /* Mark it as current for buffer B. */
1602 XCONS (XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->cdr)->car
1603 = buffer;
1604 /* Store the current value into any forwarding in the symbol. */
1605 store_symval_forwarding (sym, XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->car,
1606 XCONS (tem)->cdr);
1611 /* Find all the overlays in the current buffer that contain position POS.
1612 Return the number found, and store them in a vector in *VEC_PTR.
1613 Store in *LEN_PTR the size allocated for the vector.
1614 Store in *NEXT_PTR the next position after POS where an overlay starts,
1615 or ZV if there are no more overlays.
1616 Store in *PREV_PTR the previous position before POS where an overlay ends,
1617 or BEGV if there are no previous overlays.
1618 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
1620 *VEC_PTR and *LEN_PTR should contain a valid vector and size
1621 when this function is called.
1623 If EXTEND is non-zero, we make the vector bigger if necessary.
1624 If EXTEND is zero, we never extend the vector,
1625 and we store only as many overlays as will fit.
1626 But we still return the total number of overlays. */
1629 overlays_at (pos, extend, vec_ptr, len_ptr, next_ptr, prev_ptr)
1630 int pos;
1631 int extend;
1632 Lisp_Object **vec_ptr;
1633 int *len_ptr;
1634 int *next_ptr;
1635 int *prev_ptr;
1637 Lisp_Object tail, overlay, start, end, result;
1638 int idx = 0;
1639 int len = *len_ptr;
1640 Lisp_Object *vec = *vec_ptr;
1641 int next = ZV;
1642 int prev = BEGV;
1643 int inhibit_storing = 0;
1645 for (tail = current_buffer->overlays_before;
1646 GC_CONSP (tail);
1647 tail = XCONS (tail)->cdr)
1649 int startpos, endpos;
1651 overlay = XCONS (tail)->car;
1653 start = OVERLAY_START (overlay);
1654 end = OVERLAY_END (overlay);
1655 endpos = OVERLAY_POSITION (end);
1656 if (endpos < pos)
1658 if (prev < endpos)
1659 prev = endpos;
1660 break;
1662 if (endpos == pos)
1663 continue;
1664 startpos = OVERLAY_POSITION (start);
1665 if (startpos <= pos)
1667 if (idx == len)
1669 /* The supplied vector is full.
1670 Either make it bigger, or don't store any more in it. */
1671 if (extend)
1673 *len_ptr = len *= 2;
1674 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
1675 *vec_ptr = vec;
1677 else
1678 inhibit_storing = 1;
1681 if (!inhibit_storing)
1682 vec[idx] = overlay;
1683 /* Keep counting overlays even if we can't return them all. */
1684 idx++;
1686 else if (startpos < next)
1687 next = startpos;
1690 for (tail = current_buffer->overlays_after;
1691 GC_CONSP (tail);
1692 tail = XCONS (tail)->cdr)
1694 int startpos, endpos;
1696 overlay = XCONS (tail)->car;
1698 start = OVERLAY_START (overlay);
1699 end = OVERLAY_END (overlay);
1700 startpos = OVERLAY_POSITION (start);
1701 if (pos < startpos)
1703 if (startpos < next)
1704 next = startpos;
1705 break;
1707 endpos = OVERLAY_POSITION (end);
1708 if (pos < endpos)
1710 if (idx == len)
1712 if (extend)
1714 *len_ptr = len *= 2;
1715 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
1716 *vec_ptr = vec;
1718 else
1719 inhibit_storing = 1;
1722 if (!inhibit_storing)
1723 vec[idx] = overlay;
1724 idx++;
1726 else if (endpos < pos && endpos > prev)
1727 prev = endpos;
1730 if (next_ptr)
1731 *next_ptr = next;
1732 if (prev_ptr)
1733 *prev_ptr = prev;
1734 return idx;
1737 /* Find all the overlays in the current buffer that overlap the range BEG-END
1738 or are empty at BEG.
1740 Return the number found, and store them in a vector in *VEC_PTR.
1741 Store in *LEN_PTR the size allocated for the vector.
1742 Store in *NEXT_PTR the next position after POS where an overlay starts,
1743 or ZV if there are no more overlays.
1744 Store in *PREV_PTR the previous position before POS where an overlay ends,
1745 or BEGV if there are no previous overlays.
1746 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
1748 *VEC_PTR and *LEN_PTR should contain a valid vector and size
1749 when this function is called.
1751 If EXTEND is non-zero, we make the vector bigger if necessary.
1752 If EXTEND is zero, we never extend the vector,
1753 and we store only as many overlays as will fit.
1754 But we still return the total number of overlays. */
1757 overlays_in (beg, end, extend, vec_ptr, len_ptr, next_ptr, prev_ptr)
1758 int beg, end;
1759 int extend;
1760 Lisp_Object **vec_ptr;
1761 int *len_ptr;
1762 int *next_ptr;
1763 int *prev_ptr;
1765 Lisp_Object tail, overlay, ostart, oend, result;
1766 int idx = 0;
1767 int len = *len_ptr;
1768 Lisp_Object *vec = *vec_ptr;
1769 int next = ZV;
1770 int prev = BEGV;
1771 int inhibit_storing = 0;
1773 for (tail = current_buffer->overlays_before;
1774 GC_CONSP (tail);
1775 tail = XCONS (tail)->cdr)
1777 int startpos, endpos;
1779 overlay = XCONS (tail)->car;
1781 ostart = OVERLAY_START (overlay);
1782 oend = OVERLAY_END (overlay);
1783 endpos = OVERLAY_POSITION (oend);
1784 if (endpos < beg)
1786 if (prev < endpos)
1787 prev = endpos;
1788 break;
1790 startpos = OVERLAY_POSITION (ostart);
1791 /* Count an interval if it either overlaps the range
1792 or is empty at the start of the range. */
1793 if ((beg < endpos && startpos < end)
1794 || (startpos == endpos && beg == endpos))
1796 if (idx == len)
1798 /* The supplied vector is full.
1799 Either make it bigger, or don't store any more in it. */
1800 if (extend)
1802 *len_ptr = len *= 2;
1803 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
1804 *vec_ptr = vec;
1806 else
1807 inhibit_storing = 1;
1810 if (!inhibit_storing)
1811 vec[idx] = overlay;
1812 /* Keep counting overlays even if we can't return them all. */
1813 idx++;
1815 else if (startpos < next)
1816 next = startpos;
1819 for (tail = current_buffer->overlays_after;
1820 GC_CONSP (tail);
1821 tail = XCONS (tail)->cdr)
1823 int startpos, endpos;
1825 overlay = XCONS (tail)->car;
1827 ostart = OVERLAY_START (overlay);
1828 oend = OVERLAY_END (overlay);
1829 startpos = OVERLAY_POSITION (ostart);
1830 if (end < startpos)
1832 if (startpos < next)
1833 next = startpos;
1834 break;
1836 endpos = OVERLAY_POSITION (oend);
1837 /* Count an interval if it either overlaps the range
1838 or is empty at the start of the range. */
1839 if ((beg < endpos && startpos < end)
1840 || (startpos == endpos && beg == endpos))
1842 if (idx == len)
1844 if (extend)
1846 *len_ptr = len *= 2;
1847 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
1848 *vec_ptr = vec;
1850 else
1851 inhibit_storing = 1;
1854 if (!inhibit_storing)
1855 vec[idx] = overlay;
1856 idx++;
1858 else if (endpos < beg && endpos > prev)
1859 prev = endpos;
1862 if (next_ptr)
1863 *next_ptr = next;
1864 if (prev_ptr)
1865 *prev_ptr = prev;
1866 return idx;
1869 /* Fast function to just test if we're at an overlay boundary. */
1871 overlay_touches_p (pos)
1872 int pos;
1874 Lisp_Object tail, overlay;
1876 for (tail = current_buffer->overlays_before; GC_CONSP (tail);
1877 tail = XCONS (tail)->cdr)
1879 int endpos;
1881 overlay = XCONS (tail)->car;
1882 if (!GC_OVERLAYP (overlay))
1883 abort ();
1885 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
1886 if (endpos < pos)
1887 break;
1888 if (endpos == pos || OVERLAY_POSITION (OVERLAY_START (overlay)) == pos)
1889 return 1;
1892 for (tail = current_buffer->overlays_after; GC_CONSP (tail);
1893 tail = XCONS (tail)->cdr)
1895 int startpos;
1897 overlay = XCONS (tail)->car;
1898 if (!GC_OVERLAYP (overlay))
1899 abort ();
1901 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
1902 if (pos < startpos)
1903 break;
1904 if (startpos == pos || OVERLAY_POSITION (OVERLAY_END (overlay)) == pos)
1905 return 1;
1907 return 0;
1910 struct sortvec
1912 Lisp_Object overlay;
1913 int beg, end;
1914 int priority;
1917 static int
1918 compare_overlays (s1, s2)
1919 struct sortvec *s1, *s2;
1921 if (s1->priority != s2->priority)
1922 return s1->priority - s2->priority;
1923 if (s1->beg != s2->beg)
1924 return s1->beg - s2->beg;
1925 if (s1->end != s2->end)
1926 return s2->end - s1->end;
1927 return 0;
1930 /* Sort an array of overlays by priority. The array is modified in place.
1931 The return value is the new size; this may be smaller than the original
1932 size if some of the overlays were invalid or were window-specific. */
1934 sort_overlays (overlay_vec, noverlays, w)
1935 Lisp_Object *overlay_vec;
1936 int noverlays;
1937 struct window *w;
1939 int i, j;
1940 struct sortvec *sortvec;
1941 sortvec = (struct sortvec *) alloca (noverlays * sizeof (struct sortvec));
1943 /* Put the valid and relevant overlays into sortvec. */
1945 for (i = 0, j = 0; i < noverlays; i++)
1947 Lisp_Object tem;
1948 Lisp_Object overlay;
1950 overlay = overlay_vec[i];
1951 if (OVERLAY_VALID (overlay)
1952 && OVERLAY_POSITION (OVERLAY_START (overlay)) > 0
1953 && OVERLAY_POSITION (OVERLAY_END (overlay)) > 0)
1955 /* If we're interested in a specific window, then ignore
1956 overlays that are limited to some other window. */
1957 if (w)
1959 Lisp_Object window;
1961 window = Foverlay_get (overlay, Qwindow);
1962 if (WINDOWP (window) && XWINDOW (window) != w)
1963 continue;
1966 /* This overlay is good and counts: put it into sortvec. */
1967 sortvec[j].overlay = overlay;
1968 sortvec[j].beg = OVERLAY_POSITION (OVERLAY_START (overlay));
1969 sortvec[j].end = OVERLAY_POSITION (OVERLAY_END (overlay));
1970 tem = Foverlay_get (overlay, Qpriority);
1971 if (INTEGERP (tem))
1972 sortvec[j].priority = XINT (tem);
1973 else
1974 sortvec[j].priority = 0;
1975 j++;
1978 noverlays = j;
1980 /* Sort the overlays into the proper order: increasing priority. */
1982 if (noverlays > 1)
1983 qsort (sortvec, noverlays, sizeof (struct sortvec), compare_overlays);
1985 for (i = 0; i < noverlays; i++)
1986 overlay_vec[i] = sortvec[i].overlay;
1987 return (noverlays);
1990 struct sortstr
1992 Lisp_Object string, string2;
1993 int size;
1994 int priority;
1997 struct sortstrlist
1999 struct sortstr *buf; /* An array that expands as needed; never freed. */
2000 int size; /* Allocated length of that array. */
2001 int used; /* How much of the array is currently in use. */
2002 int bytes; /* Total length of the strings in buf. */
2005 /* Buffers for storing information about the overlays touching a given
2006 position. These could be automatic variables in overlay_strings, but
2007 it's more efficient to hold onto the memory instead of repeatedly
2008 allocating and freeing it. */
2009 static struct sortstrlist overlay_heads, overlay_tails;
2010 static char *overlay_str_buf;
2012 /* Allocated length of overlay_str_buf. */
2013 static int overlay_str_len;
2015 /* A comparison function suitable for passing to qsort. */
2016 static int
2017 cmp_for_strings (as1, as2)
2018 char *as1, *as2;
2020 struct sortstr *s1 = (struct sortstr *)as1;
2021 struct sortstr *s2 = (struct sortstr *)as2;
2022 if (s1->size != s2->size)
2023 return s2->size - s1->size;
2024 if (s1->priority != s2->priority)
2025 return s1->priority - s2->priority;
2026 return 0;
2029 static void
2030 record_overlay_string (ssl, str, str2, pri, size)
2031 struct sortstrlist *ssl;
2032 Lisp_Object str, str2, pri;
2033 int size;
2035 if (ssl->used == ssl->size)
2037 if (ssl->buf)
2038 ssl->size *= 2;
2039 else
2040 ssl->size = 5;
2041 ssl->buf = ((struct sortstr *)
2042 xrealloc (ssl->buf, ssl->size * sizeof (struct sortstr)));
2044 ssl->buf[ssl->used].string = str;
2045 ssl->buf[ssl->used].string2 = str2;
2046 ssl->buf[ssl->used].size = size;
2047 ssl->buf[ssl->used].priority = (INTEGERP (pri) ? XINT (pri) : 0);
2048 ssl->used++;
2049 ssl->bytes += XSTRING (str)->size;
2050 if (STRINGP (str2))
2051 ssl->bytes += XSTRING (str2)->size;
2054 /* Return the concatenation of the strings associated with overlays that
2055 begin or end at POS, ignoring overlays that are specific to a window
2056 other than W. The strings are concatenated in the appropriate order:
2057 shorter overlays nest inside longer ones, and higher priority inside
2058 lower. Normally all of the after-strings come first, but zero-sized
2059 overlays have their after-strings ride along with the before-strings
2060 because it would look strange to print them inside-out.
2062 Returns the string length, and stores the contents indirectly through
2063 PSTR, if that variable is non-null. The string may be overwritten by
2064 subsequent calls. */
2066 overlay_strings (pos, w, pstr)
2067 int pos;
2068 struct window *w;
2069 char **pstr;
2071 Lisp_Object ov, overlay, window, str;
2072 int startpos, endpos;
2074 overlay_heads.used = overlay_heads.bytes = 0;
2075 overlay_tails.used = overlay_tails.bytes = 0;
2076 for (ov = current_buffer->overlays_before; CONSP (ov); ov = XCONS (ov)->cdr)
2078 overlay = XCONS (ov)->car;
2079 if (!OVERLAYP (overlay))
2080 abort ();
2082 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2083 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2084 if (endpos < pos)
2085 break;
2086 if (endpos != pos && startpos != pos)
2087 continue;
2088 window = Foverlay_get (overlay, Qwindow);
2089 if (WINDOWP (window) && XWINDOW (window) != w)
2090 continue;
2091 if (startpos == pos
2092 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
2093 record_overlay_string (&overlay_heads, str,
2094 (startpos == endpos
2095 ? Foverlay_get (overlay, Qafter_string)
2096 : Qnil),
2097 Foverlay_get (overlay, Qpriority),
2098 endpos - startpos);
2099 else if (endpos == pos
2100 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
2101 record_overlay_string (&overlay_tails, str, Qnil,
2102 Foverlay_get (overlay, Qpriority),
2103 endpos - startpos);
2105 for (ov = current_buffer->overlays_after; CONSP (ov); ov = XCONS (ov)->cdr)
2107 overlay = XCONS (ov)->car;
2108 if (!OVERLAYP (overlay))
2109 abort ();
2111 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2112 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2113 if (startpos > pos)
2114 break;
2115 if (endpos != pos && startpos != pos)
2116 continue;
2117 window = Foverlay_get (overlay, Qwindow);
2118 if (WINDOWP (window) && XWINDOW (window) != w)
2119 continue;
2120 if (startpos == pos
2121 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
2122 record_overlay_string (&overlay_heads, str,
2123 (startpos == endpos
2124 ? Foverlay_get (overlay, Qafter_string)
2125 : Qnil),
2126 Foverlay_get (overlay, Qpriority),
2127 endpos - startpos);
2128 else if (endpos == pos
2129 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
2130 record_overlay_string (&overlay_tails, str, Qnil,
2131 Foverlay_get (overlay, Qpriority),
2132 endpos - startpos);
2134 if (overlay_tails.used > 1)
2135 qsort (overlay_tails.buf, overlay_tails.used, sizeof (struct sortstr),
2136 cmp_for_strings);
2137 if (overlay_heads.used > 1)
2138 qsort (overlay_heads.buf, overlay_heads.used, sizeof (struct sortstr),
2139 cmp_for_strings);
2140 if (overlay_heads.bytes || overlay_tails.bytes)
2142 Lisp_Object tem;
2143 int i;
2144 char *p;
2145 int total = overlay_heads.bytes + overlay_tails.bytes;
2147 if (total > overlay_str_len)
2148 overlay_str_buf = (char *)xrealloc (overlay_str_buf,
2149 overlay_str_len = total);
2150 p = overlay_str_buf;
2151 for (i = overlay_tails.used; --i >= 0;)
2153 tem = overlay_tails.buf[i].string;
2154 bcopy (XSTRING (tem)->data, p, XSTRING (tem)->size);
2155 p += XSTRING (tem)->size;
2157 for (i = 0; i < overlay_heads.used; ++i)
2159 tem = overlay_heads.buf[i].string;
2160 bcopy (XSTRING (tem)->data, p, XSTRING (tem)->size);
2161 p += XSTRING (tem)->size;
2162 tem = overlay_heads.buf[i].string2;
2163 if (STRINGP (tem))
2165 bcopy (XSTRING (tem)->data, p, XSTRING (tem)->size);
2166 p += XSTRING (tem)->size;
2169 if (p != overlay_str_buf + total)
2170 abort ();
2171 if (pstr)
2172 *pstr = overlay_str_buf;
2173 return total;
2175 return 0;
2178 /* Shift overlays in BUF's overlay lists, to center the lists at POS. */
2180 void
2181 recenter_overlay_lists (buf, pos)
2182 struct buffer *buf;
2183 int pos;
2185 Lisp_Object overlay, tail, next, prev, beg, end;
2187 /* See if anything in overlays_before should move to overlays_after. */
2189 /* We don't strictly need prev in this loop; it should always be nil.
2190 But we use it for symmetry and in case that should cease to be true
2191 with some future change. */
2192 prev = Qnil;
2193 for (tail = buf->overlays_before;
2194 CONSP (tail);
2195 prev = tail, tail = next)
2197 next = XCONS (tail)->cdr;
2198 overlay = XCONS (tail)->car;
2200 /* If the overlay is not valid, get rid of it. */
2201 if (!OVERLAY_VALID (overlay))
2202 #if 1
2203 abort ();
2204 #else
2206 /* Splice the cons cell TAIL out of overlays_before. */
2207 if (!NILP (prev))
2208 XCONS (prev)->cdr = next;
2209 else
2210 buf->overlays_before = next;
2211 tail = prev;
2212 continue;
2214 #endif
2216 beg = OVERLAY_START (overlay);
2217 end = OVERLAY_END (overlay);
2219 if (OVERLAY_POSITION (end) > pos)
2221 /* OVERLAY needs to be moved. */
2222 int where = OVERLAY_POSITION (beg);
2223 Lisp_Object other, other_prev;
2225 /* Splice the cons cell TAIL out of overlays_before. */
2226 if (!NILP (prev))
2227 XCONS (prev)->cdr = next;
2228 else
2229 buf->overlays_before = next;
2231 /* Search thru overlays_after for where to put it. */
2232 other_prev = Qnil;
2233 for (other = buf->overlays_after;
2234 CONSP (other);
2235 other_prev = other, other = XCONS (other)->cdr)
2237 Lisp_Object otherbeg, otheroverlay, follower;
2238 int win;
2240 otheroverlay = XCONS (other)->car;
2241 if (! OVERLAY_VALID (otheroverlay))
2242 abort ();
2244 otherbeg = OVERLAY_START (otheroverlay);
2245 if (OVERLAY_POSITION (otherbeg) >= where)
2246 break;
2249 /* Add TAIL to overlays_after before OTHER. */
2250 XCONS (tail)->cdr = other;
2251 if (!NILP (other_prev))
2252 XCONS (other_prev)->cdr = tail;
2253 else
2254 buf->overlays_after = tail;
2255 tail = prev;
2257 else
2258 /* We've reached the things that should stay in overlays_before.
2259 All the rest of overlays_before must end even earlier,
2260 so stop now. */
2261 break;
2264 /* See if anything in overlays_after should be in overlays_before. */
2265 prev = Qnil;
2266 for (tail = buf->overlays_after;
2267 CONSP (tail);
2268 prev = tail, tail = next)
2270 next = XCONS (tail)->cdr;
2271 overlay = XCONS (tail)->car;
2273 /* If the overlay is not valid, get rid of it. */
2274 if (!OVERLAY_VALID (overlay))
2275 #if 1
2276 abort ();
2277 #else
2279 /* Splice the cons cell TAIL out of overlays_after. */
2280 if (!NILP (prev))
2281 XCONS (prev)->cdr = next;
2282 else
2283 buf->overlays_after = next;
2284 tail = prev;
2285 continue;
2287 #endif
2289 beg = OVERLAY_START (overlay);
2290 end = OVERLAY_END (overlay);
2292 /* Stop looking, when we know that nothing further
2293 can possibly end before POS. */
2294 if (OVERLAY_POSITION (beg) > pos)
2295 break;
2297 if (OVERLAY_POSITION (end) <= pos)
2299 /* OVERLAY needs to be moved. */
2300 int where = OVERLAY_POSITION (end);
2301 Lisp_Object other, other_prev;
2303 /* Splice the cons cell TAIL out of overlays_after. */
2304 if (!NILP (prev))
2305 XCONS (prev)->cdr = next;
2306 else
2307 buf->overlays_after = next;
2309 /* Search thru overlays_before for where to put it. */
2310 other_prev = Qnil;
2311 for (other = buf->overlays_before;
2312 CONSP (other);
2313 other_prev = other, other = XCONS (other)->cdr)
2315 Lisp_Object otherend, otheroverlay;
2316 int win;
2318 otheroverlay = XCONS (other)->car;
2319 if (! OVERLAY_VALID (otheroverlay))
2320 abort ();
2322 otherend = OVERLAY_END (otheroverlay);
2323 if (OVERLAY_POSITION (otherend) <= where)
2324 break;
2327 /* Add TAIL to overlays_before before OTHER. */
2328 XCONS (tail)->cdr = other;
2329 if (!NILP (other_prev))
2330 XCONS (other_prev)->cdr = tail;
2331 else
2332 buf->overlays_before = tail;
2333 tail = prev;
2337 XSETFASTINT (buf->overlay_center, pos);
2340 void
2341 adjust_overlays_for_insert (pos, length)
2342 int pos;
2343 int length;
2345 /* After an insertion, the lists are still sorted properly,
2346 but we may need to update the value of the overlay center. */
2347 if (XFASTINT (current_buffer->overlay_center) >= pos)
2348 XSETFASTINT (current_buffer->overlay_center,
2349 XFASTINT (current_buffer->overlay_center) + length);
2352 void
2353 adjust_overlays_for_delete (pos, length)
2354 int pos;
2355 int length;
2357 if (XFASTINT (current_buffer->overlay_center) < pos)
2358 /* The deletion was to our right. No change needed; the before- and
2359 after-lists are still consistent. */
2361 else if (XFASTINT (current_buffer->overlay_center) > pos + length)
2362 /* The deletion was to our left. We need to adjust the center value
2363 to account for the change in position, but the lists are consistent
2364 given the new value. */
2365 XSETFASTINT (current_buffer->overlay_center,
2366 XFASTINT (current_buffer->overlay_center) - length);
2367 else
2368 /* We're right in the middle. There might be things on the after-list
2369 that now belong on the before-list. Recentering will move them,
2370 and also update the center point. */
2371 recenter_overlay_lists (current_buffer, pos);
2374 /* Fix up overlays that were garbled as a result of permuting markers
2375 in the range START through END. Any overlay with at least one
2376 endpoint in this range will need to be unlinked from the overlay
2377 list and reinserted in its proper place.
2378 Such an overlay might even have negative size at this point.
2379 If so, we'll reverse the endpoints. Can you think of anything
2380 better to do in this situation? */
2381 void
2382 fix_overlays_in_range (start, end)
2383 register int start, end;
2385 Lisp_Object tem, overlay;
2386 Lisp_Object before_list, after_list;
2387 Lisp_Object *ptail, *pbefore = &before_list, *pafter = &after_list;
2388 int startpos, endpos;
2390 /* This algorithm shifts links around instead of consing and GCing.
2391 The loop invariant is that before_list (resp. after_list) is a
2392 well-formed list except that its last element, the one that
2393 *pbefore (resp. *pafter) points to, is still uninitialized.
2394 So it's not a bug that before_list isn't initialized, although
2395 it may look strange. */
2396 for (ptail = &current_buffer->overlays_before; CONSP (*ptail);)
2398 overlay = XCONS (*ptail)->car;
2399 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2400 if (endpos < start)
2401 break;
2402 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2403 if (endpos < end
2404 || (startpos >= start && startpos < end))
2406 /* If the overlay is backwards, fix that now. */
2407 if (startpos > endpos)
2409 int tem;
2410 Fset_marker (OVERLAY_START (overlay), endpos, Qnil);
2411 Fset_marker (OVERLAY_END (overlay), startpos, Qnil);
2412 tem = startpos; startpos = endpos; endpos = tem;
2414 /* Add it to the end of the wrong list. Later on,
2415 recenter_overlay_lists will move it to the right place. */
2416 if (endpos < XINT (current_buffer->overlay_center))
2418 *pafter = *ptail;
2419 pafter = &XCONS (*ptail)->cdr;
2421 else
2423 *pbefore = *ptail;
2424 pbefore = &XCONS (*ptail)->cdr;
2426 *ptail = XCONS (*ptail)->cdr;
2428 else
2429 ptail = &XCONS (*ptail)->cdr;
2431 for (ptail = &current_buffer->overlays_after; CONSP (*ptail);)
2433 overlay = XCONS (*ptail)->car;
2434 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2435 if (startpos >= end)
2436 break;
2437 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2438 if (startpos >= start
2439 || (endpos >= start && endpos < end))
2441 if (startpos > endpos)
2443 int tem;
2444 Fset_marker (OVERLAY_START (overlay), endpos, Qnil);
2445 Fset_marker (OVERLAY_END (overlay), startpos, Qnil);
2446 tem = startpos; startpos = endpos; endpos = tem;
2448 if (endpos < XINT (current_buffer->overlay_center))
2450 *pafter = *ptail;
2451 pafter = &XCONS (*ptail)->cdr;
2453 else
2455 *pbefore = *ptail;
2456 pbefore = &XCONS (*ptail)->cdr;
2458 *ptail = XCONS (*ptail)->cdr;
2460 else
2461 ptail = &XCONS (*ptail)->cdr;
2464 /* Splice the constructed (wrong) lists into the buffer's lists,
2465 and let the recenter function make it sane again. */
2466 *pbefore = current_buffer->overlays_before;
2467 current_buffer->overlays_before = before_list;
2468 recenter_overlay_lists (current_buffer,
2469 XINT (current_buffer->overlay_center));
2471 *pafter = current_buffer->overlays_after;
2472 current_buffer->overlays_after = after_list;
2473 recenter_overlay_lists (current_buffer,
2474 XINT (current_buffer->overlay_center));
2477 DEFUN ("overlayp", Foverlayp, Soverlayp, 1, 1, 0,
2478 "Return t if OBJECT is an overlay.")
2479 (object)
2480 Lisp_Object object;
2482 return (OVERLAYP (object) ? Qt : Qnil);
2485 DEFUN ("make-overlay", Fmake_overlay, Smake_overlay, 2, 5, 0,
2486 "Create a new overlay with range BEG to END in BUFFER.\n\
2487 If omitted, BUFFER defaults to the current buffer.\n\
2488 BEG and END may be integers or markers.\n\
2489 The fourth arg FRONT-ADVANCE, if non-nil, makes the\n\
2490 front delimiter advance when text is inserted there.\n\
2491 The fifth arg REAR-ADVANCE, if non-nil, makes the\n\
2492 rear delimiter advance when text is inserted there.")
2493 (beg, end, buffer, front_advance, rear_advance)
2494 Lisp_Object beg, end, buffer;
2495 Lisp_Object front_advance, rear_advance;
2497 Lisp_Object overlay;
2498 struct buffer *b;
2500 if (NILP (buffer))
2501 XSETBUFFER (buffer, current_buffer);
2502 else
2503 CHECK_BUFFER (buffer, 2);
2504 if (MARKERP (beg)
2505 && ! EQ (Fmarker_buffer (beg), buffer))
2506 error ("Marker points into wrong buffer");
2507 if (MARKERP (end)
2508 && ! EQ (Fmarker_buffer (end), buffer))
2509 error ("Marker points into wrong buffer");
2511 CHECK_NUMBER_COERCE_MARKER (beg, 1);
2512 CHECK_NUMBER_COERCE_MARKER (end, 1);
2514 if (XINT (beg) > XINT (end))
2516 Lisp_Object temp;
2517 temp = beg; beg = end; end = temp;
2520 b = XBUFFER (buffer);
2522 beg = Fset_marker (Fmake_marker (), beg, buffer);
2523 end = Fset_marker (Fmake_marker (), end, buffer);
2525 if (!NILP (front_advance))
2526 XMARKER (beg)->insertion_type = 1;
2527 if (!NILP (rear_advance))
2528 XMARKER (end)->insertion_type = 1;
2530 overlay = allocate_misc ();
2531 XMISCTYPE (overlay) = Lisp_Misc_Overlay;
2532 XOVERLAY (overlay)->start = beg;
2533 XOVERLAY (overlay)->end = end;
2534 XOVERLAY (overlay)->plist = Qnil;
2536 /* Put the new overlay on the wrong list. */
2537 end = OVERLAY_END (overlay);
2538 if (OVERLAY_POSITION (end) < XINT (b->overlay_center))
2539 b->overlays_after = Fcons (overlay, b->overlays_after);
2540 else
2541 b->overlays_before = Fcons (overlay, b->overlays_before);
2543 /* This puts it in the right list, and in the right order. */
2544 recenter_overlay_lists (b, XINT (b->overlay_center));
2546 /* We don't need to redisplay the region covered by the overlay, because
2547 the overlay has no properties at the moment. */
2549 return overlay;
2552 DEFUN ("move-overlay", Fmove_overlay, Smove_overlay, 3, 4, 0,
2553 "Set the endpoints of OVERLAY to BEG and END in BUFFER.\n\
2554 If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.\n\
2555 If BUFFER is omitted, and OVERLAY is in no buffer, put it in the current\n\
2556 buffer.")
2557 (overlay, beg, end, buffer)
2558 Lisp_Object overlay, beg, end, buffer;
2560 struct buffer *b, *ob;
2561 Lisp_Object obuffer;
2562 int count = specpdl_ptr - specpdl;
2564 CHECK_OVERLAY (overlay, 0);
2565 if (NILP (buffer))
2566 buffer = Fmarker_buffer (OVERLAY_START (overlay));
2567 if (NILP (buffer))
2568 XSETBUFFER (buffer, current_buffer);
2569 CHECK_BUFFER (buffer, 3);
2571 if (MARKERP (beg)
2572 && ! EQ (Fmarker_buffer (beg), buffer))
2573 error ("Marker points into wrong buffer");
2574 if (MARKERP (end)
2575 && ! EQ (Fmarker_buffer (end), buffer))
2576 error ("Marker points into wrong buffer");
2578 CHECK_NUMBER_COERCE_MARKER (beg, 1);
2579 CHECK_NUMBER_COERCE_MARKER (end, 1);
2581 if (XINT (beg) == XINT (end) && ! NILP (Foverlay_get (overlay, Qevaporate)))
2582 return Fdelete_overlay (overlay);
2584 if (XINT (beg) > XINT (end))
2586 Lisp_Object temp;
2587 temp = beg; beg = end; end = temp;
2590 specbind (Qinhibit_quit, Qt);
2592 obuffer = Fmarker_buffer (OVERLAY_START (overlay));
2593 b = XBUFFER (buffer);
2594 ob = XBUFFER (obuffer);
2596 /* If the overlay has changed buffers, do a thorough redisplay. */
2597 if (!EQ (buffer, obuffer))
2599 /* Redisplay where the overlay was. */
2600 if (!NILP (obuffer))
2602 Lisp_Object o_beg;
2603 Lisp_Object o_end;
2605 o_beg = OVERLAY_START (overlay);
2606 o_end = OVERLAY_END (overlay);
2607 o_beg = OVERLAY_POSITION (o_beg);
2608 o_end = OVERLAY_POSITION (o_end);
2610 redisplay_region (ob, XINT (o_beg), XINT (o_end));
2613 /* Redisplay where the overlay is going to be. */
2614 redisplay_region (b, XINT (beg), XINT (end));
2616 else
2617 /* Redisplay the area the overlay has just left, or just enclosed. */
2619 Lisp_Object o_beg;
2620 Lisp_Object o_end;
2621 int change_beg, change_end;
2623 o_beg = OVERLAY_START (overlay);
2624 o_end = OVERLAY_END (overlay);
2625 o_beg = OVERLAY_POSITION (o_beg);
2626 o_end = OVERLAY_POSITION (o_end);
2628 if (XINT (o_beg) == XINT (beg))
2629 redisplay_region (b, XINT (o_end), XINT (end));
2630 else if (XINT (o_end) == XINT (end))
2631 redisplay_region (b, XINT (o_beg), XINT (beg));
2632 else
2634 if (XINT (beg) < XINT (o_beg)) o_beg = beg;
2635 if (XINT (end) > XINT (o_end)) o_end = end;
2636 redisplay_region (b, XINT (o_beg), XINT (o_end));
2640 if (!NILP (obuffer))
2642 ob->overlays_before = Fdelq (overlay, ob->overlays_before);
2643 ob->overlays_after = Fdelq (overlay, ob->overlays_after);
2646 Fset_marker (OVERLAY_START (overlay), beg, buffer);
2647 Fset_marker (OVERLAY_END (overlay), end, buffer);
2649 /* Put the overlay on the wrong list. */
2650 end = OVERLAY_END (overlay);
2651 if (OVERLAY_POSITION (end) < XINT (b->overlay_center))
2652 b->overlays_after = Fcons (overlay, b->overlays_after);
2653 else
2654 b->overlays_before = Fcons (overlay, b->overlays_before);
2656 /* This puts it in the right list, and in the right order. */
2657 recenter_overlay_lists (b, XINT (b->overlay_center));
2659 return unbind_to (count, overlay);
2662 DEFUN ("delete-overlay", Fdelete_overlay, Sdelete_overlay, 1, 1, 0,
2663 "Delete the overlay OVERLAY from its buffer.")
2664 (overlay)
2665 Lisp_Object overlay;
2667 Lisp_Object buffer;
2668 struct buffer *b;
2669 int count = specpdl_ptr - specpdl;
2671 CHECK_OVERLAY (overlay, 0);
2673 buffer = Fmarker_buffer (OVERLAY_START (overlay));
2674 if (NILP (buffer))
2675 return Qnil;
2677 b = XBUFFER (buffer);
2679 specbind (Qinhibit_quit, Qt);
2681 b->overlays_before = Fdelq (overlay, b->overlays_before);
2682 b->overlays_after = Fdelq (overlay, b->overlays_after);
2684 redisplay_region (b,
2685 marker_position (OVERLAY_START (overlay)),
2686 marker_position (OVERLAY_END (overlay)));
2688 Fset_marker (OVERLAY_START (overlay), Qnil, Qnil);
2689 Fset_marker (OVERLAY_END (overlay), Qnil, Qnil);
2691 return unbind_to (count, Qnil);
2694 /* Overlay dissection functions. */
2696 DEFUN ("overlay-start", Foverlay_start, Soverlay_start, 1, 1, 0,
2697 "Return the position at which OVERLAY starts.")
2698 (overlay)
2699 Lisp_Object overlay;
2701 CHECK_OVERLAY (overlay, 0);
2703 return (Fmarker_position (OVERLAY_START (overlay)));
2706 DEFUN ("overlay-end", Foverlay_end, Soverlay_end, 1, 1, 0,
2707 "Return the position at which OVERLAY ends.")
2708 (overlay)
2709 Lisp_Object overlay;
2711 CHECK_OVERLAY (overlay, 0);
2713 return (Fmarker_position (OVERLAY_END (overlay)));
2716 DEFUN ("overlay-buffer", Foverlay_buffer, Soverlay_buffer, 1, 1, 0,
2717 "Return the buffer OVERLAY belongs to.")
2718 (overlay)
2719 Lisp_Object overlay;
2721 CHECK_OVERLAY (overlay, 0);
2723 return Fmarker_buffer (OVERLAY_START (overlay));
2726 DEFUN ("overlay-properties", Foverlay_properties, Soverlay_properties, 1, 1, 0,
2727 "Return a list of the properties on OVERLAY.\n\
2728 This is a copy of OVERLAY's plist; modifying its conses has no effect on\n\
2729 OVERLAY.")
2730 (overlay)
2731 Lisp_Object overlay;
2733 CHECK_OVERLAY (overlay, 0);
2735 return Fcopy_sequence (XOVERLAY (overlay)->plist);
2739 DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 1, 0,
2740 "Return a list of the overlays that contain position POS.")
2741 (pos)
2742 Lisp_Object pos;
2744 int noverlays;
2745 Lisp_Object *overlay_vec;
2746 int len;
2747 Lisp_Object result;
2749 CHECK_NUMBER_COERCE_MARKER (pos, 0);
2751 len = 10;
2752 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
2754 /* Put all the overlays we want in a vector in overlay_vec.
2755 Store the length in len. */
2756 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
2757 (int *) 0, (int *) 0);
2759 /* Make a list of them all. */
2760 result = Flist (noverlays, overlay_vec);
2762 xfree (overlay_vec);
2763 return result;
2766 DEFUN ("overlays-in", Foverlays_in, Soverlays_in, 2, 2, 0,
2767 "Return a list of the overlays that overlap the region BEG ... END.\n\
2768 Overlap means that at least one character is contained within the overlay\n\
2769 and also contained within the specified region.\n\
2770 Empty overlays are included in the result if they are located at BEG\n\
2771 or between BEG and END.")
2772 (beg, end)
2773 Lisp_Object beg, end;
2775 int noverlays;
2776 Lisp_Object *overlay_vec;
2777 int len;
2778 Lisp_Object result;
2780 CHECK_NUMBER_COERCE_MARKER (beg, 0);
2781 CHECK_NUMBER_COERCE_MARKER (end, 0);
2783 len = 10;
2784 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
2786 /* Put all the overlays we want in a vector in overlay_vec.
2787 Store the length in len. */
2788 noverlays = overlays_in (XINT (beg), XINT (end), 1, &overlay_vec, &len,
2789 (int *) 0, (int *) 0);
2791 /* Make a list of them all. */
2792 result = Flist (noverlays, overlay_vec);
2794 xfree (overlay_vec);
2795 return result;
2798 DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
2799 1, 1, 0,
2800 "Return the next position after POS where an overlay starts or ends.\n\
2801 If there are no more overlay boundaries after POS, return (point-max).")
2802 (pos)
2803 Lisp_Object pos;
2805 int noverlays;
2806 int endpos;
2807 Lisp_Object *overlay_vec;
2808 int len;
2809 int i;
2811 CHECK_NUMBER_COERCE_MARKER (pos, 0);
2813 len = 10;
2814 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
2816 /* Put all the overlays we want in a vector in overlay_vec.
2817 Store the length in len.
2818 endpos gets the position where the next overlay starts. */
2819 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
2820 &endpos, (int *) 0);
2822 /* If any of these overlays ends before endpos,
2823 use its ending point instead. */
2824 for (i = 0; i < noverlays; i++)
2826 Lisp_Object oend;
2827 int oendpos;
2829 oend = OVERLAY_END (overlay_vec[i]);
2830 oendpos = OVERLAY_POSITION (oend);
2831 if (oendpos < endpos)
2832 endpos = oendpos;
2835 xfree (overlay_vec);
2836 return make_number (endpos);
2839 DEFUN ("previous-overlay-change", Fprevious_overlay_change,
2840 Sprevious_overlay_change, 1, 1, 0,
2841 "Return the previous position before POS where an overlay starts or ends.\n\
2842 If there are no more overlay boundaries before POS, return (point-min).")
2843 (pos)
2844 Lisp_Object pos;
2846 int noverlays;
2847 int prevpos;
2848 Lisp_Object *overlay_vec;
2849 int len;
2850 int i;
2851 Lisp_Object tail;
2853 CHECK_NUMBER_COERCE_MARKER (pos, 0);
2855 len = 10;
2856 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
2858 /* At beginning of buffer, we know the answer;
2859 avoid bug subtracting 1 below. */
2860 if (XINT (pos) == BEGV)
2861 return pos;
2863 /* Put all the overlays we want in a vector in overlay_vec.
2864 Store the length in len.
2865 prevpos gets the position of an overlay end. */
2866 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
2867 (int *) 0, &prevpos);
2869 /* If any of these overlays starts after prevpos,
2870 maybe use its starting point instead. */
2871 for (i = 0; i < noverlays; i++)
2873 Lisp_Object ostart;
2874 int ostartpos;
2876 ostart = OVERLAY_START (overlay_vec[i]);
2877 ostartpos = OVERLAY_POSITION (ostart);
2878 if (ostartpos > prevpos && ostartpos < XINT (pos))
2879 prevpos = ostartpos;
2882 /* If any overlay ends at pos, consider its starting point too. */
2883 for (tail = current_buffer->overlays_before;
2884 GC_CONSP (tail);
2885 tail = XCONS (tail)->cdr)
2887 Lisp_Object overlay, ostart;
2888 int ostartpos;
2890 overlay = XCONS (tail)->car;
2892 ostart = OVERLAY_START (overlay);
2893 ostartpos = OVERLAY_POSITION (ostart);
2894 if (ostartpos > prevpos && ostartpos < XINT (pos))
2895 prevpos = ostartpos;
2898 xfree (overlay_vec);
2899 return make_number (prevpos);
2902 /* These functions are for debugging overlays. */
2904 DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0,
2905 "Return a pair of lists giving all the overlays of the current buffer.\n\
2906 The car has all the overlays before the overlay center;\n\
2907 the cdr has all the overlays after the overlay center.\n\
2908 Recentering overlays moves overlays between these lists.\n\
2909 The lists you get are copies, so that changing them has no effect.\n\
2910 However, the overlays you get are the real objects that the buffer uses.")
2913 Lisp_Object before, after;
2914 before = current_buffer->overlays_before;
2915 if (CONSP (before))
2916 before = Fcopy_sequence (before);
2917 after = current_buffer->overlays_after;
2918 if (CONSP (after))
2919 after = Fcopy_sequence (after);
2921 return Fcons (before, after);
2924 DEFUN ("overlay-recenter", Foverlay_recenter, Soverlay_recenter, 1, 1, 0,
2925 "Recenter the overlays of the current buffer around position POS.")
2926 (pos)
2927 Lisp_Object pos;
2929 CHECK_NUMBER_COERCE_MARKER (pos, 0);
2931 recenter_overlay_lists (current_buffer, XINT (pos));
2932 return Qnil;
2935 DEFUN ("overlay-get", Foverlay_get, Soverlay_get, 2, 2, 0,
2936 "Get the property of overlay OVERLAY with property name NAME.")
2937 (overlay, prop)
2938 Lisp_Object overlay, prop;
2940 Lisp_Object plist, fallback;
2942 CHECK_OVERLAY (overlay, 0);
2944 fallback = Qnil;
2946 for (plist = XOVERLAY (overlay)->plist;
2947 CONSP (plist) && CONSP (XCONS (plist)->cdr);
2948 plist = XCONS (XCONS (plist)->cdr)->cdr)
2950 if (EQ (XCONS (plist)->car, prop))
2951 return XCONS (XCONS (plist)->cdr)->car;
2952 else if (EQ (XCONS (plist)->car, Qcategory))
2954 Lisp_Object tem;
2955 tem = Fcar (Fcdr (plist));
2956 if (SYMBOLP (tem))
2957 fallback = Fget (tem, prop);
2961 return fallback;
2964 DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0,
2965 "Set one property of overlay OVERLAY: give property PROP value VALUE.")
2966 (overlay, prop, value)
2967 Lisp_Object overlay, prop, value;
2969 Lisp_Object tail, buffer;
2970 int changed;
2972 CHECK_OVERLAY (overlay, 0);
2974 buffer = Fmarker_buffer (OVERLAY_START (overlay));
2976 for (tail = XOVERLAY (overlay)->plist;
2977 CONSP (tail) && CONSP (XCONS (tail)->cdr);
2978 tail = XCONS (XCONS (tail)->cdr)->cdr)
2979 if (EQ (XCONS (tail)->car, prop))
2981 changed = !EQ (XCONS (XCONS (tail)->cdr)->car, value);
2982 XCONS (XCONS (tail)->cdr)->car = value;
2983 goto found;
2985 /* It wasn't in the list, so add it to the front. */
2986 changed = !NILP (value);
2987 XOVERLAY (overlay)->plist
2988 = Fcons (prop, Fcons (value, XOVERLAY (overlay)->plist));
2989 found:
2990 if (! NILP (buffer))
2992 if (changed)
2993 redisplay_region (XBUFFER (buffer),
2994 marker_position (OVERLAY_START (overlay)),
2995 marker_position (OVERLAY_END (overlay)));
2996 if (EQ (prop, Qevaporate) && ! NILP (value)
2997 && (OVERLAY_POSITION (OVERLAY_START (overlay))
2998 == OVERLAY_POSITION (OVERLAY_END (overlay))))
2999 Fdelete_overlay (overlay);
3001 return value;
3004 /* Subroutine of report_overlay_modification. */
3006 /* Lisp vector holding overlay hook functions to call.
3007 Vector elements come in pairs.
3008 Each even-index element is a list of hook functions.
3009 The following odd-index element is the overlay they came from.
3011 Before the buffer change, we fill in this vector
3012 as we call overlay hook functions.
3013 After the buffer change, we get the functions to call from this vector.
3014 This way we always call the same functions before and after the change. */
3015 static Lisp_Object last_overlay_modification_hooks;
3017 /* Number of elements actually used in last_overlay_modification_hooks. */
3018 static int last_overlay_modification_hooks_used;
3020 /* Add one functionlist/overlay pair
3021 to the end of last_overlay_modification_hooks. */
3023 static void
3024 add_overlay_mod_hooklist (functionlist, overlay)
3025 Lisp_Object functionlist, overlay;
3027 int oldsize = XVECTOR (last_overlay_modification_hooks)->size;
3029 if (last_overlay_modification_hooks_used == oldsize)
3031 Lisp_Object old;
3032 old = last_overlay_modification_hooks;
3033 last_overlay_modification_hooks
3034 = Fmake_vector (make_number (oldsize * 2), Qnil);
3035 bcopy (XVECTOR (last_overlay_modification_hooks)->contents,
3036 XVECTOR (old)->contents,
3037 sizeof (Lisp_Object) * oldsize);
3039 XVECTOR (last_overlay_modification_hooks)->contents[last_overlay_modification_hooks_used++] = functionlist;
3040 XVECTOR (last_overlay_modification_hooks)->contents[last_overlay_modification_hooks_used++] = overlay;
3043 /* Run the modification-hooks of overlays that include
3044 any part of the text in START to END.
3045 If this change is an insertion, also
3046 run the insert-before-hooks of overlay starting at END,
3047 and the insert-after-hooks of overlay ending at START.
3049 This is called both before and after the modification.
3050 AFTER is nonzero when we call after the modification.
3052 ARG1, ARG2, ARG3 are arguments to pass to the hook functions.
3053 When AFTER is nonzero, they are the start position,
3054 the position after the inserted new text,
3055 and the length of deleted or replaced old text. */
3057 void
3058 report_overlay_modification (start, end, after, arg1, arg2, arg3)
3059 Lisp_Object start, end;
3060 int after;
3061 Lisp_Object arg1, arg2, arg3;
3063 Lisp_Object prop, overlay, tail;
3064 /* 1 if this change is an insertion. */
3065 int insertion = (after ? XFASTINT (arg3) == 0 : EQ (start, end));
3066 int tail_copied;
3067 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3069 overlay = Qnil;
3070 tail = Qnil;
3071 GCPRO5 (overlay, tail, arg1, arg2, arg3);
3073 if (after)
3075 /* Call the functions recorded in last_overlay_modification_hooks
3076 rather than scanning the overlays again.
3077 First copy the vector contents, in case some of these hooks
3078 do subsequent modification of the buffer. */
3079 int size = last_overlay_modification_hooks_used;
3080 Lisp_Object *copy = (Lisp_Object *) alloca (size * sizeof (Lisp_Object));
3081 int i;
3083 bcopy (XVECTOR (last_overlay_modification_hooks)->contents,
3084 copy, size * sizeof (Lisp_Object));
3085 gcpro1.var = copy;
3086 gcpro1.nvars = size;
3088 for (i = 0; i < size;)
3090 Lisp_Object prop, overlay;
3091 prop = copy[i++];
3092 overlay = copy[i++];
3093 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3095 UNGCPRO;
3096 return;
3099 /* We are being called before a change.
3100 Scan the overlays to find the functions to call. */
3101 last_overlay_modification_hooks_used = 0;
3102 tail_copied = 0;
3103 for (tail = current_buffer->overlays_before;
3104 CONSP (tail);
3105 tail = XCONS (tail)->cdr)
3107 int startpos, endpos;
3108 Lisp_Object ostart, oend;
3110 overlay = XCONS (tail)->car;
3112 ostart = OVERLAY_START (overlay);
3113 oend = OVERLAY_END (overlay);
3114 endpos = OVERLAY_POSITION (oend);
3115 if (XFASTINT (start) > endpos)
3116 break;
3117 startpos = OVERLAY_POSITION (ostart);
3118 if (insertion && (XFASTINT (start) == startpos
3119 || XFASTINT (end) == startpos))
3121 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
3122 if (!NILP (prop))
3124 /* Copy TAIL in case the hook recenters the overlay lists. */
3125 if (!tail_copied)
3126 tail = Fcopy_sequence (tail);
3127 tail_copied = 1;
3128 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3131 if (insertion && (XFASTINT (start) == endpos
3132 || XFASTINT (end) == endpos))
3134 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
3135 if (!NILP (prop))
3137 if (!tail_copied)
3138 tail = Fcopy_sequence (tail);
3139 tail_copied = 1;
3140 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3143 /* Test for intersecting intervals. This does the right thing
3144 for both insertion and deletion. */
3145 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
3147 prop = Foverlay_get (overlay, Qmodification_hooks);
3148 if (!NILP (prop))
3150 if (!tail_copied)
3151 tail = Fcopy_sequence (tail);
3152 tail_copied = 1;
3153 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3158 tail_copied = 0;
3159 for (tail = current_buffer->overlays_after;
3160 CONSP (tail);
3161 tail = XCONS (tail)->cdr)
3163 int startpos, endpos;
3164 Lisp_Object ostart, oend;
3166 overlay = XCONS (tail)->car;
3168 ostart = OVERLAY_START (overlay);
3169 oend = OVERLAY_END (overlay);
3170 startpos = OVERLAY_POSITION (ostart);
3171 endpos = OVERLAY_POSITION (oend);
3172 if (XFASTINT (end) < startpos)
3173 break;
3174 if (insertion && (XFASTINT (start) == startpos
3175 || XFASTINT (end) == startpos))
3177 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
3178 if (!NILP (prop))
3180 if (!tail_copied)
3181 tail = Fcopy_sequence (tail);
3182 tail_copied = 1;
3183 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3186 if (insertion && (XFASTINT (start) == endpos
3187 || XFASTINT (end) == endpos))
3189 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
3190 if (!NILP (prop))
3192 if (!tail_copied)
3193 tail = Fcopy_sequence (tail);
3194 tail_copied = 1;
3195 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3198 /* Test for intersecting intervals. This does the right thing
3199 for both insertion and deletion. */
3200 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
3202 prop = Foverlay_get (overlay, Qmodification_hooks);
3203 if (!NILP (prop))
3205 if (!tail_copied)
3206 tail = Fcopy_sequence (tail);
3207 tail_copied = 1;
3208 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3213 UNGCPRO;
3216 static void
3217 call_overlay_mod_hooks (list, overlay, after, arg1, arg2, arg3)
3218 Lisp_Object list, overlay;
3219 int after;
3220 Lisp_Object arg1, arg2, arg3;
3222 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3224 GCPRO4 (list, arg1, arg2, arg3);
3225 if (! after)
3226 add_overlay_mod_hooklist (list, overlay);
3228 while (!NILP (list))
3230 if (NILP (arg3))
3231 call4 (Fcar (list), overlay, after ? Qt : Qnil, arg1, arg2);
3232 else
3233 call5 (Fcar (list), overlay, after ? Qt : Qnil, arg1, arg2, arg3);
3234 list = Fcdr (list);
3236 UNGCPRO;
3239 /* Delete any zero-sized overlays at position POS, if the `evaporate'
3240 property is set. */
3241 void
3242 evaporate_overlays (pos)
3243 int pos;
3245 Lisp_Object tail, overlay, hit_list;
3247 hit_list = Qnil;
3248 if (pos <= XFASTINT (current_buffer->overlay_center))
3249 for (tail = current_buffer->overlays_before; CONSP (tail);
3250 tail = XCONS (tail)->cdr)
3252 int endpos;
3253 overlay = XCONS (tail)->car;
3254 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3255 if (endpos < pos)
3256 break;
3257 if (endpos == pos && OVERLAY_POSITION (OVERLAY_START (overlay)) == pos
3258 && ! NILP (Foverlay_get (overlay, Qevaporate)))
3259 hit_list = Fcons (overlay, hit_list);
3261 else
3262 for (tail = current_buffer->overlays_after; CONSP (tail);
3263 tail = XCONS (tail)->cdr)
3265 int startpos;
3266 overlay = XCONS (tail)->car;
3267 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3268 if (startpos > pos)
3269 break;
3270 if (startpos == pos && OVERLAY_POSITION (OVERLAY_END (overlay)) == pos
3271 && ! NILP (Foverlay_get (overlay, Qevaporate)))
3272 hit_list = Fcons (overlay, hit_list);
3274 for (; CONSP (hit_list); hit_list = XCONS (hit_list)->cdr)
3275 Fdelete_overlay (XCONS (hit_list)->car);
3278 /* Somebody has tried to store a value with an unacceptable type
3279 into the buffer-local slot with offset OFFSET. */
3280 void
3281 buffer_slot_type_mismatch (offset)
3282 int offset;
3284 Lisp_Object sym;
3285 char *type_name;
3286 sym = *(Lisp_Object *)(offset + (char *)&buffer_local_symbols);
3287 switch (XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_types)))
3289 case Lisp_Int: type_name = "integers"; break;
3290 case Lisp_String: type_name = "strings"; break;
3291 case Lisp_Symbol: type_name = "symbols"; break;
3292 default:
3293 abort ();
3296 error ("only %s should be stored in the buffer-local variable %s",
3297 type_name, XSYMBOL (sym)->name->data);
3300 init_buffer_once ()
3302 register Lisp_Object tem;
3304 /* Make sure all markable slots in buffer_defaults
3305 are initialized reasonably, so mark_buffer won't choke. */
3306 reset_buffer (&buffer_defaults);
3307 reset_buffer_local_variables (&buffer_defaults);
3308 reset_buffer (&buffer_local_symbols);
3309 reset_buffer_local_variables (&buffer_local_symbols);
3310 /* Prevent GC from getting confused. */
3311 buffer_defaults.text = &buffer_defaults.own_text;
3312 buffer_local_symbols.text = &buffer_local_symbols.own_text;
3313 #ifdef USE_TEXT_PROPERTIES
3314 BUF_INTERVALS (&buffer_defaults) = 0;
3315 BUF_INTERVALS (&buffer_local_symbols) = 0;
3316 #endif
3317 XSETBUFFER (Vbuffer_defaults, &buffer_defaults);
3318 XSETBUFFER (Vbuffer_local_symbols, &buffer_local_symbols);
3320 /* Set up the default values of various buffer slots. */
3321 /* Must do these before making the first buffer! */
3323 /* real setup is done in loaddefs.el */
3324 buffer_defaults.mode_line_format = build_string ("%-");
3325 buffer_defaults.abbrev_mode = Qnil;
3326 buffer_defaults.overwrite_mode = Qnil;
3327 buffer_defaults.case_fold_search = Qt;
3328 buffer_defaults.auto_fill_function = Qnil;
3329 buffer_defaults.selective_display = Qnil;
3330 #ifndef old
3331 buffer_defaults.selective_display_ellipses = Qt;
3332 #endif
3333 buffer_defaults.abbrev_table = Qnil;
3334 buffer_defaults.display_table = Qnil;
3335 buffer_defaults.undo_list = Qnil;
3336 buffer_defaults.mark_active = Qnil;
3337 buffer_defaults.file_format = Qnil;
3338 buffer_defaults.overlays_before = Qnil;
3339 buffer_defaults.overlays_after = Qnil;
3340 XSETFASTINT (buffer_defaults.overlay_center, BEG);
3342 XSETFASTINT (buffer_defaults.tab_width, 8);
3343 buffer_defaults.truncate_lines = Qnil;
3344 buffer_defaults.ctl_arrow = Qt;
3346 #ifdef DOS_NT
3347 buffer_defaults.buffer_file_type = Qnil; /* TEXT */
3348 #endif
3349 XSETFASTINT (buffer_defaults.fill_column, 70);
3350 XSETFASTINT (buffer_defaults.left_margin, 0);
3351 buffer_defaults.cache_long_line_scans = Qnil;
3352 buffer_defaults.file_truename = Qnil;
3354 /* Assign the local-flags to the slots that have default values.
3355 The local flag is a bit that is used in the buffer
3356 to say that it has its own local value for the slot.
3357 The local flag bits are in the local_var_flags slot of the buffer. */
3359 /* Nothing can work if this isn't true */
3360 if (sizeof (EMACS_INT) != sizeof (Lisp_Object)) abort ();
3362 /* 0 means not a lisp var, -1 means always local, else mask */
3363 bzero (&buffer_local_flags, sizeof buffer_local_flags);
3364 XSETINT (buffer_local_flags.filename, -1);
3365 XSETINT (buffer_local_flags.directory, -1);
3366 XSETINT (buffer_local_flags.backed_up, -1);
3367 XSETINT (buffer_local_flags.save_length, -1);
3368 XSETINT (buffer_local_flags.auto_save_file_name, -1);
3369 XSETINT (buffer_local_flags.read_only, -1);
3370 XSETINT (buffer_local_flags.major_mode, -1);
3371 XSETINT (buffer_local_flags.mode_name, -1);
3372 XSETINT (buffer_local_flags.undo_list, -1);
3373 XSETINT (buffer_local_flags.mark_active, -1);
3374 XSETINT (buffer_local_flags.point_before_scroll, -1);
3375 XSETINT (buffer_local_flags.file_truename, -1);
3376 XSETINT (buffer_local_flags.invisibility_spec, -1);
3377 XSETINT (buffer_local_flags.file_format, -1);
3378 XSETINT (buffer_local_flags.redisplay_end_trigger, -1);
3380 XSETFASTINT (buffer_local_flags.mode_line_format, 1);
3381 XSETFASTINT (buffer_local_flags.abbrev_mode, 2);
3382 XSETFASTINT (buffer_local_flags.overwrite_mode, 4);
3383 XSETFASTINT (buffer_local_flags.case_fold_search, 8);
3384 XSETFASTINT (buffer_local_flags.auto_fill_function, 0x10);
3385 XSETFASTINT (buffer_local_flags.selective_display, 0x20);
3386 #ifndef old
3387 XSETFASTINT (buffer_local_flags.selective_display_ellipses, 0x40);
3388 #endif
3389 XSETFASTINT (buffer_local_flags.tab_width, 0x80);
3390 XSETFASTINT (buffer_local_flags.truncate_lines, 0x100);
3391 XSETFASTINT (buffer_local_flags.ctl_arrow, 0x200);
3392 XSETFASTINT (buffer_local_flags.fill_column, 0x400);
3393 XSETFASTINT (buffer_local_flags.left_margin, 0x800);
3394 XSETFASTINT (buffer_local_flags.abbrev_table, 0x1000);
3395 XSETFASTINT (buffer_local_flags.display_table, 0x2000);
3396 XSETFASTINT (buffer_local_flags.syntax_table, 0x8000);
3397 XSETFASTINT (buffer_local_flags.cache_long_line_scans, 0x10000);
3398 #ifdef DOS_NT
3399 XSETFASTINT (buffer_local_flags.buffer_file_type, 0x4000);
3400 #endif
3402 Vbuffer_alist = Qnil;
3403 current_buffer = 0;
3404 all_buffers = 0;
3406 QSFundamental = build_string ("Fundamental");
3408 Qfundamental_mode = intern ("fundamental-mode");
3409 buffer_defaults.major_mode = Qfundamental_mode;
3411 Qmode_class = intern ("mode-class");
3413 Qprotected_field = intern ("protected-field");
3415 Qpermanent_local = intern ("permanent-local");
3417 Qkill_buffer_hook = intern ("kill-buffer-hook");
3419 Vprin1_to_string_buffer = Fget_buffer_create (build_string (" prin1"));
3420 /* super-magic invisible buffer */
3421 Vbuffer_alist = Qnil;
3423 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
3426 init_buffer ()
3428 char buf[MAXPATHLEN+1];
3429 char *pwd;
3430 struct stat dotstat, pwdstat;
3431 Lisp_Object temp;
3432 int rc;
3434 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
3436 /* If PWD is accurate, use it instead of calling getwd. This is faster
3437 when PWD is right, and may avoid a fatal error. */
3438 if ((pwd = getenv ("PWD")) != 0 && IS_DIRECTORY_SEP (*pwd)
3439 && stat (pwd, &pwdstat) == 0
3440 && stat (".", &dotstat) == 0
3441 && dotstat.st_ino == pwdstat.st_ino
3442 && dotstat.st_dev == pwdstat.st_dev
3443 && strlen (pwd) < MAXPATHLEN)
3444 strcpy (buf, pwd);
3445 else if (getwd (buf) == 0)
3446 fatal ("`getwd' failed: %s\n", buf);
3448 #ifndef VMS
3449 /* Maybe this should really use some standard subroutine
3450 whose definition is filename syntax dependent. */
3451 rc = strlen (buf);
3452 if (!(IS_DIRECTORY_SEP (buf[rc - 1])))
3454 buf[rc] = DIRECTORY_SEP;
3455 buf[rc + 1] = '\0';
3457 #endif /* not VMS */
3458 current_buffer->directory = build_string (buf);
3460 temp = get_minibuffer (0);
3461 XBUFFER (temp)->directory = current_buffer->directory;
3464 /* initialize the buffer routines */
3465 syms_of_buffer ()
3467 extern Lisp_Object Qdisabled;
3469 staticpro (&last_overlay_modification_hooks);
3470 last_overlay_modification_hooks
3471 = Fmake_vector (make_number (10), Qnil);
3473 staticpro (&Vbuffer_defaults);
3474 staticpro (&Vbuffer_local_symbols);
3475 staticpro (&Qfundamental_mode);
3476 staticpro (&Qmode_class);
3477 staticpro (&QSFundamental);
3478 staticpro (&Vbuffer_alist);
3479 staticpro (&Qprotected_field);
3480 staticpro (&Qpermanent_local);
3481 staticpro (&Qkill_buffer_hook);
3482 Qoverlayp = intern ("overlayp");
3483 staticpro (&Qoverlayp);
3484 Qevaporate = intern ("evaporate");
3485 staticpro (&Qevaporate);
3486 Qmodification_hooks = intern ("modification-hooks");
3487 staticpro (&Qmodification_hooks);
3488 Qinsert_in_front_hooks = intern ("insert-in-front-hooks");
3489 staticpro (&Qinsert_in_front_hooks);
3490 Qinsert_behind_hooks = intern ("insert-behind-hooks");
3491 staticpro (&Qinsert_behind_hooks);
3492 Qget_file_buffer = intern ("get-file-buffer");
3493 staticpro (&Qget_file_buffer);
3494 Qpriority = intern ("priority");
3495 staticpro (&Qpriority);
3496 Qwindow = intern ("window");
3497 staticpro (&Qwindow);
3498 Qbefore_string = intern ("before-string");
3499 staticpro (&Qbefore_string);
3500 Qafter_string = intern ("after-string");
3501 staticpro (&Qafter_string);
3502 Qfirst_change_hook = intern ("first-change-hook");
3503 staticpro (&Qfirst_change_hook);
3504 Qbefore_change_functions = intern ("before-change-functions");
3505 staticpro (&Qbefore_change_functions);
3506 Qafter_change_functions = intern ("after-change-functions");
3507 staticpro (&Qafter_change_functions);
3509 Fput (Qprotected_field, Qerror_conditions,
3510 Fcons (Qprotected_field, Fcons (Qerror, Qnil)));
3511 Fput (Qprotected_field, Qerror_message,
3512 build_string ("Attempt to modify a protected field"));
3514 /* All these use DEFVAR_LISP_NOPRO because the slots in
3515 buffer_defaults will all be marked via Vbuffer_defaults. */
3517 DEFVAR_LISP_NOPRO ("default-mode-line-format",
3518 &buffer_defaults.mode_line_format,
3519 "Default value of `mode-line-format' for buffers that don't override it.\n\
3520 This is the same as (default-value 'mode-line-format).");
3522 DEFVAR_LISP_NOPRO ("default-abbrev-mode",
3523 &buffer_defaults.abbrev_mode,
3524 "Default value of `abbrev-mode' for buffers that do not override it.\n\
3525 This is the same as (default-value 'abbrev-mode).");
3527 DEFVAR_LISP_NOPRO ("default-ctl-arrow",
3528 &buffer_defaults.ctl_arrow,
3529 "Default value of `ctl-arrow' for buffers that do not override it.\n\
3530 This is the same as (default-value 'ctl-arrow).");
3532 DEFVAR_LISP_NOPRO ("default-truncate-lines",
3533 &buffer_defaults.truncate_lines,
3534 "Default value of `truncate-lines' for buffers that do not override it.\n\
3535 This is the same as (default-value 'truncate-lines).");
3537 DEFVAR_LISP_NOPRO ("default-fill-column",
3538 &buffer_defaults.fill_column,
3539 "Default value of `fill-column' for buffers that do not override it.\n\
3540 This is the same as (default-value 'fill-column).");
3542 DEFVAR_LISP_NOPRO ("default-left-margin",
3543 &buffer_defaults.left_margin,
3544 "Default value of `left-margin' for buffers that do not override it.\n\
3545 This is the same as (default-value 'left-margin).");
3547 DEFVAR_LISP_NOPRO ("default-tab-width",
3548 &buffer_defaults.tab_width,
3549 "Default value of `tab-width' for buffers that do not override it.\n\
3550 This is the same as (default-value 'tab-width).");
3552 DEFVAR_LISP_NOPRO ("default-case-fold-search",
3553 &buffer_defaults.case_fold_search,
3554 "Default value of `case-fold-search' for buffers that don't override it.\n\
3555 This is the same as (default-value 'case-fold-search).");
3557 #ifdef DOS_NT
3558 DEFVAR_LISP_NOPRO ("default-buffer-file-type",
3559 &buffer_defaults.buffer_file_type,
3560 "Default file type for buffers that do not override it.\n\
3561 This is the same as (default-value 'buffer-file-type).\n\
3562 The file type is nil for text, t for binary.");
3563 #endif
3565 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
3566 Qnil, 0);
3568 /* This doc string is too long for cpp; cpp dies if it isn't in a comment.
3569 But make-docfile finds it!
3570 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
3571 Qnil,
3572 "Template for displaying mode line for current buffer.\n\
3573 Each buffer has its own value of this variable.\n\
3574 Value may be a string, a symbol or a list or cons cell.\n\
3575 For a symbol, its value is used (but it is ignored if t or nil).\n\
3576 A string appearing directly as the value of a symbol is processed verbatim\n\
3577 in that the %-constructs below are not recognized.\n\
3578 For a list whose car is a symbol, the symbol's value is taken,\n\
3579 and if that is non-nil, the cadr of the list is processed recursively.\n\
3580 Otherwise, the caddr of the list (if there is one) is processed.\n\
3581 For a list whose car is a string or list, each element is processed\n\
3582 recursively and the results are effectively concatenated.\n\
3583 For a list whose car is an integer, the cdr of the list is processed\n\
3584 and padded (if the number is positive) or truncated (if negative)\n\
3585 to the width specified by that number.\n\
3586 A string is printed verbatim in the mode line except for %-constructs:\n\
3587 (%-constructs are allowed when the string is the entire mode-line-format\n\
3588 or when it is found in a cons-cell or a list)\n\
3589 %b -- print buffer name. %f -- print visited file name.\n\
3590 %* -- print %, * or hyphen. %+ -- print *, % or hyphen.\n\
3591 % means buffer is read-only and * means it is modified.\n\
3592 For a modified read-only buffer, %* gives % and %+ gives *.\n\
3593 %s -- print process status. %l -- print the current line number.\n\
3594 %p -- print percent of buffer above top of window, or Top, Bot or All.\n\
3595 %P -- print percent of buffer above bottom of window, perhaps plus Top,\n\
3596 or print Bottom or All.\n\
3597 %n -- print Narrow if appropriate.\n\
3598 %t -- print T if files is text, B if binary.\n\
3599 %[ -- print one [ for each recursive editing level. %] similar.\n\
3600 %% -- print %. %- -- print infinitely many dashes.\n\
3601 Decimal digits after the % specify field width to which to pad.");
3604 DEFVAR_LISP_NOPRO ("default-major-mode", &buffer_defaults.major_mode,
3605 "*Major mode for new buffers. Defaults to `fundamental-mode'.\n\
3606 nil here means use current buffer's major mode.");
3608 DEFVAR_PER_BUFFER ("major-mode", &current_buffer->major_mode,
3609 make_number (Lisp_Symbol),
3610 "Symbol for current buffer's major mode.");
3612 DEFVAR_PER_BUFFER ("mode-name", &current_buffer->mode_name,
3613 make_number (Lisp_String),
3614 "Pretty name of current buffer's major mode (a string).");
3616 DEFVAR_PER_BUFFER ("abbrev-mode", &current_buffer->abbrev_mode, Qnil,
3617 "Non-nil turns on automatic expansion of abbrevs as they are inserted.\n\
3618 Automatically becomes buffer-local when set in any fashion.");
3620 DEFVAR_PER_BUFFER ("case-fold-search", &current_buffer->case_fold_search,
3621 Qnil,
3622 "*Non-nil if searches should ignore case.\n\
3623 Automatically becomes buffer-local when set in any fashion.");
3625 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column,
3626 make_number (Lisp_Int),
3627 "*Column beyond which automatic line-wrapping should happen.\n\
3628 Automatically becomes buffer-local when set in any fashion.");
3630 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin,
3631 make_number (Lisp_Int),
3632 "*Column for the default indent-line-function to indent to.\n\
3633 Linefeed indents to this column in Fundamental mode.\n\
3634 Automatically becomes buffer-local when set in any fashion.");
3636 DEFVAR_PER_BUFFER ("tab-width", &current_buffer->tab_width,
3637 make_number (Lisp_Int),
3638 "*Distance between tab stops (for display of tab characters), in columns.\n\
3639 Automatically becomes buffer-local when set in any fashion.");
3641 DEFVAR_PER_BUFFER ("ctl-arrow", &current_buffer->ctl_arrow, Qnil,
3642 "*Non-nil means display control chars with uparrow.\n\
3643 Nil means use backslash and octal digits.\n\
3644 Automatically becomes buffer-local when set in any fashion.\n\
3645 This variable does not apply to characters whose display is specified\n\
3646 in the current display table (if there is one).");
3648 DEFVAR_PER_BUFFER ("truncate-lines", &current_buffer->truncate_lines, Qnil,
3649 "*Non-nil means do not display continuation lines;\n\
3650 give each line of text one screen line.\n\
3651 Automatically becomes buffer-local when set in any fashion.\n\
3653 Note that this is overridden by the variable\n\
3654 `truncate-partial-width-windows' if that variable is non-nil\n\
3655 and this buffer is not full-frame width.");
3657 #ifdef DOS_NT
3658 DEFVAR_PER_BUFFER ("buffer-file-type", &current_buffer->buffer_file_type,
3659 Qnil,
3660 "Non-nil if the visited file is a binary file.\n\
3661 This variable is meaningful on MS-DOG and Windows NT.\n\
3662 On those systems, it is automatically local in every buffer.\n\
3663 On other systems, this variable is normally always nil.");
3664 #endif
3666 DEFVAR_PER_BUFFER ("default-directory", &current_buffer->directory,
3667 make_number (Lisp_String),
3668 "Name of default directory of current buffer. Should end with slash.\n\
3669 Each buffer has its own value of this variable.");
3671 DEFVAR_PER_BUFFER ("auto-fill-function", &current_buffer->auto_fill_function,
3672 Qnil,
3673 "Function called (if non-nil) to perform auto-fill.\n\
3674 It is called after self-inserting a space at a column beyond `fill-column'.\n\
3675 Each buffer has its own value of this variable.\n\
3676 NOTE: This variable is not an ordinary hook;\n\
3677 It may not be a list of functions.");
3679 DEFVAR_PER_BUFFER ("buffer-file-name", &current_buffer->filename,
3680 make_number (Lisp_String),
3681 "Name of file visited in current buffer, or nil if not visiting a file.\n\
3682 Each buffer has its own value of this variable.");
3684 DEFVAR_PER_BUFFER ("buffer-file-truename", &current_buffer->file_truename,
3685 make_number (Lisp_String),
3686 "Abbreviated truename of file visited in current buffer, or nil if none.\n\
3687 The truename of a file is calculated by `file-truename'\n\
3688 and then abbreviated with `abbreviate-file-name'.\n\
3689 Each buffer has its own value of this variable.");
3691 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
3692 &current_buffer->auto_save_file_name,
3693 make_number (Lisp_String),
3694 "Name of file for auto-saving current buffer,\n\
3695 or nil if buffer should not be auto-saved.\n\
3696 Each buffer has its own value of this variable.");
3698 DEFVAR_PER_BUFFER ("buffer-read-only", &current_buffer->read_only, Qnil,
3699 "Non-nil if this buffer is read-only.\n\
3700 Each buffer has its own value of this variable.");
3702 DEFVAR_PER_BUFFER ("buffer-backed-up", &current_buffer->backed_up, Qnil,
3703 "Non-nil if this buffer's file has been backed up.\n\
3704 Backing up is done before the first time the file is saved.\n\
3705 Each buffer has its own value of this variable.");
3707 DEFVAR_PER_BUFFER ("buffer-saved-size", &current_buffer->save_length,
3708 make_number (Lisp_Int),
3709 "Length of current buffer when last read in, saved or auto-saved.\n\
3710 0 initially.\n\
3711 Each buffer has its own value of this variable.");
3713 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
3714 Qnil,
3715 "Non-nil enables selective display:\n\
3716 Integer N as value means display only lines\n\
3717 that start with less than n columns of space.\n\
3718 A value of t means, after a ^M, all the rest of the line is invisible.\n\
3719 Then ^M's in the file are written into files as newlines.\n\n\
3720 Automatically becomes buffer-local when set in any fashion.");
3722 #ifndef old
3723 DEFVAR_PER_BUFFER ("selective-display-ellipses",
3724 &current_buffer->selective_display_ellipses,
3725 Qnil,
3726 "t means display ... on previous line when a line is invisible.\n\
3727 Automatically becomes buffer-local when set in any fashion.");
3728 #endif
3730 DEFVAR_PER_BUFFER ("overwrite-mode", &current_buffer->overwrite_mode, Qnil,
3731 "Non-nil if self-insertion should replace existing text.\n\
3732 The value should be one of `overwrite-mode-textual',\n\
3733 `overwrite-mode-binary', or nil.\n\
3734 If it is `overwrite-mode-textual', self-insertion still\n\
3735 inserts at the end of a line, and inserts when point is before a tab,\n\
3736 until the tab is filled in.\n\
3737 If `overwrite-mode-binary', self-insertion replaces newlines and tabs too.\n\
3738 Automatically becomes buffer-local when set in any fashion.");
3740 #if 0 /* The doc string is too long for some compilers,
3741 but make-docfile can find it in this comment. */
3742 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
3743 Qnil,
3744 "Display table that controls display of the contents of current buffer.\n\
3745 Automatically becomes buffer-local when set in any fashion.\n\
3746 The display table is a char-table created with `make-display-table'.\n\
3747 The ordinary char-table elements control how to display each possible text\n\
3748 character. Each value should be a vector of characters or nil;\n\
3749 nil means display the character in the default fashion.\n\
3750 There are six extra slots to control the display of\n\
3751 the end of a truncated screen line (extra-slot 0, a single character);\n\
3752 the end of a continued line (extra-slot 1, a single character);\n\
3753 the escape character used to display character codes in octal\n\
3754 (extra-slot 2, a single character);\n\
3755 the character used as an arrow for control characters (extra-slot 3,\n\
3756 a single character);\n\
3757 the decoration indicating the presence of invisible lines (extra-slot 4,\n\
3758 a vector of characters);\n\
3759 the character used to draw the border between side-by-side windows\n\
3760 (extra-slot 5, a single character).\n\
3761 See also the functions `display-table-slot' and `set-display-table-slot'.\n\
3762 If this variable is nil, the value of `standard-display-table' is used.\n\
3763 Each window can have its own, overriding display table.");
3764 #endif
3765 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
3766 Qnil, 0);
3768 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
3769 "Don't ask.");
3771 DEFVAR_LISP ("before-change-function", &Vbefore_change_function,
3772 "Function to call before each text change.\n\
3773 Two arguments are passed to the function: the positions of\n\
3774 the beginning and end of the range of old text to be changed.\n\
3775 \(For an insertion, the beginning and end are at the same place.)\n\
3776 No information is given about the length of the text after the change.\n\
3778 Buffer changes made while executing the `before-change-function'\n\
3779 don't call any before-change or after-change functions.\n\
3780 That's because these variables are temporarily set to nil.\n\
3781 As a result, a hook function cannot straightforwardly alter the value of\n\
3782 these variables. See the Emacs Lisp manual for a way of\n\
3783 accomplishing an equivalent result by using other variables.");
3784 Vbefore_change_function = Qnil;
3786 DEFVAR_LISP ("after-change-function", &Vafter_change_function,
3787 "Function to call after each text change.\n\
3788 Three arguments are passed to the function: the positions of\n\
3789 the beginning and end of the range of changed text,\n\
3790 and the length of the pre-change text replaced by that range.\n\
3791 \(For an insertion, the pre-change length is zero;\n\
3792 for a deletion, that length is the number of characters deleted,\n\
3793 and the post-change beginning and end are at the same place.)\n\
3795 Buffer changes made while executing the `after-change-function'\n\
3796 don't call any before-change or after-change functions.\n\
3797 That's because these variables are temporarily set to nil.\n\
3798 As a result, a hook function cannot straightforwardly alter the value of\n\
3799 these variables. See the Emacs Lisp manual for a way of\n\
3800 accomplishing an equivalent result by using other variables.");
3801 Vafter_change_function = Qnil;
3803 DEFVAR_LISP ("before-change-functions", &Vbefore_change_functions,
3804 "List of functions to call before each text change.\n\
3805 Two arguments are passed to each function: the positions of\n\
3806 the beginning and end of the range of old text to be changed.\n\
3807 \(For an insertion, the beginning and end are at the same place.)\n\
3808 No information is given about the length of the text after the change.\n\
3810 Buffer changes made while executing the `before-change-functions'\n\
3811 don't call any before-change or after-change functions.\n\
3812 That's because these variables are temporarily set to nil.\n\
3813 As a result, a hook function cannot straightforwardly alter the value of\n\
3814 these variables. See the Emacs Lisp manual for a way of\n\
3815 accomplishing an equivalent result by using other variables.");
3816 Vbefore_change_functions = Qnil;
3818 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions,
3819 "List of function to call after each text change.\n\
3820 Three arguments are passed to each function: the positions of\n\
3821 the beginning and end of the range of changed text,\n\
3822 and the length of the pre-change text replaced by that range.\n\
3823 \(For an insertion, the pre-change length is zero;\n\
3824 for a deletion, that length is the number of characters deleted,\n\
3825 and the post-change beginning and end are at the same place.)\n\
3827 Buffer changes made while executing the `after-change-functions'\n\
3828 don't call any before-change or after-change functions.\n\
3829 That's because these variables are temporarily set to nil.\n\
3830 As a result, a hook function cannot straightforwardly alter the value of\n\
3831 these variables. See the Emacs Lisp manual for a way of\n\
3832 accomplishing an equivalent result by using other variables.");
3834 Vafter_change_functions = Qnil;
3836 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook,
3837 "A list of functions to call before changing a buffer which is unmodified.\n\
3838 The functions are run using the `run-hooks' function.");
3839 Vfirst_change_hook = Qnil;
3841 #if 0 /* The doc string is too long for some compilers,
3842 but make-docfile can find it in this comment. */
3843 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
3844 "List of undo entries in current buffer.\n\
3845 Recent changes come first; older changes follow newer.\n\
3847 An entry (BEG . END) represents an insertion which begins at\n\
3848 position BEG and ends at position END.\n\
3850 An entry (TEXT . POSITION) represents the deletion of the string TEXT\n\
3851 from (abs POSITION). If POSITION is positive, point was at the front\n\
3852 of the text being deleted; if negative, point was at the end.\n\
3854 An entry (t HIGH . LOW) indicates that the buffer previously had\n\
3855 \"unmodified\" status. HIGH and LOW are the high and low 16-bit portions\n\
3856 of the visited file's modification time, as of that time. If the\n\
3857 modification time of the most recent save is different, this entry is\n\
3858 obsolete.\n\
3860 An entry (nil PROPERTY VALUE BEG . END) indicates that a text property\n\
3861 was modified between BEG and END. PROPERTY is the property name,\n\
3862 and VALUE is the old value.\n\
3864 An entry of the form POSITION indicates that point was at the buffer\n\
3865 location given by the integer. Undoing an entry of this form places\n\
3866 point at POSITION.\n\
3868 nil marks undo boundaries. The undo command treats the changes\n\
3869 between two undo boundaries as a single step to be undone.\n\
3871 If the value of the variable is t, undo information is not recorded.");
3872 #endif
3873 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
3876 DEFVAR_PER_BUFFER ("mark-active", &current_buffer->mark_active, Qnil,
3877 "Non-nil means the mark and region are currently active in this buffer.\n\
3878 Automatically local in all buffers.");
3880 DEFVAR_PER_BUFFER ("cache-long-line-scans", &current_buffer->cache_long_line_scans, Qnil,
3881 "Non-nil means that Emacs should use caches to handle long lines more quickly.\n\
3882 This variable is buffer-local, in all buffers.\n\
3884 Normally, the line-motion functions work by scanning the buffer for\n\
3885 newlines. Columnar operations (like move-to-column and\n\
3886 compute-motion) also work by scanning the buffer, summing character\n\
3887 widths as they go. This works well for ordinary text, but if the\n\
3888 buffer's lines are very long (say, more than 500 characters), these\n\
3889 motion functions will take longer to execute. Emacs may also take\n\
3890 longer to update the display.\n\
3892 If cache-long-line-scans is non-nil, these motion functions cache the\n\
3893 results of their scans, and consult the cache to avoid rescanning\n\
3894 regions of the buffer until the text is modified. The caches are most\n\
3895 beneficial when they prevent the most searching---that is, when the\n\
3896 buffer contains long lines and large regions of characters with the\n\
3897 same, fixed screen width.\n\
3899 When cache-long-line-scans is non-nil, processing short lines will\n\
3900 become slightly slower (because of the overhead of consulting the\n\
3901 cache), and the caches will use memory roughly proportional to the\n\
3902 number of newlines and characters whose screen width varies.\n\
3904 The caches require no explicit maintenance; their accuracy is\n\
3905 maintained internally by the Emacs primitives. Enabling or disabling\n\
3906 the cache should not affect the behavior of any of the motion\n\
3907 functions; it should only affect their performance.");
3909 DEFVAR_PER_BUFFER ("point-before-scroll", &current_buffer->point_before_scroll, Qnil,
3910 "Value of point before the last series of scroll operations, or nil.");
3912 DEFVAR_PER_BUFFER ("buffer-file-format", &current_buffer->file_format, Qnil,
3913 "List of formats to use when saving this buffer.\n\
3914 Formats are defined by `format-alist'. This variable is\n\
3915 set when a file is visited. Automatically local in all buffers.");
3917 DEFVAR_PER_BUFFER ("buffer-invisibility-spec",
3918 &current_buffer->invisibility_spec, Qnil,
3919 "Invisibility spec of this buffer.\n\
3920 The default is t, which means that text is invisible\n\
3921 if it has a non-nil `invisible' property.\n\
3922 If the value is a list, a text character is invisible if its `invisible'\n\
3923 property is an element in that list.\n\
3924 If an element is a cons cell of the form (PROP . ELLIPSIS),\n\
3925 then characters with property value PROP are invisible,\n\
3926 and they have an ellipsis as well if ELLIPSIS is non-nil.");
3928 DEFVAR_LISP ("transient-mark-mode", &Vtransient_mark_mode,
3929 "*Non-nil means deactivate the mark when the buffer contents change.");
3930 Vtransient_mark_mode = Qnil;
3932 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only,
3933 "*Non-nil means disregard read-only status of buffers or characters.\n\
3934 If the value is t, disregard `buffer-read-only' and all `read-only'\n\
3935 text properties. If the value is a list, disregard `buffer-read-only'\n\
3936 and disregard a `read-only' text property if the property value\n\
3937 is a member of the list.");
3938 Vinhibit_read_only = Qnil;
3940 DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions,
3941 "List of functions called with no args to query before killing a buffer.");
3942 Vkill_buffer_query_functions = Qnil;
3944 defsubr (&Sbuffer_list);
3945 defsubr (&Sget_buffer);
3946 defsubr (&Sget_file_buffer);
3947 defsubr (&Sget_buffer_create);
3948 defsubr (&Smake_indirect_buffer);
3949 defsubr (&Sgenerate_new_buffer_name);
3950 defsubr (&Sbuffer_name);
3951 /*defsubr (&Sbuffer_number);*/
3952 defsubr (&Sbuffer_file_name);
3953 defsubr (&Sbuffer_base_buffer);
3954 defsubr (&Sbuffer_local_variables);
3955 defsubr (&Sbuffer_modified_p);
3956 defsubr (&Sset_buffer_modified_p);
3957 defsubr (&Sbuffer_modified_tick);
3958 defsubr (&Srename_buffer);
3959 defsubr (&Sother_buffer);
3960 defsubr (&Sbuffer_disable_undo);
3961 defsubr (&Sbuffer_enable_undo);
3962 defsubr (&Skill_buffer);
3963 defsubr (&Serase_buffer);
3964 defsubr (&Sset_buffer_major_mode);
3965 defsubr (&Sswitch_to_buffer);
3966 defsubr (&Spop_to_buffer);
3967 defsubr (&Scurrent_buffer);
3968 defsubr (&Sset_buffer);
3969 defsubr (&Sbarf_if_buffer_read_only);
3970 defsubr (&Sbury_buffer);
3971 defsubr (&Skill_all_local_variables);
3973 defsubr (&Soverlayp);
3974 defsubr (&Smake_overlay);
3975 defsubr (&Sdelete_overlay);
3976 defsubr (&Smove_overlay);
3977 defsubr (&Soverlay_start);
3978 defsubr (&Soverlay_end);
3979 defsubr (&Soverlay_buffer);
3980 defsubr (&Soverlay_properties);
3981 defsubr (&Soverlays_at);
3982 defsubr (&Soverlays_in);
3983 defsubr (&Snext_overlay_change);
3984 defsubr (&Sprevious_overlay_change);
3985 defsubr (&Soverlay_recenter);
3986 defsubr (&Soverlay_lists);
3987 defsubr (&Soverlay_get);
3988 defsubr (&Soverlay_put);
3991 keys_of_buffer ()
3993 initial_define_key (control_x_map, 'b', "switch-to-buffer");
3994 initial_define_key (control_x_map, 'k', "kill-buffer");
3996 /* This must not be in syms_of_buffer, because Qdisabled is not
3997 initialized when that function gets called. */
3998 Fput (intern ("erase-buffer"), Qdisabled, Qt);