Address an edge case in vc-diff. This is an experimental fix and may change.
[emacs.git] / src / buffer.c
blobede5d9e1ce8560fa850e5ba5d0443e6d947393a8
1 /* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994,
3 1995, 1997, 1998, 1999, 2000, 2001, 2002,
4 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 #include <config.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <sys/param.h>
28 #include <errno.h>
29 #include <stdio.h>
31 #ifndef USE_CRT_DLL
32 extern int errno;
33 #endif
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
40 #include "lisp.h"
41 #include "intervals.h"
42 #include "window.h"
43 #include "commands.h"
44 #include "buffer.h"
45 #include "charset.h"
46 #include "region-cache.h"
47 #include "indent.h"
48 #include "blockinput.h"
49 #include "keyboard.h"
50 #include "keymap.h"
51 #include "frame.h"
53 struct buffer *current_buffer; /* the current buffer */
55 /* First buffer in chain of all buffers (in reverse order of creation).
56 Threaded through ->next. */
58 struct buffer *all_buffers;
60 /* This structure holds the default values of the buffer-local variables
61 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer.
62 The default value occupies the same slot in this structure
63 as an individual buffer's value occupies in that buffer.
64 Setting the default value also goes through the alist of buffers
65 and stores into each buffer that does not say it has a local value. */
67 DECL_ALIGN (struct buffer, buffer_defaults);
69 /* A Lisp_Object pointer to the above, used for staticpro */
71 static Lisp_Object Vbuffer_defaults;
73 /* This structure marks which slots in a buffer have corresponding
74 default values in buffer_defaults.
75 Each such slot has a nonzero value in this structure.
76 The value has only one nonzero bit.
78 When a buffer has its own local value for a slot,
79 the entry for that slot (found in the same slot in this structure)
80 is turned on in the buffer's local_flags array.
82 If a slot in this structure is -1, then even though there may
83 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it;
84 and the corresponding slot in buffer_defaults is not used.
86 If a slot is -2, then there is no DEFVAR_PER_BUFFER for it,
87 but there is a default value which is copied into each buffer.
89 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is
90 zero, that is a bug */
92 struct buffer buffer_local_flags;
94 /* This structure holds the names of symbols whose values may be
95 buffer-local. It is indexed and accessed in the same way as the above. */
97 DECL_ALIGN (struct buffer, buffer_local_symbols);
99 /* A Lisp_Object pointer to the above, used for staticpro */
100 static Lisp_Object Vbuffer_local_symbols;
102 /* This structure holds the required types for the values in the
103 buffer-local slots. If a slot contains Qnil, then the
104 corresponding buffer slot may contain a value of any type. If a
105 slot contains an integer, then prospective values' tags must be
106 equal to that integer (except nil is always allowed).
107 When a tag does not match, the function
108 buffer_slot_type_mismatch will signal an error.
110 If a slot here contains -1, the corresponding variable is read-only. */
111 struct buffer buffer_local_types;
113 /* Flags indicating which built-in buffer-local variables
114 are permanent locals. */
115 static char buffer_permanent_local_flags[MAX_PER_BUFFER_VARS];
117 /* Number of per-buffer variables used. */
119 int last_per_buffer_idx;
121 Lisp_Object Fset_buffer ();
122 void set_buffer_internal ();
123 void set_buffer_internal_1 ();
124 static void call_overlay_mod_hooks ();
125 static void swap_out_buffer_local_variables ();
126 static void reset_buffer_local_variables ();
128 /* Alist of all buffer names vs the buffers. */
129 /* This used to be a variable, but is no longer,
130 to prevent lossage due to user rplac'ing this alist or its elements. */
131 Lisp_Object Vbuffer_alist;
133 /* Functions to call before and after each text change. */
134 Lisp_Object Vbefore_change_functions;
135 Lisp_Object Vafter_change_functions;
137 Lisp_Object Vtransient_mark_mode;
139 /* t means ignore all read-only text properties.
140 A list means ignore such a property if its value is a member of the list.
141 Any non-nil value means ignore buffer-read-only. */
142 Lisp_Object Vinhibit_read_only;
144 /* List of functions to call that can query about killing a buffer.
145 If any of these functions returns nil, we don't kill it. */
146 Lisp_Object Vkill_buffer_query_functions;
147 Lisp_Object Qkill_buffer_query_functions;
149 /* Hook run before changing a major mode. */
150 Lisp_Object Vchange_major_mode_hook, Qchange_major_mode_hook;
152 /* List of functions to call before changing an unmodified buffer. */
153 Lisp_Object Vfirst_change_hook;
155 Lisp_Object Qfirst_change_hook;
156 Lisp_Object Qbefore_change_functions;
157 Lisp_Object Qafter_change_functions;
158 Lisp_Object Qucs_set_table_for_input;
160 /* If nonzero, all modification hooks are suppressed. */
161 int inhibit_modification_hooks;
163 Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local;
165 Lisp_Object Qprotected_field;
167 Lisp_Object QSFundamental; /* A string "Fundamental" */
169 Lisp_Object Qkill_buffer_hook;
171 Lisp_Object Qget_file_buffer;
173 Lisp_Object Qoverlayp;
175 Lisp_Object Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string;
177 Lisp_Object Qmodification_hooks;
178 Lisp_Object Qinsert_in_front_hooks;
179 Lisp_Object Qinsert_behind_hooks;
181 static void alloc_buffer_text P_ ((struct buffer *, size_t));
182 static void free_buffer_text P_ ((struct buffer *b));
183 static struct Lisp_Overlay * copy_overlays P_ ((struct buffer *, struct Lisp_Overlay *));
184 static void modify_overlay P_ ((struct buffer *, EMACS_INT, EMACS_INT));
185 static Lisp_Object buffer_lisp_local_variables P_ ((struct buffer *));
188 /* For debugging; temporary. See set_buffer_internal. */
189 /* Lisp_Object Qlisp_mode, Vcheck_symbol; */
191 void
192 nsberror (spec)
193 Lisp_Object spec;
195 if (STRINGP (spec))
196 error ("No buffer named %s", SDATA (spec));
197 error ("Invalid buffer argument");
200 DEFUN ("buffer-live-p", Fbuffer_live_p, Sbuffer_live_p, 1, 1, 0,
201 doc: /* Return non-nil if OBJECT is a buffer which has not been killed.
202 Value is nil if OBJECT is not a buffer or if it has been killed. */)
203 (object)
204 Lisp_Object object;
206 return ((BUFFERP (object) && ! NILP (XBUFFER (object)->name))
207 ? Qt : Qnil);
210 DEFUN ("buffer-list", Fbuffer_list, Sbuffer_list, 0, 1, 0,
211 doc: /* Return a list of all existing live buffers.
212 If the optional arg FRAME is a frame, we return the buffer list
213 in the proper order for that frame: the buffers in FRAME's `buffer-list'
214 frame parameter come first, followed by the rest of the buffers. */)
215 (frame)
216 Lisp_Object frame;
218 Lisp_Object general;
219 general = Fmapcar (Qcdr, Vbuffer_alist);
221 if (FRAMEP (frame))
223 Lisp_Object framelist, prevlist, tail;
224 Lisp_Object args[3];
226 CHECK_FRAME (frame);
228 framelist = Fcopy_sequence (XFRAME (frame)->buffer_list);
229 prevlist = Fnreverse (Fcopy_sequence (XFRAME (frame)->buried_buffer_list));
231 /* Remove from GENERAL any buffer that duplicates one in
232 FRAMELIST or PREVLIST. */
233 tail = framelist;
234 while (CONSP (tail))
236 general = Fdelq (XCAR (tail), general);
237 tail = XCDR (tail);
239 tail = prevlist;
240 while (CONSP (tail))
242 general = Fdelq (XCAR (tail), general);
243 tail = XCDR (tail);
246 args[0] = framelist;
247 args[1] = general;
248 args[2] = prevlist;
249 return Fnconc (3, args);
252 return general;
255 /* Like Fassoc, but use Fstring_equal to compare
256 (which ignores text properties),
257 and don't ever QUIT. */
259 static Lisp_Object
260 assoc_ignore_text_properties (key, list)
261 register Lisp_Object key;
262 Lisp_Object list;
264 register Lisp_Object tail;
265 for (tail = list; CONSP (tail); tail = XCDR (tail))
267 register Lisp_Object elt, tem;
268 elt = XCAR (tail);
269 tem = Fstring_equal (Fcar (elt), key);
270 if (!NILP (tem))
271 return elt;
273 return Qnil;
276 DEFUN ("get-buffer", Fget_buffer, Sget_buffer, 1, 1, 0,
277 doc: /* Return the buffer named NAME (a string).
278 If there is no live buffer named NAME, return nil.
279 NAME may also be a buffer; if so, the value is that buffer. */)
280 (name)
281 register Lisp_Object name;
283 if (BUFFERP (name))
284 return name;
285 CHECK_STRING (name);
287 return Fcdr (assoc_ignore_text_properties (name, Vbuffer_alist));
290 DEFUN ("get-file-buffer", Fget_file_buffer, Sget_file_buffer, 1, 1, 0,
291 doc: /* Return the buffer visiting file FILENAME (a string).
292 The buffer's `buffer-file-name' must match exactly the expansion of FILENAME.
293 If there is no such live buffer, return nil.
294 See also `find-buffer-visiting'. */)
295 (filename)
296 register Lisp_Object filename;
298 register Lisp_Object tail, buf, tem;
299 Lisp_Object handler;
301 CHECK_STRING (filename);
302 filename = Fexpand_file_name (filename, Qnil);
304 /* If the file name has special constructs in it,
305 call the corresponding file handler. */
306 handler = Ffind_file_name_handler (filename, Qget_file_buffer);
307 if (!NILP (handler))
308 return call2 (handler, Qget_file_buffer, filename);
310 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
312 buf = Fcdr (XCAR (tail));
313 if (!BUFFERP (buf)) continue;
314 if (!STRINGP (XBUFFER (buf)->filename)) continue;
315 tem = Fstring_equal (XBUFFER (buf)->filename, filename);
316 if (!NILP (tem))
317 return buf;
319 return Qnil;
322 Lisp_Object
323 get_truename_buffer (filename)
324 register Lisp_Object filename;
326 register Lisp_Object tail, buf, tem;
328 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
330 buf = Fcdr (XCAR (tail));
331 if (!BUFFERP (buf)) continue;
332 if (!STRINGP (XBUFFER (buf)->file_truename)) continue;
333 tem = Fstring_equal (XBUFFER (buf)->file_truename, filename);
334 if (!NILP (tem))
335 return buf;
337 return Qnil;
340 /* Incremented for each buffer created, to assign the buffer number. */
341 int buffer_count;
343 DEFUN ("get-buffer-create", Fget_buffer_create, Sget_buffer_create, 1, 1, 0,
344 doc: /* Return the buffer named NAME, or create such a buffer and return it.
345 A new buffer is created if there is no live buffer named NAME.
346 If NAME starts with a space, the new buffer does not keep undo information.
347 If NAME is a buffer instead of a string, then it is the value returned.
348 The value is never nil. */)
349 (name)
350 register Lisp_Object name;
352 register Lisp_Object buf;
353 register struct buffer *b;
355 buf = Fget_buffer (name);
356 if (!NILP (buf))
357 return buf;
359 if (SCHARS (name) == 0)
360 error ("Empty string for buffer name is not allowed");
362 b = (struct buffer *) allocate_buffer ();
364 b->size = sizeof (struct buffer) / sizeof (EMACS_INT);
366 /* An ordinary buffer uses its own struct buffer_text. */
367 b->text = &b->own_text;
368 b->base_buffer = 0;
370 BUF_GAP_SIZE (b) = 20;
371 BLOCK_INPUT;
372 /* We allocate extra 1-byte at the tail and keep it always '\0' for
373 anchoring a search. */
374 alloc_buffer_text (b, BUF_GAP_SIZE (b) + 1);
375 UNBLOCK_INPUT;
376 if (! BUF_BEG_ADDR (b))
377 buffer_memory_full ();
379 BUF_PT (b) = BEG;
380 BUF_GPT (b) = BEG;
381 BUF_BEGV (b) = BEG;
382 BUF_ZV (b) = BEG;
383 BUF_Z (b) = BEG;
384 BUF_PT_BYTE (b) = BEG_BYTE;
385 BUF_GPT_BYTE (b) = BEG_BYTE;
386 BUF_BEGV_BYTE (b) = BEG_BYTE;
387 BUF_ZV_BYTE (b) = BEG_BYTE;
388 BUF_Z_BYTE (b) = BEG_BYTE;
389 BUF_MODIFF (b) = 1;
390 BUF_CHARS_MODIFF (b) = 1;
391 BUF_OVERLAY_MODIFF (b) = 1;
392 BUF_SAVE_MODIFF (b) = 1;
393 BUF_INTERVALS (b) = 0;
394 BUF_UNCHANGED_MODIFIED (b) = 1;
395 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = 1;
396 BUF_END_UNCHANGED (b) = 0;
397 BUF_BEG_UNCHANGED (b) = 0;
398 *(BUF_GPT_ADDR (b)) = *(BUF_Z_ADDR (b)) = 0; /* Put an anchor '\0'. */
400 b->newline_cache = 0;
401 b->width_run_cache = 0;
402 b->width_table = Qnil;
403 b->prevent_redisplay_optimizations_p = 1;
405 /* Put this on the chain of all buffers including killed ones. */
406 b->next = all_buffers;
407 all_buffers = b;
409 /* An ordinary buffer normally doesn't need markers
410 to handle BEGV and ZV. */
411 b->pt_marker = Qnil;
412 b->begv_marker = Qnil;
413 b->zv_marker = Qnil;
415 name = Fcopy_sequence (name);
416 STRING_SET_INTERVALS (name, NULL_INTERVAL);
417 b->name = name;
419 if (SREF (name, 0) != ' ')
420 b->undo_list = Qnil;
421 else
422 b->undo_list = Qt;
424 reset_buffer (b);
425 reset_buffer_local_variables (b, 1);
427 b->mark = Fmake_marker ();
428 BUF_MARKERS (b) = NULL;
429 b->name = name;
431 /* Put this in the alist of all live buffers. */
432 XSETPVECTYPE (b, PVEC_BUFFER);
433 XSETBUFFER (buf, b);
434 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
436 /* An error in calling the function here (should someone redefine it)
437 can lead to infinite regress until you run out of stack. rms
438 says that's not worth protecting against. */
439 if (!NILP (Ffboundp (Qucs_set_table_for_input)))
440 /* buf is on buffer-alist, so no gcpro. */
441 call1 (Qucs_set_table_for_input, buf);
443 return buf;
447 /* Return a list of overlays which is a copy of the overlay list
448 LIST, but for buffer B. */
450 static struct Lisp_Overlay *
451 copy_overlays (b, list)
452 struct buffer *b;
453 struct Lisp_Overlay *list;
455 Lisp_Object buffer;
456 struct Lisp_Overlay *result = NULL, *tail = NULL;
458 XSETBUFFER (buffer, b);
460 for (; list; list = list->next)
462 Lisp_Object overlay, start, end, old_overlay;
463 EMACS_INT charpos;
465 XSETMISC (old_overlay, list);
466 charpos = marker_position (OVERLAY_START (old_overlay));
467 start = Fmake_marker ();
468 Fset_marker (start, make_number (charpos), buffer);
469 XMARKER (start)->insertion_type
470 = XMARKER (OVERLAY_START (old_overlay))->insertion_type;
472 charpos = marker_position (OVERLAY_END (old_overlay));
473 end = Fmake_marker ();
474 Fset_marker (end, make_number (charpos), buffer);
475 XMARKER (end)->insertion_type
476 = XMARKER (OVERLAY_END (old_overlay))->insertion_type;
478 overlay = allocate_misc ();
479 XMISCTYPE (overlay) = Lisp_Misc_Overlay;
480 OVERLAY_START (overlay) = start;
481 OVERLAY_END (overlay) = end;
482 OVERLAY_PLIST (overlay) = Fcopy_sequence (OVERLAY_PLIST (old_overlay));
483 XOVERLAY (overlay)->next = NULL;
485 if (tail)
486 tail = tail->next = XOVERLAY (overlay);
487 else
488 result = tail = XOVERLAY (overlay);
491 return result;
495 /* Clone per-buffer values of buffer FROM.
497 Buffer TO gets the same per-buffer values as FROM, with the
498 following exceptions: (1) TO's name is left untouched, (2) markers
499 are copied and made to refer to TO, and (3) overlay lists are
500 copied. */
502 static void
503 clone_per_buffer_values (from, to)
504 struct buffer *from, *to;
506 Lisp_Object to_buffer;
507 int offset;
509 XSETBUFFER (to_buffer, to);
511 for (offset = PER_BUFFER_VAR_OFFSET (name) + sizeof (Lisp_Object);
512 offset < sizeof *to;
513 offset += sizeof (Lisp_Object))
515 Lisp_Object obj;
517 obj = PER_BUFFER_VALUE (from, offset);
518 if (MARKERP (obj))
520 struct Lisp_Marker *m = XMARKER (obj);
521 obj = Fmake_marker ();
522 XMARKER (obj)->insertion_type = m->insertion_type;
523 set_marker_both (obj, to_buffer, m->charpos, m->bytepos);
526 PER_BUFFER_VALUE (to, offset) = obj;
529 bcopy (from->local_flags, to->local_flags, sizeof to->local_flags);
531 to->overlays_before = copy_overlays (to, from->overlays_before);
532 to->overlays_after = copy_overlays (to, from->overlays_after);
534 /* Get (a copy of) the alist of Lisp-level local variables of FROM
535 and install that in TO. */
536 to->local_var_alist = buffer_lisp_local_variables (from);
539 DEFUN ("make-indirect-buffer", Fmake_indirect_buffer, Smake_indirect_buffer,
540 2, 3,
541 "bMake indirect buffer (to buffer): \nBName of indirect buffer: ",
542 doc: /* Create and return an indirect buffer for buffer BASE-BUFFER, named NAME.
543 BASE-BUFFER should be a live buffer, or the name of an existing buffer.
544 NAME should be a string which is not the name of an existing buffer.
545 Optional argument CLONE non-nil means preserve BASE-BUFFER's state,
546 such as major and minor modes, in the indirect buffer.
547 CLONE nil means the indirect buffer's state is reset to default values. */)
548 (base_buffer, name, clone)
549 Lisp_Object base_buffer, name, clone;
551 Lisp_Object buf, tem;
552 struct buffer *b;
554 CHECK_STRING (name);
555 buf = Fget_buffer (name);
556 if (!NILP (buf))
557 error ("Buffer name `%s' is in use", SDATA (name));
559 tem = base_buffer;
560 base_buffer = Fget_buffer (base_buffer);
561 if (NILP (base_buffer))
562 error ("No such buffer: `%s'", SDATA (tem));
563 if (NILP (XBUFFER (base_buffer)->name))
564 error ("Base buffer has been killed");
566 if (SCHARS (name) == 0)
567 error ("Empty string for buffer name is not allowed");
569 b = (struct buffer *) allocate_buffer ();
570 b->size = sizeof (struct buffer) / sizeof (EMACS_INT);
572 if (XBUFFER (base_buffer)->base_buffer)
573 b->base_buffer = XBUFFER (base_buffer)->base_buffer;
574 else
575 b->base_buffer = XBUFFER (base_buffer);
577 /* Use the base buffer's text object. */
578 b->text = b->base_buffer->text;
580 BUF_BEGV (b) = BUF_BEGV (b->base_buffer);
581 BUF_ZV (b) = BUF_ZV (b->base_buffer);
582 BUF_PT (b) = BUF_PT (b->base_buffer);
583 BUF_BEGV_BYTE (b) = BUF_BEGV_BYTE (b->base_buffer);
584 BUF_ZV_BYTE (b) = BUF_ZV_BYTE (b->base_buffer);
585 BUF_PT_BYTE (b) = BUF_PT_BYTE (b->base_buffer);
587 b->newline_cache = 0;
588 b->width_run_cache = 0;
589 b->width_table = Qnil;
591 /* Put this on the chain of all buffers including killed ones. */
592 b->next = all_buffers;
593 all_buffers = b;
595 name = Fcopy_sequence (name);
596 STRING_SET_INTERVALS (name, NULL_INTERVAL);
597 b->name = name;
599 reset_buffer (b);
600 reset_buffer_local_variables (b, 1);
602 /* Put this in the alist of all live buffers. */
603 XSETBUFFER (buf, b);
604 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
606 b->mark = Fmake_marker ();
607 b->name = name;
609 /* The multibyte status belongs to the base buffer. */
610 b->enable_multibyte_characters = b->base_buffer->enable_multibyte_characters;
612 /* Make sure the base buffer has markers for its narrowing. */
613 if (NILP (b->base_buffer->pt_marker))
615 b->base_buffer->pt_marker = Fmake_marker ();
616 set_marker_both (b->base_buffer->pt_marker, base_buffer,
617 BUF_PT (b->base_buffer),
618 BUF_PT_BYTE (b->base_buffer));
620 if (NILP (b->base_buffer->begv_marker))
622 b->base_buffer->begv_marker = Fmake_marker ();
623 set_marker_both (b->base_buffer->begv_marker, base_buffer,
624 BUF_BEGV (b->base_buffer),
625 BUF_BEGV_BYTE (b->base_buffer));
627 if (NILP (b->base_buffer->zv_marker))
629 b->base_buffer->zv_marker = Fmake_marker ();
630 set_marker_both (b->base_buffer->zv_marker, base_buffer,
631 BUF_ZV (b->base_buffer),
632 BUF_ZV_BYTE (b->base_buffer));
633 XMARKER (b->base_buffer->zv_marker)->insertion_type = 1;
636 if (NILP (clone))
638 /* Give the indirect buffer markers for its narrowing. */
639 b->pt_marker = Fmake_marker ();
640 set_marker_both (b->pt_marker, buf, BUF_PT (b), BUF_PT_BYTE (b));
641 b->begv_marker = Fmake_marker ();
642 set_marker_both (b->begv_marker, buf, BUF_BEGV (b), BUF_BEGV_BYTE (b));
643 b->zv_marker = Fmake_marker ();
644 set_marker_both (b->zv_marker, buf, BUF_ZV (b), BUF_ZV_BYTE (b));
645 XMARKER (b->zv_marker)->insertion_type = 1;
647 else
649 struct buffer *old_b = current_buffer;
651 clone_per_buffer_values (b->base_buffer, b);
652 b->filename = Qnil;
653 b->file_truename = Qnil;
654 b->display_count = make_number (0);
655 b->backed_up = Qnil;
656 b->auto_save_file_name = Qnil;
657 set_buffer_internal_1 (b);
658 Fset (intern ("buffer-save-without-query"), Qnil);
659 Fset (intern ("buffer-file-number"), Qnil);
660 Fset (intern ("buffer-stale-function"), Qnil);
661 set_buffer_internal_1 (old_b);
664 return buf;
667 void
668 delete_all_overlays (b)
669 struct buffer *b;
671 Lisp_Object overlay;
673 /* `reset_buffer' blindly sets the list of overlays to NULL, so we
674 have to empty the list, otherwise we end up with overlays that
675 think they belong to this buffer while the buffer doesn't know about
676 them any more. */
677 while (b->overlays_before)
679 XSETMISC (overlay, b->overlays_before);
680 Fdelete_overlay (overlay);
682 while (b->overlays_after)
684 XSETMISC (overlay, b->overlays_after);
685 Fdelete_overlay (overlay);
687 eassert (b->overlays_before == NULL);
688 eassert (b->overlays_after == NULL);
691 /* Reinitialize everything about a buffer except its name and contents
692 and local variables.
693 If called on an already-initialized buffer, the list of overlays
694 should be deleted before calling this function, otherwise we end up
695 with overlays that claim to belong to the buffer but the buffer
696 claims it doesn't belong to it. */
698 void
699 reset_buffer (b)
700 register struct buffer *b;
702 b->filename = Qnil;
703 b->file_truename = Qnil;
704 b->directory = (current_buffer) ? current_buffer->directory : Qnil;
705 b->modtime = 0;
706 XSETFASTINT (b->save_length, 0);
707 b->last_window_start = 1;
708 /* It is more conservative to start out "changed" than "unchanged". */
709 b->clip_changed = 0;
710 b->prevent_redisplay_optimizations_p = 1;
711 b->backed_up = Qnil;
712 b->auto_save_modified = 0;
713 b->auto_save_failure_time = -1;
714 b->auto_save_file_name = Qnil;
715 b->read_only = Qnil;
716 b->overlays_before = NULL;
717 b->overlays_after = NULL;
718 b->overlay_center = BEG;
719 b->mark_active = Qnil;
720 b->point_before_scroll = Qnil;
721 b->file_format = Qnil;
722 b->auto_save_file_format = Qt;
723 b->last_selected_window = Qnil;
724 XSETINT (b->display_count, 0);
725 b->display_time = Qnil;
726 b->enable_multibyte_characters = buffer_defaults.enable_multibyte_characters;
727 b->cursor_type = buffer_defaults.cursor_type;
728 b->extra_line_spacing = buffer_defaults.extra_line_spacing;
730 b->display_error_modiff = 0;
733 /* Reset buffer B's local variables info.
734 Don't use this on a buffer that has already been in use;
735 it does not treat permanent locals consistently.
736 Instead, use Fkill_all_local_variables.
738 If PERMANENT_TOO is 1, then we reset permanent built-in
739 buffer-local variables. If PERMANENT_TOO is 0,
740 we preserve those. */
742 static void
743 reset_buffer_local_variables (b, permanent_too)
744 register struct buffer *b;
745 int permanent_too;
747 register int offset;
748 int i;
750 /* Reset the major mode to Fundamental, together with all the
751 things that depend on the major mode.
752 default-major-mode is handled at a higher level.
753 We ignore it here. */
754 b->major_mode = Qfundamental_mode;
755 b->keymap = Qnil;
756 b->mode_name = QSFundamental;
757 b->minor_modes = Qnil;
759 /* If the standard case table has been altered and invalidated,
760 fix up its insides first. */
761 if (! (CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[0])
762 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[1])
763 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[2])))
764 Fset_standard_case_table (Vascii_downcase_table);
766 b->downcase_table = Vascii_downcase_table;
767 b->upcase_table = XCHAR_TABLE (Vascii_downcase_table)->extras[0];
768 b->case_canon_table = XCHAR_TABLE (Vascii_downcase_table)->extras[1];
769 b->case_eqv_table = XCHAR_TABLE (Vascii_downcase_table)->extras[2];
770 b->invisibility_spec = Qt;
771 #ifndef DOS_NT
772 b->buffer_file_type = Qnil;
773 #endif
775 /* Reset all (or most) per-buffer variables to their defaults. */
776 b->local_var_alist = Qnil;
777 for (i = 0; i < last_per_buffer_idx; ++i)
778 if (permanent_too || buffer_permanent_local_flags[i] == 0)
779 SET_PER_BUFFER_VALUE_P (b, i, 0);
781 /* For each slot that has a default value,
782 copy that into the slot. */
784 for (offset = PER_BUFFER_VAR_OFFSET (name);
785 offset < sizeof *b;
786 offset += sizeof (Lisp_Object))
788 int idx = PER_BUFFER_IDX (offset);
789 if ((idx > 0
790 && (permanent_too
791 || buffer_permanent_local_flags[idx] == 0))
792 /* Is -2 used anywhere? */
793 || idx == -2)
794 PER_BUFFER_VALUE (b, offset) = PER_BUFFER_DEFAULT (offset);
798 /* We split this away from generate-new-buffer, because rename-buffer
799 and set-visited-file-name ought to be able to use this to really
800 rename the buffer properly. */
802 DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name, Sgenerate_new_buffer_name,
803 1, 2, 0,
804 doc: /* Return a string that is the name of no existing buffer based on NAME.
805 If there is no live buffer named NAME, then return NAME.
806 Otherwise modify name by appending `<NUMBER>', incrementing NUMBER
807 \(starting at 2) until an unused name is found, and then return that name.
808 Optional second argument IGNORE specifies a name that is okay to use (if
809 it is in the sequence to be tried) even if a buffer with that name exists. */)
810 (name, ignore)
811 register Lisp_Object name, ignore;
813 register Lisp_Object gentemp, tem;
814 int count;
815 char number[10];
817 CHECK_STRING (name);
819 tem = Fstring_equal (name, ignore);
820 if (!NILP (tem))
821 return name;
822 tem = Fget_buffer (name);
823 if (NILP (tem))
824 return name;
826 count = 1;
827 while (1)
829 sprintf (number, "<%d>", ++count);
830 gentemp = concat2 (name, build_string (number));
831 tem = Fstring_equal (gentemp, ignore);
832 if (!NILP (tem))
833 return gentemp;
834 tem = Fget_buffer (gentemp);
835 if (NILP (tem))
836 return gentemp;
841 DEFUN ("buffer-name", Fbuffer_name, Sbuffer_name, 0, 1, 0,
842 doc: /* Return the name of BUFFER, as a string.
843 With no argument or nil as argument, return the name of the current buffer. */)
844 (buffer)
845 register Lisp_Object buffer;
847 if (NILP (buffer))
848 return current_buffer->name;
849 CHECK_BUFFER (buffer);
850 return XBUFFER (buffer)->name;
853 DEFUN ("buffer-file-name", Fbuffer_file_name, Sbuffer_file_name, 0, 1, 0,
854 doc: /* Return name of file BUFFER is visiting, or nil if none.
855 No argument or nil as argument means use the current buffer. */)
856 (buffer)
857 register Lisp_Object buffer;
859 if (NILP (buffer))
860 return current_buffer->filename;
861 CHECK_BUFFER (buffer);
862 return XBUFFER (buffer)->filename;
865 DEFUN ("buffer-base-buffer", Fbuffer_base_buffer, Sbuffer_base_buffer,
866 0, 1, 0,
867 doc: /* Return the base buffer of indirect buffer BUFFER.
868 If BUFFER is not indirect, return nil.
869 BUFFER defaults to the current buffer. */)
870 (buffer)
871 register Lisp_Object buffer;
873 struct buffer *base;
874 Lisp_Object base_buffer;
876 if (NILP (buffer))
877 base = current_buffer->base_buffer;
878 else
880 CHECK_BUFFER (buffer);
881 base = XBUFFER (buffer)->base_buffer;
884 if (! base)
885 return Qnil;
886 XSETBUFFER (base_buffer, base);
887 return base_buffer;
890 DEFUN ("buffer-local-value", Fbuffer_local_value,
891 Sbuffer_local_value, 2, 2, 0,
892 doc: /* Return the value of VARIABLE in BUFFER.
893 If VARIABLE does not have a buffer-local binding in BUFFER, the value
894 is the default binding of the variable. */)
895 (variable, buffer)
896 register Lisp_Object variable;
897 register Lisp_Object buffer;
899 register struct buffer *buf;
900 register Lisp_Object result;
902 CHECK_SYMBOL (variable);
903 CHECK_BUFFER (buffer);
904 buf = XBUFFER (buffer);
906 if (SYMBOLP (variable))
907 variable = indirect_variable (variable);
909 /* Look in local_var_list */
910 result = Fassoc (variable, buf->local_var_alist);
911 if (NILP (result))
913 int offset, idx;
914 int found = 0;
916 /* Look in special slots */
917 for (offset = PER_BUFFER_VAR_OFFSET (name);
918 offset < sizeof (struct buffer);
919 /* sizeof EMACS_INT == sizeof Lisp_Object */
920 offset += (sizeof (EMACS_INT)))
922 idx = PER_BUFFER_IDX (offset);
923 if ((idx == -1 || PER_BUFFER_VALUE_P (buf, idx))
924 && SYMBOLP (PER_BUFFER_SYMBOL (offset))
925 && EQ (PER_BUFFER_SYMBOL (offset), variable))
927 result = PER_BUFFER_VALUE (buf, offset);
928 found = 1;
929 break;
933 if (!found)
934 result = Fdefault_value (variable);
936 else
938 Lisp_Object valcontents;
939 Lisp_Object current_alist_element;
941 /* What binding is loaded right now? */
942 valcontents = SYMBOL_VALUE (variable);
943 current_alist_element
944 = XCAR (XBUFFER_LOCAL_VALUE (valcontents)->cdr);
946 /* The value of the currently loaded binding is not
947 stored in it, but rather in the realvalue slot.
948 Store that value into the binding it belongs to
949 in case that is the one we are about to use. */
951 Fsetcdr (current_alist_element,
952 do_symval_forwarding (XBUFFER_LOCAL_VALUE (valcontents)->realvalue));
954 /* Now get the (perhaps updated) value out of the binding. */
955 result = XCDR (result);
958 if (!EQ (result, Qunbound))
959 return result;
961 xsignal1 (Qvoid_variable, variable);
964 /* Return an alist of the Lisp-level buffer-local bindings of
965 buffer BUF. That is, don't include the variables maintained
966 in special slots in the buffer object. */
968 static Lisp_Object
969 buffer_lisp_local_variables (buf)
970 struct buffer *buf;
972 Lisp_Object result = Qnil;
973 register Lisp_Object tail;
974 for (tail = buf->local_var_alist; CONSP (tail); tail = XCDR (tail))
976 Lisp_Object val, elt;
978 elt = XCAR (tail);
980 /* Reference each variable in the alist in buf.
981 If inquiring about the current buffer, this gets the current values,
982 so store them into the alist so the alist is up to date.
983 If inquiring about some other buffer, this swaps out any values
984 for that buffer, making the alist up to date automatically. */
985 val = find_symbol_value (XCAR (elt));
986 /* Use the current buffer value only if buf is the current buffer. */
987 if (buf != current_buffer)
988 val = XCDR (elt);
990 /* If symbol is unbound, put just the symbol in the list. */
991 if (EQ (val, Qunbound))
992 result = Fcons (XCAR (elt), result);
993 /* Otherwise, put (symbol . value) in the list. */
994 else
995 result = Fcons (Fcons (XCAR (elt), val), result);
998 return result;
1001 DEFUN ("buffer-local-variables", Fbuffer_local_variables,
1002 Sbuffer_local_variables, 0, 1, 0,
1003 doc: /* Return an alist of variables that are buffer-local in BUFFER.
1004 Most elements look like (SYMBOL . VALUE), describing one variable.
1005 For a symbol that is locally unbound, just the symbol appears in the value.
1006 Note that storing new VALUEs in these elements doesn't change the variables.
1007 No argument or nil as argument means use current buffer as BUFFER. */)
1008 (buffer)
1009 register Lisp_Object buffer;
1011 register struct buffer *buf;
1012 register Lisp_Object result;
1014 if (NILP (buffer))
1015 buf = current_buffer;
1016 else
1018 CHECK_BUFFER (buffer);
1019 buf = XBUFFER (buffer);
1022 result = buffer_lisp_local_variables (buf);
1024 /* Add on all the variables stored in special slots. */
1026 int offset, idx;
1028 for (offset = PER_BUFFER_VAR_OFFSET (name);
1029 offset < sizeof (struct buffer);
1030 /* sizeof EMACS_INT == sizeof Lisp_Object */
1031 offset += (sizeof (EMACS_INT)))
1033 idx = PER_BUFFER_IDX (offset);
1034 if ((idx == -1 || PER_BUFFER_VALUE_P (buf, idx))
1035 && SYMBOLP (PER_BUFFER_SYMBOL (offset)))
1036 result = Fcons (Fcons (PER_BUFFER_SYMBOL (offset),
1037 PER_BUFFER_VALUE (buf, offset)),
1038 result);
1042 return result;
1045 DEFUN ("buffer-modified-p", Fbuffer_modified_p, Sbuffer_modified_p,
1046 0, 1, 0,
1047 doc: /* Return t if BUFFER was modified since its file was last read or saved.
1048 No argument or nil as argument means use current buffer as BUFFER. */)
1049 (buffer)
1050 register Lisp_Object buffer;
1052 register struct buffer *buf;
1053 if (NILP (buffer))
1054 buf = current_buffer;
1055 else
1057 CHECK_BUFFER (buffer);
1058 buf = XBUFFER (buffer);
1061 return BUF_SAVE_MODIFF (buf) < BUF_MODIFF (buf) ? Qt : Qnil;
1064 DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p, Sset_buffer_modified_p,
1065 1, 1, 0,
1066 doc: /* Mark current buffer as modified or unmodified according to FLAG.
1067 A non-nil FLAG means mark the buffer modified. */)
1068 (flag)
1069 register Lisp_Object flag;
1071 register int already;
1072 register Lisp_Object fn;
1073 Lisp_Object buffer, window;
1075 #ifdef CLASH_DETECTION
1076 /* If buffer becoming modified, lock the file.
1077 If buffer becoming unmodified, unlock the file. */
1079 fn = current_buffer->file_truename;
1080 /* Test buffer-file-name so that binding it to nil is effective. */
1081 if (!NILP (fn) && ! NILP (current_buffer->filename))
1083 already = SAVE_MODIFF < MODIFF;
1084 if (!already && !NILP (flag))
1085 lock_file (fn);
1086 else if (already && NILP (flag))
1087 unlock_file (fn);
1089 #endif /* CLASH_DETECTION */
1091 SAVE_MODIFF = NILP (flag) ? MODIFF : 0;
1093 /* Set update_mode_lines only if buffer is displayed in some window.
1094 Packages like jit-lock or lazy-lock preserve a buffer's modified
1095 state by recording/restoring the state around blocks of code.
1096 Setting update_mode_lines makes redisplay consider all windows
1097 (on all frames). Stealth fontification of buffers not displayed
1098 would incur additional redisplay costs if we'd set
1099 update_modes_lines unconditionally.
1101 Ideally, I think there should be another mechanism for fontifying
1102 buffers without "modifying" buffers, or redisplay should be
1103 smarter about updating the `*' in mode lines. --gerd */
1104 XSETBUFFER (buffer, current_buffer);
1105 window = Fget_buffer_window (buffer, Qt);
1106 if (WINDOWP (window))
1108 ++update_mode_lines;
1109 current_buffer->prevent_redisplay_optimizations_p = 1;
1112 return flag;
1115 DEFUN ("restore-buffer-modified-p", Frestore_buffer_modified_p,
1116 Srestore_buffer_modified_p, 1, 1, 0,
1117 doc: /* Like `set-buffer-modified-p', with a difference concerning redisplay.
1118 It is not ensured that mode lines will be updated to show the modified
1119 state of the current buffer. Use with care. */)
1120 (flag)
1121 Lisp_Object flag;
1123 #ifdef CLASH_DETECTION
1124 Lisp_Object fn;
1126 /* If buffer becoming modified, lock the file.
1127 If buffer becoming unmodified, unlock the file. */
1129 fn = current_buffer->file_truename;
1130 /* Test buffer-file-name so that binding it to nil is effective. */
1131 if (!NILP (fn) && ! NILP (current_buffer->filename))
1133 int already = SAVE_MODIFF < MODIFF;
1134 if (!already && !NILP (flag))
1135 lock_file (fn);
1136 else if (already && NILP (flag))
1137 unlock_file (fn);
1139 #endif /* CLASH_DETECTION */
1141 SAVE_MODIFF = NILP (flag) ? MODIFF : 0;
1142 return flag;
1145 DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick,
1146 0, 1, 0,
1147 doc: /* Return BUFFER's tick counter, incremented for each change in text.
1148 Each buffer has a tick counter which is incremented each time the
1149 text in that buffer is changed. It wraps around occasionally.
1150 No argument or nil as argument means use current buffer as BUFFER. */)
1151 (buffer)
1152 register Lisp_Object buffer;
1154 register struct buffer *buf;
1155 if (NILP (buffer))
1156 buf = current_buffer;
1157 else
1159 CHECK_BUFFER (buffer);
1160 buf = XBUFFER (buffer);
1163 return make_number (BUF_MODIFF (buf));
1166 DEFUN ("buffer-chars-modified-tick", Fbuffer_chars_modified_tick,
1167 Sbuffer_chars_modified_tick, 0, 1, 0,
1168 doc: /* Return BUFFER's character-change tick counter.
1169 Each buffer has a character-change tick counter, which is set to the
1170 value of the buffer's tick counter \(see `buffer-modified-tick'), each
1171 time text in that buffer is inserted or deleted. By comparing the
1172 values returned by two individual calls of `buffer-chars-modified-tick',
1173 you can tell whether a character change occurred in that buffer in
1174 between these calls. No argument or nil as argument means use current
1175 buffer as BUFFER. */)
1176 (buffer)
1177 register Lisp_Object buffer;
1179 register struct buffer *buf;
1180 if (NILP (buffer))
1181 buf = current_buffer;
1182 else
1184 CHECK_BUFFER (buffer);
1185 buf = XBUFFER (buffer);
1188 return make_number (BUF_CHARS_MODIFF (buf));
1191 DEFUN ("rename-buffer", Frename_buffer, Srename_buffer, 1, 2,
1192 "sRename buffer (to new name): \nP",
1193 doc: /* Change current buffer's name to NEWNAME (a string).
1194 If second arg UNIQUE is nil or omitted, it is an error if a
1195 buffer named NEWNAME already exists.
1196 If UNIQUE is non-nil, come up with a new name using
1197 `generate-new-buffer-name'.
1198 Interactively, you can set UNIQUE with a prefix argument.
1199 We return the name we actually gave the buffer.
1200 This does not change the name of the visited file (if any). */)
1201 (newname, unique)
1202 register Lisp_Object newname, unique;
1204 register Lisp_Object tem, buf;
1206 CHECK_STRING (newname);
1208 if (SCHARS (newname) == 0)
1209 error ("Empty string is invalid as a buffer name");
1211 tem = Fget_buffer (newname);
1212 if (!NILP (tem))
1214 /* Don't short-circuit if UNIQUE is t. That is a useful way to
1215 rename the buffer automatically so you can create another
1216 with the original name. It makes UNIQUE equivalent to
1217 (rename-buffer (generate-new-buffer-name NEWNAME)). */
1218 if (NILP (unique) && XBUFFER (tem) == current_buffer)
1219 return current_buffer->name;
1220 if (!NILP (unique))
1221 newname = Fgenerate_new_buffer_name (newname, current_buffer->name);
1222 else
1223 error ("Buffer name `%s' is in use", SDATA (newname));
1226 current_buffer->name = newname;
1228 /* Catch redisplay's attention. Unless we do this, the mode lines for
1229 any windows displaying current_buffer will stay unchanged. */
1230 update_mode_lines++;
1232 XSETBUFFER (buf, current_buffer);
1233 Fsetcar (Frassq (buf, Vbuffer_alist), newname);
1234 if (NILP (current_buffer->filename)
1235 && !NILP (current_buffer->auto_save_file_name))
1236 call0 (intern ("rename-auto-save-file"));
1237 /* Refetch since that last call may have done GC. */
1238 return current_buffer->name;
1241 DEFUN ("other-buffer", Fother_buffer, Sother_buffer, 0, 3, 0,
1242 doc: /* Return most recently selected buffer other than BUFFER.
1243 Buffers not visible in windows are preferred to visible buffers,
1244 unless optional second argument VISIBLE-OK is non-nil.
1245 If the optional third argument FRAME is non-nil, use that frame's
1246 buffer list instead of the selected frame's buffer list.
1247 If no other buffer exists, the buffer `*scratch*' is returned.
1248 If BUFFER is omitted or nil, some interesting buffer is returned. */)
1249 (buffer, visible_ok, frame)
1250 register Lisp_Object buffer, visible_ok, frame;
1252 Lisp_Object Fset_buffer_major_mode ();
1253 register Lisp_Object tail, buf, notsogood, tem, pred, add_ons;
1254 notsogood = Qnil;
1256 if (NILP (frame))
1257 frame = selected_frame;
1259 tail = Vbuffer_alist;
1260 pred = frame_buffer_predicate (frame);
1262 /* Consider buffers that have been seen in the selected frame
1263 before other buffers. */
1265 tem = frame_buffer_list (frame);
1266 add_ons = Qnil;
1267 while (CONSP (tem))
1269 if (BUFFERP (XCAR (tem)))
1270 add_ons = Fcons (Fcons (Qnil, XCAR (tem)), add_ons);
1271 tem = XCDR (tem);
1273 tail = nconc2 (Fnreverse (add_ons), tail);
1275 for (; CONSP (tail); tail = XCDR (tail))
1277 buf = Fcdr (XCAR (tail));
1278 if (EQ (buf, buffer))
1279 continue;
1280 if (NILP (buf))
1281 continue;
1282 if (NILP (XBUFFER (buf)->name))
1283 continue;
1284 if (SREF (XBUFFER (buf)->name, 0) == ' ')
1285 continue;
1286 /* If the selected frame has a buffer_predicate,
1287 disregard buffers that don't fit the predicate. */
1288 if (!NILP (pred))
1290 tem = call1 (pred, buf);
1291 if (NILP (tem))
1292 continue;
1295 if (NILP (visible_ok))
1296 tem = Fget_buffer_window (buf, Qvisible);
1297 else
1298 tem = Qnil;
1299 if (NILP (tem))
1300 return buf;
1301 if (NILP (notsogood))
1302 notsogood = buf;
1304 if (!NILP (notsogood))
1305 return notsogood;
1306 buf = Fget_buffer (build_string ("*scratch*"));
1307 if (NILP (buf))
1309 buf = Fget_buffer_create (build_string ("*scratch*"));
1310 Fset_buffer_major_mode (buf);
1312 return buf;
1315 DEFUN ("buffer-enable-undo", Fbuffer_enable_undo, Sbuffer_enable_undo,
1316 0, 1, "",
1317 doc: /* Start keeping undo information for buffer BUFFER.
1318 No argument or nil as argument means do this for the current buffer. */)
1319 (buffer)
1320 register Lisp_Object buffer;
1322 Lisp_Object real_buffer;
1324 if (NILP (buffer))
1325 XSETBUFFER (real_buffer, current_buffer);
1326 else
1328 real_buffer = Fget_buffer (buffer);
1329 if (NILP (real_buffer))
1330 nsberror (buffer);
1333 if (EQ (XBUFFER (real_buffer)->undo_list, Qt))
1334 XBUFFER (real_buffer)->undo_list = Qnil;
1336 return Qnil;
1340 DEFVAR_LISP ("kill-buffer-hook", no_cell, "\
1341 Hook to be run (by `run-hooks', which see) when a buffer is killed.\n\
1342 The buffer being killed will be current while the hook is running.\n\
1343 See `kill-buffer'."
1345 DEFUN ("kill-buffer", Fkill_buffer, Skill_buffer, 1, 1, "bKill buffer: ",
1346 doc: /* Kill the buffer BUFFER.
1347 The argument may be a buffer or the name of a buffer.
1348 With a nil argument, kill the current buffer.
1350 Value is t if the buffer is actually killed, nil otherwise.
1352 The functions in `kill-buffer-query-functions' are called with BUFFER as
1353 the current buffer. If any of them returns nil, the buffer is not killed.
1355 The hook `kill-buffer-hook' is run before the buffer is actually killed.
1356 The buffer being killed will be current while the hook is running.
1358 Any processes that have this buffer as the `process-buffer' are killed
1359 with SIGHUP. */)
1360 (buffer)
1361 Lisp_Object buffer;
1363 Lisp_Object buf;
1364 register struct buffer *b;
1365 register Lisp_Object tem;
1366 register struct Lisp_Marker *m;
1367 struct gcpro gcpro1;
1369 if (NILP (buffer))
1370 buf = Fcurrent_buffer ();
1371 else
1372 buf = Fget_buffer (buffer);
1373 if (NILP (buf))
1374 nsberror (buffer);
1376 b = XBUFFER (buf);
1378 /* Avoid trouble for buffer already dead. */
1379 if (NILP (b->name))
1380 return Qnil;
1382 /* Query if the buffer is still modified. */
1383 if (INTERACTIVE && !NILP (b->filename)
1384 && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
1386 GCPRO1 (buf);
1387 tem = do_yes_or_no_p (format2 ("Buffer %s modified; kill anyway? ",
1388 b->name, make_number (0)));
1389 UNGCPRO;
1390 if (NILP (tem))
1391 return Qnil;
1394 /* Run hooks with the buffer to be killed the current buffer. */
1396 int count = SPECPDL_INDEX ();
1397 Lisp_Object arglist[1];
1399 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1400 set_buffer_internal (b);
1402 /* First run the query functions; if any query is answered no,
1403 don't kill the buffer. */
1404 arglist[0] = Qkill_buffer_query_functions;
1405 tem = Frun_hook_with_args_until_failure (1, arglist);
1406 if (NILP (tem))
1407 return unbind_to (count, Qnil);
1409 /* Then run the hooks. */
1410 Frun_hooks (1, &Qkill_buffer_hook);
1411 unbind_to (count, Qnil);
1414 /* We have no more questions to ask. Verify that it is valid
1415 to kill the buffer. This must be done after the questions
1416 since anything can happen within do_yes_or_no_p. */
1418 /* Don't kill the minibuffer now current. */
1419 if (EQ (buf, XWINDOW (minibuf_window)->buffer))
1420 return Qnil;
1422 if (NILP (b->name))
1423 return Qnil;
1425 /* When we kill a base buffer, kill all its indirect buffers.
1426 We do it at this stage so nothing terrible happens if they
1427 ask questions or their hooks get errors. */
1428 if (! b->base_buffer)
1430 struct buffer *other;
1432 GCPRO1 (buf);
1434 for (other = all_buffers; other; other = other->next)
1435 /* all_buffers contains dead buffers too;
1436 don't re-kill them. */
1437 if (other->base_buffer == b && !NILP (other->name))
1439 Lisp_Object buf;
1440 XSETBUFFER (buf, other);
1441 Fkill_buffer (buf);
1444 UNGCPRO;
1447 /* Make this buffer not be current.
1448 In the process, notice if this is the sole visible buffer
1449 and give up if so. */
1450 if (b == current_buffer)
1452 tem = Fother_buffer (buf, Qnil, Qnil);
1453 Fset_buffer (tem);
1454 if (b == current_buffer)
1455 return Qnil;
1458 /* Notice if the buffer to kill is the sole visible buffer
1459 when we're currently in the mini-buffer, and give up if so. */
1460 XSETBUFFER (tem, current_buffer);
1461 if (EQ (tem, XWINDOW (minibuf_window)->buffer))
1463 tem = Fother_buffer (buf, Qnil, Qnil);
1464 if (EQ (buf, tem))
1465 return Qnil;
1468 /* Now there is no question: we can kill the buffer. */
1470 #ifdef CLASH_DETECTION
1471 /* Unlock this buffer's file, if it is locked. */
1472 unlock_buffer (b);
1473 #endif /* CLASH_DETECTION */
1475 GCPRO1 (buf);
1476 kill_buffer_processes (buf);
1477 UNGCPRO;
1479 /* Killing buffer processes may run sentinels which may
1480 have called kill-buffer. */
1482 if (NILP (b->name))
1483 return Qnil;
1485 clear_charpos_cache (b);
1487 tem = Vinhibit_quit;
1488 Vinhibit_quit = Qt;
1489 replace_buffer_in_all_windows (buf);
1490 Vbuffer_alist = Fdelq (Frassq (buf, Vbuffer_alist), Vbuffer_alist);
1491 frames_discard_buffer (buf);
1492 Vinhibit_quit = tem;
1494 /* Delete any auto-save file, if we saved it in this session.
1495 But not if the buffer is modified. */
1496 if (STRINGP (b->auto_save_file_name)
1497 && b->auto_save_modified != 0
1498 && BUF_SAVE_MODIFF (b) < b->auto_save_modified
1499 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
1500 && NILP (Fsymbol_value (intern ("auto-save-visited-file-name"))))
1502 Lisp_Object tem;
1503 tem = Fsymbol_value (intern ("delete-auto-save-files"));
1504 if (! NILP (tem))
1505 internal_delete_file (b->auto_save_file_name);
1508 if (b->base_buffer)
1510 /* Unchain all markers that belong to this indirect buffer.
1511 Don't unchain the markers that belong to the base buffer
1512 or its other indirect buffers. */
1513 for (m = BUF_MARKERS (b); m; )
1515 struct Lisp_Marker *next = m->next;
1516 if (m->buffer == b)
1517 unchain_marker (m);
1518 m = next;
1521 else
1523 /* Unchain all markers of this buffer and its indirect buffers.
1524 and leave them pointing nowhere. */
1525 for (m = BUF_MARKERS (b); m; )
1527 struct Lisp_Marker *next = m->next;
1528 m->buffer = 0;
1529 m->next = NULL;
1530 m = next;
1532 BUF_MARKERS (b) = NULL;
1533 BUF_INTERVALS (b) = NULL_INTERVAL;
1535 /* Perhaps we should explicitly free the interval tree here... */
1538 /* Reset the local variables, so that this buffer's local values
1539 won't be protected from GC. They would be protected
1540 if they happened to remain encached in their symbols.
1541 This gets rid of them for certain. */
1542 swap_out_buffer_local_variables (b);
1543 reset_buffer_local_variables (b, 1);
1545 b->name = Qnil;
1547 BLOCK_INPUT;
1548 if (! b->base_buffer)
1549 free_buffer_text (b);
1551 if (b->newline_cache)
1553 free_region_cache (b->newline_cache);
1554 b->newline_cache = 0;
1556 if (b->width_run_cache)
1558 free_region_cache (b->width_run_cache);
1559 b->width_run_cache = 0;
1561 b->width_table = Qnil;
1562 UNBLOCK_INPUT;
1563 b->undo_list = Qnil;
1565 return Qt;
1568 /* Move the assoc for buffer BUF to the front of buffer-alist. Since
1569 we do this each time BUF is selected visibly, the more recently
1570 selected buffers are always closer to the front of the list. This
1571 means that other_buffer is more likely to choose a relevant buffer. */
1573 void
1574 record_buffer (buf)
1575 Lisp_Object buf;
1577 register Lisp_Object link, prev;
1578 Lisp_Object frame;
1579 frame = selected_frame;
1581 prev = Qnil;
1582 for (link = Vbuffer_alist; CONSP (link); link = XCDR (link))
1584 if (EQ (XCDR (XCAR (link)), buf))
1585 break;
1586 prev = link;
1589 /* Effectively do Vbuffer_alist = Fdelq (link, Vbuffer_alist);
1590 we cannot use Fdelq itself here because it allows quitting. */
1592 if (NILP (prev))
1593 Vbuffer_alist = XCDR (Vbuffer_alist);
1594 else
1595 XSETCDR (prev, XCDR (XCDR (prev)));
1597 XSETCDR (link, Vbuffer_alist);
1598 Vbuffer_alist = link;
1600 /* Effectively do a delq on buried_buffer_list. */
1602 prev = Qnil;
1603 for (link = XFRAME (frame)->buried_buffer_list; CONSP (link);
1604 link = XCDR (link))
1606 if (EQ (XCAR (link), buf))
1608 if (NILP (prev))
1609 XFRAME (frame)->buried_buffer_list = XCDR (link);
1610 else
1611 XSETCDR (prev, XCDR (XCDR (prev)));
1612 break;
1614 prev = link;
1617 /* Now move this buffer to the front of frame_buffer_list also. */
1619 prev = Qnil;
1620 for (link = frame_buffer_list (frame); CONSP (link);
1621 link = XCDR (link))
1623 if (EQ (XCAR (link), buf))
1624 break;
1625 prev = link;
1628 /* Effectively do delq. */
1630 if (CONSP (link))
1632 if (NILP (prev))
1633 set_frame_buffer_list (frame,
1634 XCDR (frame_buffer_list (frame)));
1635 else
1636 XSETCDR (prev, XCDR (XCDR (prev)));
1638 XSETCDR (link, frame_buffer_list (frame));
1639 set_frame_buffer_list (frame, link);
1641 else
1642 set_frame_buffer_list (frame, Fcons (buf, frame_buffer_list (frame)));
1645 DEFUN ("set-buffer-major-mode", Fset_buffer_major_mode, Sset_buffer_major_mode, 1, 1, 0,
1646 doc: /* Set an appropriate major mode for BUFFER.
1647 For the *scratch* buffer, use `initial-major-mode', otherwise choose a mode
1648 according to `default-major-mode'.
1649 Use this function before selecting the buffer, since it may need to inspect
1650 the current buffer's major mode. */)
1651 (buffer)
1652 Lisp_Object buffer;
1654 int count;
1655 Lisp_Object function;
1657 CHECK_BUFFER (buffer);
1659 if (STRINGP (XBUFFER (buffer)->name)
1660 && strcmp (SDATA (XBUFFER (buffer)->name), "*scratch*") == 0)
1661 function = find_symbol_value (intern ("initial-major-mode"));
1662 else
1664 function = buffer_defaults.major_mode;
1665 if (NILP (function)
1666 && NILP (Fget (current_buffer->major_mode, Qmode_class)))
1667 function = current_buffer->major_mode;
1670 if (NILP (function) || EQ (function, Qfundamental_mode))
1671 return Qnil;
1673 count = SPECPDL_INDEX ();
1675 /* To select a nonfundamental mode,
1676 select the buffer temporarily and then call the mode function. */
1678 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1680 Fset_buffer (buffer);
1681 call0 (function);
1683 return unbind_to (count, Qnil);
1686 /* If switching buffers in WINDOW would be an error, return
1687 a C string saying what the error would be. */
1689 char *
1690 no_switch_window (window)
1691 Lisp_Object window;
1693 Lisp_Object tem;
1694 if (EQ (minibuf_window, window))
1695 return "Cannot switch buffers in minibuffer window";
1696 tem = Fwindow_dedicated_p (window);
1697 if (EQ (tem, Qt))
1698 return "Cannot switch buffers in a dedicated window";
1699 return NULL;
1702 /* Switch to buffer BUFFER in the selected window.
1703 If NORECORD is non-nil, don't call record_buffer. */
1705 Lisp_Object
1706 switch_to_buffer_1 (buffer, norecord)
1707 Lisp_Object buffer, norecord;
1709 register Lisp_Object buf;
1711 if (NILP (buffer))
1712 buf = Fother_buffer (Fcurrent_buffer (), Qnil, Qnil);
1713 else
1715 buf = Fget_buffer (buffer);
1716 if (NILP (buf))
1718 buf = Fget_buffer_create (buffer);
1719 Fset_buffer_major_mode (buf);
1722 Fset_buffer (buf);
1723 if (NILP (norecord))
1724 record_buffer (buf);
1726 Fset_window_buffer (EQ (selected_window, minibuf_window)
1727 ? Fnext_window (minibuf_window, Qnil, Qnil)
1728 : selected_window,
1729 buf, Qnil);
1731 return buf;
1734 DEFUN ("switch-to-buffer", Fswitch_to_buffer, Sswitch_to_buffer, 1, 2, "BSwitch to buffer: ",
1735 doc: /* Select buffer BUFFER in the current window.
1736 If BUFFER does not identify an existing buffer,
1737 then this function creates a buffer with that name.
1739 When called from Lisp, BUFFER may be a buffer, a string \(a buffer name),
1740 or nil. If BUFFER is nil, then this function chooses a buffer
1741 using `other-buffer'.
1742 Optional second arg NORECORD non-nil means
1743 do not put this buffer at the front of the list of recently selected ones.
1744 This function returns the buffer it switched to.
1746 WARNING: This is NOT the way to work on another buffer temporarily
1747 within a Lisp program! Use `set-buffer' instead. That avoids messing with
1748 the window-buffer correspondences. */)
1749 (buffer, norecord)
1750 Lisp_Object buffer, norecord;
1752 char *err;
1754 if (EQ (buffer, Fwindow_buffer (selected_window)))
1756 /* Basically a NOP. Avoid signalling an error in the case where
1757 the selected window is dedicated, or a minibuffer. */
1759 /* But do put this buffer at the front of the buffer list,
1760 unless that has been inhibited. Note that even if
1761 BUFFER is at the front of the main buffer-list already,
1762 we still want to move it to the front of the frame's buffer list. */
1763 if (NILP (norecord))
1764 record_buffer (buffer);
1765 return Fset_buffer (buffer);
1768 err = no_switch_window (selected_window);
1769 if (err) error (err);
1771 return switch_to_buffer_1 (buffer, norecord);
1774 DEFUN ("pop-to-buffer", Fpop_to_buffer, Spop_to_buffer, 1, 3, 0,
1775 doc: /* Select buffer BUFFER in some window, preferably a different one.
1776 BUFFER may be a buffer, a string \(a buffer name), or nil.
1777 If BUFFER is a string which is not the name of an existing buffer,
1778 then this function creates a buffer with that name.
1779 If BUFFER is nil, then it chooses some other buffer.
1780 If `pop-up-windows' is non-nil, windows can be split to do this.
1781 If optional second arg OTHER-WINDOW is non-nil, insist on finding another
1782 window even if BUFFER is already visible in the selected window,
1783 and ignore `same-window-regexps' and `same-window-buffer-names'.
1784 This function returns the buffer it switched to.
1785 This uses the function `display-buffer' as a subroutine; see the documentation
1786 of `display-buffer' for additional customization information.
1788 Optional third arg NORECORD non-nil means
1789 do not put this buffer at the front of the list of recently selected ones. */)
1790 (buffer, other_window, norecord)
1791 Lisp_Object buffer, other_window, norecord;
1793 register Lisp_Object buf;
1794 if (NILP (buffer))
1795 buf = Fother_buffer (Fcurrent_buffer (), Qnil, Qnil);
1796 else
1798 buf = Fget_buffer (buffer);
1799 if (NILP (buf))
1801 buf = Fget_buffer_create (buffer);
1802 Fset_buffer_major_mode (buf);
1805 Fset_buffer (buf);
1806 Fselect_window (Fdisplay_buffer (buf, other_window, Qnil), norecord);
1807 return buf;
1810 DEFUN ("current-buffer", Fcurrent_buffer, Scurrent_buffer, 0, 0, 0,
1811 doc: /* Return the current buffer as a Lisp object. */)
1814 register Lisp_Object buf;
1815 XSETBUFFER (buf, current_buffer);
1816 return buf;
1819 /* Set the current buffer to B.
1821 We previously set windows_or_buffers_changed here to invalidate
1822 global unchanged information in beg_unchanged and end_unchanged.
1823 This is no longer necessary because we now compute unchanged
1824 information on a buffer-basis. Every action affecting other
1825 windows than the selected one requires a select_window at some
1826 time, and that increments windows_or_buffers_changed. */
1828 void
1829 set_buffer_internal (b)
1830 register struct buffer *b;
1832 if (current_buffer != b)
1833 set_buffer_internal_1 (b);
1836 /* Set the current buffer to B, and do not set windows_or_buffers_changed.
1837 This is used by redisplay. */
1839 void
1840 set_buffer_internal_1 (b)
1841 register struct buffer *b;
1843 register struct buffer *old_buf;
1844 register Lisp_Object tail, valcontents;
1845 Lisp_Object tem;
1847 #ifdef USE_MMAP_FOR_BUFFERS
1848 if (b->text->beg == NULL)
1849 enlarge_buffer_text (b, 0);
1850 #endif /* USE_MMAP_FOR_BUFFERS */
1852 if (current_buffer == b)
1853 return;
1855 old_buf = current_buffer;
1856 current_buffer = b;
1857 last_known_column_point = -1; /* invalidate indentation cache */
1859 if (old_buf)
1861 /* Put the undo list back in the base buffer, so that it appears
1862 that an indirect buffer shares the undo list of its base. */
1863 if (old_buf->base_buffer)
1864 old_buf->base_buffer->undo_list = old_buf->undo_list;
1866 /* If the old current buffer has markers to record PT, BEGV and ZV
1867 when it is not current, update them now. */
1868 if (! NILP (old_buf->pt_marker))
1870 Lisp_Object obuf;
1871 XSETBUFFER (obuf, old_buf);
1872 set_marker_both (old_buf->pt_marker, obuf,
1873 BUF_PT (old_buf), BUF_PT_BYTE (old_buf));
1875 if (! NILP (old_buf->begv_marker))
1877 Lisp_Object obuf;
1878 XSETBUFFER (obuf, old_buf);
1879 set_marker_both (old_buf->begv_marker, obuf,
1880 BUF_BEGV (old_buf), BUF_BEGV_BYTE (old_buf));
1882 if (! NILP (old_buf->zv_marker))
1884 Lisp_Object obuf;
1885 XSETBUFFER (obuf, old_buf);
1886 set_marker_both (old_buf->zv_marker, obuf,
1887 BUF_ZV (old_buf), BUF_ZV_BYTE (old_buf));
1891 /* Get the undo list from the base buffer, so that it appears
1892 that an indirect buffer shares the undo list of its base. */
1893 if (b->base_buffer)
1894 b->undo_list = b->base_buffer->undo_list;
1896 /* If the new current buffer has markers to record PT, BEGV and ZV
1897 when it is not current, fetch them now. */
1898 if (! NILP (b->pt_marker))
1900 BUF_PT (b) = marker_position (b->pt_marker);
1901 BUF_PT_BYTE (b) = marker_byte_position (b->pt_marker);
1903 if (! NILP (b->begv_marker))
1905 BUF_BEGV (b) = marker_position (b->begv_marker);
1906 BUF_BEGV_BYTE (b) = marker_byte_position (b->begv_marker);
1908 if (! NILP (b->zv_marker))
1910 BUF_ZV (b) = marker_position (b->zv_marker);
1911 BUF_ZV_BYTE (b) = marker_byte_position (b->zv_marker);
1914 /* Look down buffer's list of local Lisp variables
1915 to find and update any that forward into C variables. */
1917 for (tail = b->local_var_alist; CONSP (tail); tail = XCDR (tail))
1919 valcontents = SYMBOL_VALUE (XCAR (XCAR (tail)));
1920 if ((BUFFER_LOCAL_VALUEP (valcontents)
1921 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
1922 && (tem = XBUFFER_LOCAL_VALUE (valcontents)->realvalue,
1923 (BOOLFWDP (tem) || INTFWDP (tem) || OBJFWDP (tem))))
1924 /* Just reference the variable
1925 to cause it to become set for this buffer. */
1926 Fsymbol_value (XCAR (XCAR (tail)));
1929 /* Do the same with any others that were local to the previous buffer */
1931 if (old_buf)
1932 for (tail = old_buf->local_var_alist; CONSP (tail); tail = XCDR (tail))
1934 valcontents = SYMBOL_VALUE (XCAR (XCAR (tail)));
1935 if ((BUFFER_LOCAL_VALUEP (valcontents)
1936 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
1937 && (tem = XBUFFER_LOCAL_VALUE (valcontents)->realvalue,
1938 (BOOLFWDP (tem) || INTFWDP (tem) || OBJFWDP (tem))))
1939 /* Just reference the variable
1940 to cause it to become set for this buffer. */
1941 Fsymbol_value (XCAR (XCAR (tail)));
1945 /* Switch to buffer B temporarily for redisplay purposes.
1946 This avoids certain things that don't need to be done within redisplay. */
1948 void
1949 set_buffer_temp (b)
1950 struct buffer *b;
1952 register struct buffer *old_buf;
1954 if (current_buffer == b)
1955 return;
1957 old_buf = current_buffer;
1958 current_buffer = b;
1960 if (old_buf)
1962 /* If the old current buffer has markers to record PT, BEGV and ZV
1963 when it is not current, update them now. */
1964 if (! NILP (old_buf->pt_marker))
1966 Lisp_Object obuf;
1967 XSETBUFFER (obuf, old_buf);
1968 set_marker_both (old_buf->pt_marker, obuf,
1969 BUF_PT (old_buf), BUF_PT_BYTE (old_buf));
1971 if (! NILP (old_buf->begv_marker))
1973 Lisp_Object obuf;
1974 XSETBUFFER (obuf, old_buf);
1975 set_marker_both (old_buf->begv_marker, obuf,
1976 BUF_BEGV (old_buf), BUF_BEGV_BYTE (old_buf));
1978 if (! NILP (old_buf->zv_marker))
1980 Lisp_Object obuf;
1981 XSETBUFFER (obuf, old_buf);
1982 set_marker_both (old_buf->zv_marker, obuf,
1983 BUF_ZV (old_buf), BUF_ZV_BYTE (old_buf));
1987 /* If the new current buffer has markers to record PT, BEGV and ZV
1988 when it is not current, fetch them now. */
1989 if (! NILP (b->pt_marker))
1991 BUF_PT (b) = marker_position (b->pt_marker);
1992 BUF_PT_BYTE (b) = marker_byte_position (b->pt_marker);
1994 if (! NILP (b->begv_marker))
1996 BUF_BEGV (b) = marker_position (b->begv_marker);
1997 BUF_BEGV_BYTE (b) = marker_byte_position (b->begv_marker);
1999 if (! NILP (b->zv_marker))
2001 BUF_ZV (b) = marker_position (b->zv_marker);
2002 BUF_ZV_BYTE (b) = marker_byte_position (b->zv_marker);
2006 DEFUN ("set-buffer", Fset_buffer, Sset_buffer, 1, 1, 0,
2007 doc: /* Make the buffer BUFFER current for editing operations.
2008 BUFFER may be a buffer or the name of an existing buffer.
2009 See also `save-excursion' when you want to make a buffer current temporarily.
2010 This function does not display the buffer, so its effect ends
2011 when the current command terminates.
2012 Use `switch-to-buffer' or `pop-to-buffer' to switch buffers permanently. */)
2013 (buffer)
2014 register Lisp_Object buffer;
2016 register Lisp_Object buf;
2017 buf = Fget_buffer (buffer);
2018 if (NILP (buf))
2019 nsberror (buffer);
2020 if (NILP (XBUFFER (buf)->name))
2021 error ("Selecting deleted buffer");
2022 set_buffer_internal (XBUFFER (buf));
2023 return buf;
2026 /* Set the current buffer to BUFFER provided it is alive. */
2028 Lisp_Object
2029 set_buffer_if_live (buffer)
2030 Lisp_Object buffer;
2032 if (! NILP (XBUFFER (buffer)->name))
2033 Fset_buffer (buffer);
2034 return Qnil;
2037 DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only,
2038 Sbarf_if_buffer_read_only, 0, 0, 0,
2039 doc: /* Signal a `buffer-read-only' error if the current buffer is read-only. */)
2042 if (!NILP (current_buffer->read_only)
2043 && NILP (Vinhibit_read_only))
2044 xsignal1 (Qbuffer_read_only, Fcurrent_buffer ());
2045 return Qnil;
2048 DEFUN ("bury-buffer", Fbury_buffer, Sbury_buffer, 0, 1, "",
2049 doc: /* Put BUFFER at the end of the list of all buffers.
2050 There it is the least likely candidate for `other-buffer' to return;
2051 thus, the least likely buffer for \\[switch-to-buffer] to select by default.
2052 You can specify a buffer name as BUFFER, or an actual buffer object.
2053 If BUFFER is nil or omitted, bury the current buffer.
2054 Also, if BUFFER is nil or omitted, remove the current buffer from the
2055 selected window if it is displayed there. */)
2056 (buffer)
2057 register Lisp_Object buffer;
2059 /* Figure out what buffer we're going to bury. */
2060 if (NILP (buffer))
2062 Lisp_Object tem;
2063 XSETBUFFER (buffer, current_buffer);
2065 tem = Fwindow_buffer (selected_window);
2066 /* If we're burying the current buffer, unshow it. */
2067 if (EQ (buffer, tem))
2069 if (NILP (Fwindow_dedicated_p (selected_window)))
2070 Fswitch_to_buffer (Fother_buffer (buffer, Qnil, Qnil), Qnil);
2071 else if (NILP (XWINDOW (selected_window)->parent))
2072 Ficonify_frame (Fwindow_frame (selected_window));
2073 else
2074 Fdelete_window (selected_window);
2077 else
2079 Lisp_Object buf1;
2081 buf1 = Fget_buffer (buffer);
2082 if (NILP (buf1))
2083 nsberror (buffer);
2084 buffer = buf1;
2087 /* Move buffer to the end of the buffer list. Do nothing if the
2088 buffer is killed. */
2089 if (!NILP (XBUFFER (buffer)->name))
2091 Lisp_Object aelt, link;
2093 aelt = Frassq (buffer, Vbuffer_alist);
2094 link = Fmemq (aelt, Vbuffer_alist);
2095 Vbuffer_alist = Fdelq (aelt, Vbuffer_alist);
2096 XSETCDR (link, Qnil);
2097 Vbuffer_alist = nconc2 (Vbuffer_alist, link);
2099 XFRAME (selected_frame)->buffer_list
2100 = Fdelq (buffer, XFRAME (selected_frame)->buffer_list);
2101 XFRAME (selected_frame)->buried_buffer_list
2102 = Fcons (buffer, Fdelq (buffer, XFRAME (selected_frame)->buried_buffer_list));
2105 return Qnil;
2108 DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*",
2109 doc: /* Delete the entire contents of the current buffer.
2110 Any narrowing restriction in effect (see `narrow-to-region') is removed,
2111 so the buffer is truly empty after this. */)
2114 Fwiden ();
2116 del_range (BEG, Z);
2118 current_buffer->last_window_start = 1;
2119 /* Prevent warnings, or suspension of auto saving, that would happen
2120 if future size is less than past size. Use of erase-buffer
2121 implies that the future text is not really related to the past text. */
2122 XSETFASTINT (current_buffer->save_length, 0);
2123 return Qnil;
2126 void
2127 validate_region (b, e)
2128 register Lisp_Object *b, *e;
2130 CHECK_NUMBER_COERCE_MARKER (*b);
2131 CHECK_NUMBER_COERCE_MARKER (*e);
2133 if (XINT (*b) > XINT (*e))
2135 Lisp_Object tem;
2136 tem = *b; *b = *e; *e = tem;
2139 if (!(BEGV <= XINT (*b) && XINT (*b) <= XINT (*e)
2140 && XINT (*e) <= ZV))
2141 args_out_of_range (*b, *e);
2144 /* Advance BYTE_POS up to a character boundary
2145 and return the adjusted position. */
2147 static int
2148 advance_to_char_boundary (byte_pos)
2149 int byte_pos;
2151 int c;
2153 if (byte_pos == BEG)
2154 /* Beginning of buffer is always a character boundary. */
2155 return BEG;
2157 c = FETCH_BYTE (byte_pos);
2158 if (! CHAR_HEAD_P (c))
2160 /* We should advance BYTE_POS only when C is a constituent of a
2161 multibyte sequence. */
2162 int orig_byte_pos = byte_pos;
2166 byte_pos--;
2167 c = FETCH_BYTE (byte_pos);
2169 while (! CHAR_HEAD_P (c) && byte_pos > BEG);
2170 INC_POS (byte_pos);
2171 if (byte_pos < orig_byte_pos)
2172 byte_pos = orig_byte_pos;
2173 /* If C is a constituent of a multibyte sequence, BYTE_POS was
2174 surely advance to the correct character boundary. If C is
2175 not, BYTE_POS was unchanged. */
2178 return byte_pos;
2181 DEFUN ("set-buffer-multibyte", Fset_buffer_multibyte, Sset_buffer_multibyte,
2182 1, 1, 0,
2183 doc: /* Set the multibyte flag of the current buffer to FLAG.
2184 If FLAG is t, this makes the buffer a multibyte buffer.
2185 If FLAG is nil, this makes the buffer a single-byte buffer.
2186 The buffer contents remain unchanged as a sequence of bytes
2187 but the contents viewed as characters do change.
2188 If the multibyte flag was really changed, undo information of the
2189 current buffer is cleared. */)
2190 (flag)
2191 Lisp_Object flag;
2193 struct Lisp_Marker *tail, *markers;
2194 struct buffer *other;
2195 int begv, zv;
2196 int narrowed = (BEG != BEGV || Z != ZV);
2197 int modified_p = !NILP (Fbuffer_modified_p (Qnil));
2198 Lisp_Object old_undo = current_buffer->undo_list;
2199 struct gcpro gcpro1;
2201 if (current_buffer->base_buffer)
2202 error ("Cannot do `set-buffer-multibyte' on an indirect buffer");
2204 /* Do nothing if nothing actually changes. */
2205 if (NILP (flag) == NILP (current_buffer->enable_multibyte_characters))
2206 return flag;
2208 GCPRO1 (old_undo);
2210 /* Don't record these buffer changes. We will put a special undo entry
2211 instead. */
2212 current_buffer->undo_list = Qt;
2214 /* If the cached position is for this buffer, clear it out. */
2215 clear_charpos_cache (current_buffer);
2217 if (NILP (flag))
2218 begv = BEGV_BYTE, zv = ZV_BYTE;
2219 else
2220 begv = BEGV, zv = ZV;
2222 if (narrowed)
2223 Fwiden ();
2225 if (NILP (flag))
2227 int pos, stop;
2228 unsigned char *p;
2230 /* Do this first, so it can use CHAR_TO_BYTE
2231 to calculate the old correspondences. */
2232 set_intervals_multibyte (0);
2234 current_buffer->enable_multibyte_characters = Qnil;
2236 Z = Z_BYTE;
2237 BEGV = BEGV_BYTE;
2238 ZV = ZV_BYTE;
2239 GPT = GPT_BYTE;
2240 TEMP_SET_PT_BOTH (PT_BYTE, PT_BYTE);
2243 for (tail = BUF_MARKERS (current_buffer); tail; tail = tail->next)
2244 tail->charpos = tail->bytepos;
2246 /* Convert multibyte form of 8-bit characters to unibyte. */
2247 pos = BEG;
2248 stop = GPT;
2249 p = BEG_ADDR;
2250 while (1)
2252 int c, bytes;
2254 if (pos == stop)
2256 if (pos == Z)
2257 break;
2258 p = GAP_END_ADDR;
2259 stop = Z;
2261 if (MULTIBYTE_STR_AS_UNIBYTE_P (p, bytes))
2262 p += bytes, pos += bytes;
2263 else
2265 c = STRING_CHAR (p, stop - pos);
2266 /* Delete all bytes for this 8-bit character but the
2267 last one, and change the last one to the charcter
2268 code. */
2269 bytes--;
2270 del_range_2 (pos, pos, pos + bytes, pos + bytes, 0);
2271 p = GAP_END_ADDR;
2272 *p++ = c;
2273 pos++;
2274 if (begv > pos)
2275 begv -= bytes;
2276 if (zv > pos)
2277 zv -= bytes;
2278 stop = Z;
2281 if (narrowed)
2282 Fnarrow_to_region (make_number (begv), make_number (zv));
2284 else
2286 int pt = PT;
2287 int pos, stop;
2288 unsigned char *p;
2290 /* Be sure not to have a multibyte sequence striding over the GAP.
2291 Ex: We change this: "...abc\201 _GAP_ \241def..."
2292 to: "...abc _GAP_ \201\241def..." */
2294 if (GPT_BYTE > 1 && GPT_BYTE < Z_BYTE
2295 && ! CHAR_HEAD_P (*(GAP_END_ADDR)))
2297 unsigned char *p = GPT_ADDR - 1;
2299 while (! CHAR_HEAD_P (*p) && p > BEG_ADDR) p--;
2300 if (BASE_LEADING_CODE_P (*p))
2302 int new_gpt = GPT_BYTE - (GPT_ADDR - p);
2304 move_gap_both (new_gpt, new_gpt);
2308 /* Make the buffer contents valid as multibyte by converting
2309 8-bit characters to multibyte form. */
2310 pos = BEG;
2311 stop = GPT;
2312 p = BEG_ADDR;
2313 while (1)
2315 int bytes;
2317 if (pos == stop)
2319 if (pos == Z)
2320 break;
2321 p = GAP_END_ADDR;
2322 stop = Z;
2325 if (UNIBYTE_STR_AS_MULTIBYTE_P (p, stop - pos, bytes))
2326 p += bytes, pos += bytes;
2327 else
2329 unsigned char tmp[MAX_MULTIBYTE_LENGTH];
2331 bytes = CHAR_STRING (*p, tmp);
2332 *p = tmp[0];
2333 TEMP_SET_PT_BOTH (pos + 1, pos + 1);
2334 bytes--;
2335 insert_1_both (tmp + 1, bytes, bytes, 1, 0, 0);
2336 /* Now the gap is after the just inserted data. */
2337 pos = GPT;
2338 p = GAP_END_ADDR;
2339 if (pos <= begv)
2340 begv += bytes;
2341 if (pos <= zv)
2342 zv += bytes;
2343 if (pos <= pt)
2344 pt += bytes;
2345 stop = Z;
2349 if (pt != PT)
2350 TEMP_SET_PT (pt);
2352 if (narrowed)
2353 Fnarrow_to_region (make_number (begv), make_number (zv));
2355 /* Do this first, so that chars_in_text asks the right question.
2356 set_intervals_multibyte needs it too. */
2357 current_buffer->enable_multibyte_characters = Qt;
2359 GPT_BYTE = advance_to_char_boundary (GPT_BYTE);
2360 GPT = chars_in_text (BEG_ADDR, GPT_BYTE - BEG_BYTE) + BEG;
2362 Z = chars_in_text (GAP_END_ADDR, Z_BYTE - GPT_BYTE) + GPT;
2364 BEGV_BYTE = advance_to_char_boundary (BEGV_BYTE);
2365 if (BEGV_BYTE > GPT_BYTE)
2366 BEGV = chars_in_text (GAP_END_ADDR, BEGV_BYTE - GPT_BYTE) + GPT;
2367 else
2368 BEGV = chars_in_text (BEG_ADDR, BEGV_BYTE - BEG_BYTE) + BEG;
2370 ZV_BYTE = advance_to_char_boundary (ZV_BYTE);
2371 if (ZV_BYTE > GPT_BYTE)
2372 ZV = chars_in_text (GAP_END_ADDR, ZV_BYTE - GPT_BYTE) + GPT;
2373 else
2374 ZV = chars_in_text (BEG_ADDR, ZV_BYTE - BEG_BYTE) + BEG;
2377 int pt_byte = advance_to_char_boundary (PT_BYTE);
2378 int pt;
2380 if (pt_byte > GPT_BYTE)
2381 pt = chars_in_text (GAP_END_ADDR, pt_byte - GPT_BYTE) + GPT;
2382 else
2383 pt = chars_in_text (BEG_ADDR, pt_byte - BEG_BYTE) + BEG;
2384 TEMP_SET_PT_BOTH (pt, pt_byte);
2387 tail = markers = BUF_MARKERS (current_buffer);
2389 /* This prevents BYTE_TO_CHAR (that is, buf_bytepos_to_charpos) from
2390 getting confused by the markers that have not yet been updated.
2391 It is also a signal that it should never create a marker. */
2392 BUF_MARKERS (current_buffer) = NULL;
2394 for (; tail; tail = tail->next)
2396 tail->bytepos = advance_to_char_boundary (tail->bytepos);
2397 tail->charpos = BYTE_TO_CHAR (tail->bytepos);
2400 /* Make sure no markers were put on the chain
2401 while the chain value was incorrect. */
2402 if (BUF_MARKERS (current_buffer))
2403 abort ();
2405 BUF_MARKERS (current_buffer) = markers;
2407 /* Do this last, so it can calculate the new correspondences
2408 between chars and bytes. */
2409 set_intervals_multibyte (1);
2412 if (!EQ (old_undo, Qt))
2414 /* Represent all the above changes by a special undo entry. */
2415 extern Lisp_Object Qapply;
2416 current_buffer->undo_list = Fcons (list3 (Qapply,
2417 intern ("set-buffer-multibyte"),
2418 NILP (flag) ? Qt : Qnil),
2419 old_undo);
2422 UNGCPRO;
2424 /* Changing the multibyteness of a buffer means that all windows
2425 showing that buffer must be updated thoroughly. */
2426 current_buffer->prevent_redisplay_optimizations_p = 1;
2427 ++windows_or_buffers_changed;
2429 /* Copy this buffer's new multibyte status
2430 into all of its indirect buffers. */
2431 for (other = all_buffers; other; other = other->next)
2432 if (other->base_buffer == current_buffer && !NILP (other->name))
2434 other->enable_multibyte_characters
2435 = current_buffer->enable_multibyte_characters;
2436 other->prevent_redisplay_optimizations_p = 1;
2439 /* Restore the modifiedness of the buffer. */
2440 if (!modified_p && !NILP (Fbuffer_modified_p (Qnil)))
2441 Fset_buffer_modified_p (Qnil);
2443 #ifdef subprocesses
2444 /* Update coding systems of this buffer's process (if any). */
2446 Lisp_Object process;
2448 process = Fget_buffer_process (Fcurrent_buffer ());
2449 if (PROCESSP (process))
2450 setup_process_coding_systems (process);
2452 #endif /* subprocesses */
2454 return flag;
2457 DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables,
2458 0, 0, 0,
2459 doc: /* Switch to Fundamental mode by killing current buffer's local variables.
2460 Most local variable bindings are eliminated so that the default values
2461 become effective once more. Also, the syntax table is set from
2462 `standard-syntax-table', the local keymap is set to nil,
2463 and the abbrev table from `fundamental-mode-abbrev-table'.
2464 This function also forces redisplay of the mode line.
2466 Every function to select a new major mode starts by
2467 calling this function.
2469 As a special exception, local variables whose names have
2470 a non-nil `permanent-local' property are not eliminated by this function.
2472 The first thing this function does is run
2473 the normal hook `change-major-mode-hook'. */)
2476 register Lisp_Object alist, sym, tem;
2477 Lisp_Object oalist;
2479 if (!NILP (Vrun_hooks))
2480 call1 (Vrun_hooks, Qchange_major_mode_hook);
2481 oalist = current_buffer->local_var_alist;
2483 /* Make sure none of the bindings in oalist
2484 remain swapped in, in their symbols. */
2486 swap_out_buffer_local_variables (current_buffer);
2488 /* Actually eliminate all local bindings of this buffer. */
2490 reset_buffer_local_variables (current_buffer, 0);
2492 /* Any which are supposed to be permanent,
2493 make local again, with the same values they had. */
2495 for (alist = oalist; !NILP (alist); alist = XCDR (alist))
2497 sym = XCAR (XCAR (alist));
2498 tem = Fget (sym, Qpermanent_local);
2499 if (! NILP (tem))
2501 Fmake_local_variable (sym);
2502 Fset (sym, XCDR (XCAR (alist)));
2506 /* Force mode-line redisplay. Useful here because all major mode
2507 commands call this function. */
2508 update_mode_lines++;
2510 return Qnil;
2513 /* Make sure no local variables remain set up with buffer B
2514 for their current values. */
2516 static void
2517 swap_out_buffer_local_variables (b)
2518 struct buffer *b;
2520 Lisp_Object oalist, alist, sym, tem, buffer;
2522 XSETBUFFER (buffer, b);
2523 oalist = b->local_var_alist;
2525 for (alist = oalist; !NILP (alist); alist = XCDR (alist))
2527 sym = XCAR (XCAR (alist));
2529 /* Need not do anything if some other buffer's binding is now encached. */
2530 tem = XBUFFER_LOCAL_VALUE (SYMBOL_VALUE (sym))->buffer;
2531 if (BUFFERP (tem) && XBUFFER (tem) == current_buffer)
2533 /* Symbol is set up for this buffer's old local value.
2534 Set it up for the current buffer with the default value. */
2536 tem = XBUFFER_LOCAL_VALUE (SYMBOL_VALUE (sym))->cdr;
2537 /* Store the symbol's current value into the alist entry
2538 it is currently set up for. This is so that, if the
2539 local is marked permanent, and we make it local again
2540 later in Fkill_all_local_variables, we don't lose the value. */
2541 XSETCDR (XCAR (tem),
2542 do_symval_forwarding (XBUFFER_LOCAL_VALUE (SYMBOL_VALUE (sym))->realvalue));
2543 /* Switch to the symbol's default-value alist entry. */
2544 XSETCAR (tem, tem);
2545 /* Mark it as current for buffer B. */
2546 XBUFFER_LOCAL_VALUE (SYMBOL_VALUE (sym))->buffer = buffer;
2547 /* Store the current value into any forwarding in the symbol. */
2548 store_symval_forwarding (sym,
2549 XBUFFER_LOCAL_VALUE (SYMBOL_VALUE (sym))->realvalue,
2550 XCDR (tem), NULL);
2555 /* Find all the overlays in the current buffer that contain position POS.
2556 Return the number found, and store them in a vector in *VEC_PTR.
2557 Store in *LEN_PTR the size allocated for the vector.
2558 Store in *NEXT_PTR the next position after POS where an overlay starts,
2559 or ZV if there are no more overlays between POS and ZV.
2560 Store in *PREV_PTR the previous position before POS where an overlay ends,
2561 or where an overlay starts which ends at or after POS;
2562 or BEGV if there are no such overlays from BEGV to POS.
2563 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2565 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2566 when this function is called.
2568 If EXTEND is non-zero, we make the vector bigger if necessary.
2569 If EXTEND is zero, we never extend the vector,
2570 and we store only as many overlays as will fit.
2571 But we still return the total number of overlays.
2573 If CHANGE_REQ is true, then any position written into *PREV_PTR or
2574 *NEXT_PTR is guaranteed to be not equal to POS, unless it is the
2575 default (BEGV or ZV). */
2578 overlays_at (pos, extend, vec_ptr, len_ptr, next_ptr, prev_ptr, change_req)
2579 EMACS_INT pos;
2580 int extend;
2581 Lisp_Object **vec_ptr;
2582 int *len_ptr;
2583 int *next_ptr;
2584 int *prev_ptr;
2585 int change_req;
2587 Lisp_Object overlay, start, end;
2588 struct Lisp_Overlay *tail;
2589 int idx = 0;
2590 int len = *len_ptr;
2591 Lisp_Object *vec = *vec_ptr;
2592 int next = ZV;
2593 int prev = BEGV;
2594 int inhibit_storing = 0;
2596 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
2598 int startpos, endpos;
2600 XSETMISC (overlay, tail);
2602 start = OVERLAY_START (overlay);
2603 end = OVERLAY_END (overlay);
2604 endpos = OVERLAY_POSITION (end);
2605 if (endpos < pos)
2607 if (prev < endpos)
2608 prev = endpos;
2609 break;
2611 startpos = OVERLAY_POSITION (start);
2612 /* This one ends at or after POS
2613 so its start counts for PREV_PTR if it's before POS. */
2614 if (prev < startpos && startpos < pos)
2615 prev = startpos;
2616 if (endpos == pos)
2617 continue;
2618 if (startpos <= pos)
2620 if (idx == len)
2622 /* The supplied vector is full.
2623 Either make it bigger, or don't store any more in it. */
2624 if (extend)
2626 /* Make it work with an initial len == 0. */
2627 len *= 2;
2628 if (len == 0)
2629 len = 4;
2630 *len_ptr = len;
2631 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2632 *vec_ptr = vec;
2634 else
2635 inhibit_storing = 1;
2638 if (!inhibit_storing)
2639 vec[idx] = overlay;
2640 /* Keep counting overlays even if we can't return them all. */
2641 idx++;
2643 else if (startpos < next)
2644 next = startpos;
2647 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
2649 int startpos, endpos;
2651 XSETMISC (overlay, tail);
2653 start = OVERLAY_START (overlay);
2654 end = OVERLAY_END (overlay);
2655 startpos = OVERLAY_POSITION (start);
2656 if (pos < startpos)
2658 if (startpos < next)
2659 next = startpos;
2660 break;
2662 endpos = OVERLAY_POSITION (end);
2663 if (pos < endpos)
2665 if (idx == len)
2667 if (extend)
2669 /* Make it work with an initial len == 0. */
2670 len *= 2;
2671 if (len == 0)
2672 len = 4;
2673 *len_ptr = len;
2674 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2675 *vec_ptr = vec;
2677 else
2678 inhibit_storing = 1;
2681 if (!inhibit_storing)
2682 vec[idx] = overlay;
2683 idx++;
2685 if (startpos < pos && startpos > prev)
2686 prev = startpos;
2688 else if (endpos < pos && endpos > prev)
2689 prev = endpos;
2690 else if (endpos == pos && startpos > prev
2691 && (!change_req || startpos < pos))
2692 prev = startpos;
2695 if (next_ptr)
2696 *next_ptr = next;
2697 if (prev_ptr)
2698 *prev_ptr = prev;
2699 return idx;
2702 /* Find all the overlays in the current buffer that overlap the range BEG-END
2703 or are empty at BEG.
2705 Return the number found, and store them in a vector in *VEC_PTR.
2706 Store in *LEN_PTR the size allocated for the vector.
2707 Store in *NEXT_PTR the next position after POS where an overlay starts,
2708 or ZV if there are no more overlays.
2709 Store in *PREV_PTR the previous position before POS where an overlay ends,
2710 or BEGV if there are no previous overlays.
2711 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2713 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2714 when this function is called.
2716 If EXTEND is non-zero, we make the vector bigger if necessary.
2717 If EXTEND is zero, we never extend the vector,
2718 and we store only as many overlays as will fit.
2719 But we still return the total number of overlays. */
2721 static int
2722 overlays_in (beg, end, extend, vec_ptr, len_ptr, next_ptr, prev_ptr)
2723 int beg, end;
2724 int extend;
2725 Lisp_Object **vec_ptr;
2726 int *len_ptr;
2727 int *next_ptr;
2728 int *prev_ptr;
2730 Lisp_Object overlay, ostart, oend;
2731 struct Lisp_Overlay *tail;
2732 int idx = 0;
2733 int len = *len_ptr;
2734 Lisp_Object *vec = *vec_ptr;
2735 int next = ZV;
2736 int prev = BEGV;
2737 int inhibit_storing = 0;
2739 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
2741 int startpos, endpos;
2743 XSETMISC (overlay, tail);
2745 ostart = OVERLAY_START (overlay);
2746 oend = OVERLAY_END (overlay);
2747 endpos = OVERLAY_POSITION (oend);
2748 if (endpos < beg)
2750 if (prev < endpos)
2751 prev = endpos;
2752 break;
2754 startpos = OVERLAY_POSITION (ostart);
2755 /* Count an interval if it either overlaps the range
2756 or is empty at the start of the range. */
2757 if ((beg < endpos && startpos < end)
2758 || (startpos == endpos && beg == endpos))
2760 if (idx == len)
2762 /* The supplied vector is full.
2763 Either make it bigger, or don't store any more in it. */
2764 if (extend)
2766 /* Make it work with an initial len == 0. */
2767 len *= 2;
2768 if (len == 0)
2769 len = 4;
2770 *len_ptr = len;
2771 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2772 *vec_ptr = vec;
2774 else
2775 inhibit_storing = 1;
2778 if (!inhibit_storing)
2779 vec[idx] = overlay;
2780 /* Keep counting overlays even if we can't return them all. */
2781 idx++;
2783 else if (startpos < next)
2784 next = startpos;
2787 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
2789 int startpos, endpos;
2791 XSETMISC (overlay, tail);
2793 ostart = OVERLAY_START (overlay);
2794 oend = OVERLAY_END (overlay);
2795 startpos = OVERLAY_POSITION (ostart);
2796 if (end < startpos)
2798 if (startpos < next)
2799 next = startpos;
2800 break;
2802 endpos = OVERLAY_POSITION (oend);
2803 /* Count an interval if it either overlaps the range
2804 or is empty at the start of the range. */
2805 if ((beg < endpos && startpos < end)
2806 || (startpos == endpos && beg == endpos))
2808 if (idx == len)
2810 if (extend)
2812 /* Make it work with an initial len == 0. */
2813 len *= 2;
2814 if (len == 0)
2815 len = 4;
2816 *len_ptr = len;
2817 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2818 *vec_ptr = vec;
2820 else
2821 inhibit_storing = 1;
2824 if (!inhibit_storing)
2825 vec[idx] = overlay;
2826 idx++;
2828 else if (endpos < beg && endpos > prev)
2829 prev = endpos;
2832 if (next_ptr)
2833 *next_ptr = next;
2834 if (prev_ptr)
2835 *prev_ptr = prev;
2836 return idx;
2840 /* Return non-zero if there exists an overlay with a non-nil
2841 `mouse-face' property overlapping OVERLAY. */
2844 mouse_face_overlay_overlaps (overlay)
2845 Lisp_Object overlay;
2847 int start = OVERLAY_POSITION (OVERLAY_START (overlay));
2848 int end = OVERLAY_POSITION (OVERLAY_END (overlay));
2849 int n, i, size;
2850 Lisp_Object *v, tem;
2852 size = 10;
2853 v = (Lisp_Object *) alloca (size * sizeof *v);
2854 n = overlays_in (start, end, 0, &v, &size, NULL, NULL);
2855 if (n > size)
2857 v = (Lisp_Object *) alloca (n * sizeof *v);
2858 overlays_in (start, end, 0, &v, &n, NULL, NULL);
2861 for (i = 0; i < n; ++i)
2862 if (!EQ (v[i], overlay)
2863 && (tem = Foverlay_get (overlay, Qmouse_face),
2864 !NILP (tem)))
2865 break;
2867 return i < n;
2872 /* Fast function to just test if we're at an overlay boundary. */
2874 overlay_touches_p (pos)
2875 int pos;
2877 Lisp_Object overlay;
2878 struct Lisp_Overlay *tail;
2880 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
2882 int endpos;
2884 XSETMISC (overlay ,tail);
2885 if (!GC_OVERLAYP (overlay))
2886 abort ();
2888 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2889 if (endpos < pos)
2890 break;
2891 if (endpos == pos || OVERLAY_POSITION (OVERLAY_START (overlay)) == pos)
2892 return 1;
2895 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
2897 int startpos;
2899 XSETMISC (overlay, tail);
2900 if (!GC_OVERLAYP (overlay))
2901 abort ();
2903 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2904 if (pos < startpos)
2905 break;
2906 if (startpos == pos || OVERLAY_POSITION (OVERLAY_END (overlay)) == pos)
2907 return 1;
2909 return 0;
2912 struct sortvec
2914 Lisp_Object overlay;
2915 int beg, end;
2916 int priority;
2919 static int
2920 compare_overlays (v1, v2)
2921 const void *v1, *v2;
2923 const struct sortvec *s1 = (const struct sortvec *) v1;
2924 const struct sortvec *s2 = (const struct sortvec *) v2;
2925 if (s1->priority != s2->priority)
2926 return s1->priority - s2->priority;
2927 if (s1->beg != s2->beg)
2928 return s1->beg - s2->beg;
2929 if (s1->end != s2->end)
2930 return s2->end - s1->end;
2931 return 0;
2934 /* Sort an array of overlays by priority. The array is modified in place.
2935 The return value is the new size; this may be smaller than the original
2936 size if some of the overlays were invalid or were window-specific. */
2938 sort_overlays (overlay_vec, noverlays, w)
2939 Lisp_Object *overlay_vec;
2940 int noverlays;
2941 struct window *w;
2943 int i, j;
2944 struct sortvec *sortvec;
2945 sortvec = (struct sortvec *) alloca (noverlays * sizeof (struct sortvec));
2947 /* Put the valid and relevant overlays into sortvec. */
2949 for (i = 0, j = 0; i < noverlays; i++)
2951 Lisp_Object tem;
2952 Lisp_Object overlay;
2954 overlay = overlay_vec[i];
2955 if (OVERLAY_VALID (overlay)
2956 && OVERLAY_POSITION (OVERLAY_START (overlay)) > 0
2957 && OVERLAY_POSITION (OVERLAY_END (overlay)) > 0)
2959 /* If we're interested in a specific window, then ignore
2960 overlays that are limited to some other window. */
2961 if (w)
2963 Lisp_Object window;
2965 window = Foverlay_get (overlay, Qwindow);
2966 if (WINDOWP (window) && XWINDOW (window) != w)
2967 continue;
2970 /* This overlay is good and counts: put it into sortvec. */
2971 sortvec[j].overlay = overlay;
2972 sortvec[j].beg = OVERLAY_POSITION (OVERLAY_START (overlay));
2973 sortvec[j].end = OVERLAY_POSITION (OVERLAY_END (overlay));
2974 tem = Foverlay_get (overlay, Qpriority);
2975 if (INTEGERP (tem))
2976 sortvec[j].priority = XINT (tem);
2977 else
2978 sortvec[j].priority = 0;
2979 j++;
2982 noverlays = j;
2984 /* Sort the overlays into the proper order: increasing priority. */
2986 if (noverlays > 1)
2987 qsort (sortvec, noverlays, sizeof (struct sortvec), compare_overlays);
2989 for (i = 0; i < noverlays; i++)
2990 overlay_vec[i] = sortvec[i].overlay;
2991 return (noverlays);
2994 struct sortstr
2996 Lisp_Object string, string2;
2997 int size;
2998 int priority;
3001 struct sortstrlist
3003 struct sortstr *buf; /* An array that expands as needed; never freed. */
3004 int size; /* Allocated length of that array. */
3005 int used; /* How much of the array is currently in use. */
3006 int bytes; /* Total length of the strings in buf. */
3009 /* Buffers for storing information about the overlays touching a given
3010 position. These could be automatic variables in overlay_strings, but
3011 it's more efficient to hold onto the memory instead of repeatedly
3012 allocating and freeing it. */
3013 static struct sortstrlist overlay_heads, overlay_tails;
3014 static unsigned char *overlay_str_buf;
3016 /* Allocated length of overlay_str_buf. */
3017 static int overlay_str_len;
3019 /* A comparison function suitable for passing to qsort. */
3020 static int
3021 cmp_for_strings (as1, as2)
3022 char *as1, *as2;
3024 struct sortstr *s1 = (struct sortstr *)as1;
3025 struct sortstr *s2 = (struct sortstr *)as2;
3026 if (s1->size != s2->size)
3027 return s2->size - s1->size;
3028 if (s1->priority != s2->priority)
3029 return s1->priority - s2->priority;
3030 return 0;
3033 static void
3034 record_overlay_string (ssl, str, str2, pri, size)
3035 struct sortstrlist *ssl;
3036 Lisp_Object str, str2, pri;
3037 int size;
3039 int nbytes;
3041 if (ssl->used == ssl->size)
3043 if (ssl->buf)
3044 ssl->size *= 2;
3045 else
3046 ssl->size = 5;
3047 ssl->buf = ((struct sortstr *)
3048 xrealloc (ssl->buf, ssl->size * sizeof (struct sortstr)));
3050 ssl->buf[ssl->used].string = str;
3051 ssl->buf[ssl->used].string2 = str2;
3052 ssl->buf[ssl->used].size = size;
3053 ssl->buf[ssl->used].priority = (INTEGERP (pri) ? XINT (pri) : 0);
3054 ssl->used++;
3056 if (NILP (current_buffer->enable_multibyte_characters))
3057 nbytes = SCHARS (str);
3058 else if (! STRING_MULTIBYTE (str))
3059 nbytes = count_size_as_multibyte (SDATA (str),
3060 SBYTES (str));
3061 else
3062 nbytes = SBYTES (str);
3064 ssl->bytes += nbytes;
3066 if (STRINGP (str2))
3068 if (NILP (current_buffer->enable_multibyte_characters))
3069 nbytes = SCHARS (str2);
3070 else if (! STRING_MULTIBYTE (str2))
3071 nbytes = count_size_as_multibyte (SDATA (str2),
3072 SBYTES (str2));
3073 else
3074 nbytes = SBYTES (str2);
3076 ssl->bytes += nbytes;
3080 /* Return the concatenation of the strings associated with overlays that
3081 begin or end at POS, ignoring overlays that are specific to a window
3082 other than W. The strings are concatenated in the appropriate order:
3083 shorter overlays nest inside longer ones, and higher priority inside
3084 lower. Normally all of the after-strings come first, but zero-sized
3085 overlays have their after-strings ride along with the before-strings
3086 because it would look strange to print them inside-out.
3088 Returns the string length, and stores the contents indirectly through
3089 PSTR, if that variable is non-null. The string may be overwritten by
3090 subsequent calls. */
3093 overlay_strings (pos, w, pstr)
3094 EMACS_INT pos;
3095 struct window *w;
3096 unsigned char **pstr;
3098 Lisp_Object overlay, window, str;
3099 struct Lisp_Overlay *ov;
3100 int startpos, endpos;
3101 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
3103 overlay_heads.used = overlay_heads.bytes = 0;
3104 overlay_tails.used = overlay_tails.bytes = 0;
3105 for (ov = current_buffer->overlays_before; ov; ov = ov->next)
3107 XSETMISC (overlay, ov);
3108 eassert (OVERLAYP (overlay));
3110 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3111 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3112 if (endpos < pos)
3113 break;
3114 if (endpos != pos && startpos != pos)
3115 continue;
3116 window = Foverlay_get (overlay, Qwindow);
3117 if (WINDOWP (window) && XWINDOW (window) != w)
3118 continue;
3119 if (startpos == pos
3120 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
3121 record_overlay_string (&overlay_heads, str,
3122 (startpos == endpos
3123 ? Foverlay_get (overlay, Qafter_string)
3124 : Qnil),
3125 Foverlay_get (overlay, Qpriority),
3126 endpos - startpos);
3127 else if (endpos == pos
3128 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
3129 record_overlay_string (&overlay_tails, str, Qnil,
3130 Foverlay_get (overlay, Qpriority),
3131 endpos - startpos);
3133 for (ov = current_buffer->overlays_after; ov; ov = ov->next)
3135 XSETMISC (overlay, ov);
3136 eassert (OVERLAYP (overlay));
3138 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3139 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3140 if (startpos > pos)
3141 break;
3142 if (endpos != pos && startpos != pos)
3143 continue;
3144 window = Foverlay_get (overlay, Qwindow);
3145 if (WINDOWP (window) && XWINDOW (window) != w)
3146 continue;
3147 if (startpos == pos
3148 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
3149 record_overlay_string (&overlay_heads, str,
3150 (startpos == endpos
3151 ? Foverlay_get (overlay, Qafter_string)
3152 : Qnil),
3153 Foverlay_get (overlay, Qpriority),
3154 endpos - startpos);
3155 else if (endpos == pos
3156 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
3157 record_overlay_string (&overlay_tails, str, Qnil,
3158 Foverlay_get (overlay, Qpriority),
3159 endpos - startpos);
3161 if (overlay_tails.used > 1)
3162 qsort (overlay_tails.buf, overlay_tails.used, sizeof (struct sortstr),
3163 cmp_for_strings);
3164 if (overlay_heads.used > 1)
3165 qsort (overlay_heads.buf, overlay_heads.used, sizeof (struct sortstr),
3166 cmp_for_strings);
3167 if (overlay_heads.bytes || overlay_tails.bytes)
3169 Lisp_Object tem;
3170 int i;
3171 unsigned char *p;
3172 int total = overlay_heads.bytes + overlay_tails.bytes;
3174 if (total > overlay_str_len)
3176 overlay_str_len = total;
3177 overlay_str_buf = (unsigned char *)xrealloc (overlay_str_buf,
3178 total);
3180 p = overlay_str_buf;
3181 for (i = overlay_tails.used; --i >= 0;)
3183 int nbytes;
3184 tem = overlay_tails.buf[i].string;
3185 nbytes = copy_text (SDATA (tem), p,
3186 SBYTES (tem),
3187 STRING_MULTIBYTE (tem), multibyte);
3188 p += nbytes;
3190 for (i = 0; i < overlay_heads.used; ++i)
3192 int nbytes;
3193 tem = overlay_heads.buf[i].string;
3194 nbytes = copy_text (SDATA (tem), p,
3195 SBYTES (tem),
3196 STRING_MULTIBYTE (tem), multibyte);
3197 p += nbytes;
3198 tem = overlay_heads.buf[i].string2;
3199 if (STRINGP (tem))
3201 nbytes = copy_text (SDATA (tem), p,
3202 SBYTES (tem),
3203 STRING_MULTIBYTE (tem), multibyte);
3204 p += nbytes;
3207 if (p != overlay_str_buf + total)
3208 abort ();
3209 if (pstr)
3210 *pstr = overlay_str_buf;
3211 return total;
3213 return 0;
3216 /* Shift overlays in BUF's overlay lists, to center the lists at POS. */
3218 void
3219 recenter_overlay_lists (buf, pos)
3220 struct buffer *buf;
3221 EMACS_INT pos;
3223 Lisp_Object overlay, beg, end;
3224 struct Lisp_Overlay *prev, *tail, *next;
3226 /* See if anything in overlays_before should move to overlays_after. */
3228 /* We don't strictly need prev in this loop; it should always be nil.
3229 But we use it for symmetry and in case that should cease to be true
3230 with some future change. */
3231 prev = NULL;
3232 for (tail = buf->overlays_before; tail; prev = tail, tail = next)
3234 next = tail->next;
3235 XSETMISC (overlay, tail);
3237 /* If the overlay is not valid, get rid of it. */
3238 if (!OVERLAY_VALID (overlay))
3239 #if 1
3240 abort ();
3241 #else
3243 /* Splice the cons cell TAIL out of overlays_before. */
3244 if (!NILP (prev))
3245 XCDR (prev) = next;
3246 else
3247 buf->overlays_before = next;
3248 tail = prev;
3249 continue;
3251 #endif
3253 beg = OVERLAY_START (overlay);
3254 end = OVERLAY_END (overlay);
3256 if (OVERLAY_POSITION (end) > pos)
3258 /* OVERLAY needs to be moved. */
3259 int where = OVERLAY_POSITION (beg);
3260 struct Lisp_Overlay *other, *other_prev;
3262 /* Splice the cons cell TAIL out of overlays_before. */
3263 if (prev)
3264 prev->next = next;
3265 else
3266 buf->overlays_before = next;
3268 /* Search thru overlays_after for where to put it. */
3269 other_prev = NULL;
3270 for (other = buf->overlays_after; other;
3271 other_prev = other, other = other->next)
3273 Lisp_Object otherbeg, otheroverlay;
3275 XSETMISC (otheroverlay, other);
3276 eassert (OVERLAY_VALID (otheroverlay));
3278 otherbeg = OVERLAY_START (otheroverlay);
3279 if (OVERLAY_POSITION (otherbeg) >= where)
3280 break;
3283 /* Add TAIL to overlays_after before OTHER. */
3284 tail->next = other;
3285 if (other_prev)
3286 other_prev->next = tail;
3287 else
3288 buf->overlays_after = tail;
3289 tail = prev;
3291 else
3292 /* We've reached the things that should stay in overlays_before.
3293 All the rest of overlays_before must end even earlier,
3294 so stop now. */
3295 break;
3298 /* See if anything in overlays_after should be in overlays_before. */
3299 prev = NULL;
3300 for (tail = buf->overlays_after; tail; prev = tail, tail = next)
3302 next = tail->next;
3303 XSETMISC (overlay, tail);
3305 /* If the overlay is not valid, get rid of it. */
3306 if (!OVERLAY_VALID (overlay))
3307 #if 1
3308 abort ();
3309 #else
3311 /* Splice the cons cell TAIL out of overlays_after. */
3312 if (!NILP (prev))
3313 XCDR (prev) = next;
3314 else
3315 buf->overlays_after = next;
3316 tail = prev;
3317 continue;
3319 #endif
3321 beg = OVERLAY_START (overlay);
3322 end = OVERLAY_END (overlay);
3324 /* Stop looking, when we know that nothing further
3325 can possibly end before POS. */
3326 if (OVERLAY_POSITION (beg) > pos)
3327 break;
3329 if (OVERLAY_POSITION (end) <= pos)
3331 /* OVERLAY needs to be moved. */
3332 int where = OVERLAY_POSITION (end);
3333 struct Lisp_Overlay *other, *other_prev;
3335 /* Splice the cons cell TAIL out of overlays_after. */
3336 if (prev)
3337 prev->next = next;
3338 else
3339 buf->overlays_after = next;
3341 /* Search thru overlays_before for where to put it. */
3342 other_prev = NULL;
3343 for (other = buf->overlays_before; other;
3344 other_prev = other, other = other->next)
3346 Lisp_Object otherend, otheroverlay;
3348 XSETMISC (otheroverlay, other);
3349 eassert (OVERLAY_VALID (otheroverlay));
3351 otherend = OVERLAY_END (otheroverlay);
3352 if (OVERLAY_POSITION (otherend) <= where)
3353 break;
3356 /* Add TAIL to overlays_before before OTHER. */
3357 tail->next = other;
3358 if (other_prev)
3359 other_prev->next = tail;
3360 else
3361 buf->overlays_before = tail;
3362 tail = prev;
3366 buf->overlay_center = pos;
3369 void
3370 adjust_overlays_for_insert (pos, length)
3371 EMACS_INT pos;
3372 EMACS_INT length;
3374 /* After an insertion, the lists are still sorted properly,
3375 but we may need to update the value of the overlay center. */
3376 if (current_buffer->overlay_center >= pos)
3377 current_buffer->overlay_center += length;
3380 void
3381 adjust_overlays_for_delete (pos, length)
3382 EMACS_INT pos;
3383 EMACS_INT length;
3385 if (current_buffer->overlay_center < pos)
3386 /* The deletion was to our right. No change needed; the before- and
3387 after-lists are still consistent. */
3389 else if (current_buffer->overlay_center > pos + length)
3390 /* The deletion was to our left. We need to adjust the center value
3391 to account for the change in position, but the lists are consistent
3392 given the new value. */
3393 current_buffer->overlay_center -= length;
3394 else
3395 /* We're right in the middle. There might be things on the after-list
3396 that now belong on the before-list. Recentering will move them,
3397 and also update the center point. */
3398 recenter_overlay_lists (current_buffer, pos);
3401 /* Fix up overlays that were garbled as a result of permuting markers
3402 in the range START through END. Any overlay with at least one
3403 endpoint in this range will need to be unlinked from the overlay
3404 list and reinserted in its proper place.
3405 Such an overlay might even have negative size at this point.
3406 If so, we'll make the overlay empty. */
3407 void
3408 fix_start_end_in_overlays (start, end)
3409 register int start, end;
3411 Lisp_Object overlay;
3412 struct Lisp_Overlay *before_list, *after_list;
3413 /* These are either nil, indicating that before_list or after_list
3414 should be assigned, or the cons cell the cdr of which should be
3415 assigned. */
3416 struct Lisp_Overlay *beforep = NULL, *afterp = NULL;
3417 /* 'Parent', likewise, indicates a cons cell or
3418 current_buffer->overlays_before or overlays_after, depending
3419 which loop we're in. */
3420 struct Lisp_Overlay *tail, *parent;
3421 int startpos, endpos;
3423 /* This algorithm shifts links around instead of consing and GCing.
3424 The loop invariant is that before_list (resp. after_list) is a
3425 well-formed list except that its last element, the CDR of beforep
3426 (resp. afterp) if beforep (afterp) isn't nil or before_list
3427 (after_list) if it is, is still uninitialized. So it's not a bug
3428 that before_list isn't initialized, although it may look
3429 strange. */
3430 for (parent = NULL, tail = current_buffer->overlays_before; tail;)
3432 XSETMISC (overlay, tail);
3434 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3435 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3437 /* If the overlay is backwards, make it empty. */
3438 if (endpos < startpos)
3440 startpos = endpos;
3441 Fset_marker (OVERLAY_START (overlay), make_number (startpos),
3442 Qnil);
3445 if (endpos < start)
3446 break;
3448 if (endpos < end
3449 || (startpos >= start && startpos < end))
3451 /* Add it to the end of the wrong list. Later on,
3452 recenter_overlay_lists will move it to the right place. */
3453 if (endpos < current_buffer->overlay_center)
3455 if (!afterp)
3456 after_list = tail;
3457 else
3458 afterp->next = tail;
3459 afterp = tail;
3461 else
3463 if (!beforep)
3464 before_list = tail;
3465 else
3466 beforep->next = tail;
3467 beforep = tail;
3469 if (!parent)
3470 current_buffer->overlays_before = tail->next;
3471 else
3472 parent->next = tail->next;
3473 tail = tail->next;
3475 else
3476 parent = tail, tail = parent->next;
3478 for (parent = NULL, tail = current_buffer->overlays_after; tail;)
3480 XSETMISC (overlay, tail);
3482 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3483 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3485 /* If the overlay is backwards, make it empty. */
3486 if (endpos < startpos)
3488 startpos = endpos;
3489 Fset_marker (OVERLAY_START (overlay), make_number (startpos),
3490 Qnil);
3493 if (startpos >= end)
3494 break;
3496 if (startpos >= start
3497 || (endpos >= start && endpos < end))
3499 if (endpos < current_buffer->overlay_center)
3501 if (!afterp)
3502 after_list = tail;
3503 else
3504 afterp->next = tail;
3505 afterp = tail;
3507 else
3509 if (!beforep)
3510 before_list = tail;
3511 else
3512 beforep->next = tail;
3513 beforep = tail;
3515 if (!parent)
3516 current_buffer->overlays_after = tail->next;
3517 else
3518 parent->next = tail->next;
3519 tail = tail->next;
3521 else
3522 parent = tail, tail = parent->next;
3525 /* Splice the constructed (wrong) lists into the buffer's lists,
3526 and let the recenter function make it sane again. */
3527 if (beforep)
3529 beforep->next = current_buffer->overlays_before;
3530 current_buffer->overlays_before = before_list;
3532 recenter_overlay_lists (current_buffer, current_buffer->overlay_center);
3534 if (afterp)
3536 afterp->next = current_buffer->overlays_after;
3537 current_buffer->overlays_after = after_list;
3539 recenter_overlay_lists (current_buffer, current_buffer->overlay_center);
3542 /* We have two types of overlay: the one whose ending marker is
3543 after-insertion-marker (this is the usual case) and the one whose
3544 ending marker is before-insertion-marker. When `overlays_before'
3545 contains overlays of the latter type and the former type in this
3546 order and both overlays end at inserting position, inserting a text
3547 increases only the ending marker of the latter type, which results
3548 in incorrect ordering of `overlays_before'.
3550 This function fixes ordering of overlays in the slot
3551 `overlays_before' of the buffer *BP. Before the insertion, `point'
3552 was at PREV, and now is at POS. */
3554 void
3555 fix_overlays_before (bp, prev, pos)
3556 struct buffer *bp;
3557 EMACS_INT prev, pos;
3559 /* If parent is nil, replace overlays_before; otherwise, parent->next. */
3560 struct Lisp_Overlay *tail = bp->overlays_before, *parent = NULL, *right_pair;
3561 Lisp_Object tem;
3562 EMACS_INT end;
3564 /* After the insertion, the several overlays may be in incorrect
3565 order. The possibility is that, in the list `overlays_before',
3566 an overlay which ends at POS appears after an overlay which ends
3567 at PREV. Since POS is greater than PREV, we must fix the
3568 ordering of these overlays, by moving overlays ends at POS before
3569 the overlays ends at PREV. */
3571 /* At first, find a place where disordered overlays should be linked
3572 in. It is where an overlay which end before POS exists. (i.e. an
3573 overlay whose ending marker is after-insertion-marker if disorder
3574 exists). */
3575 while (tail
3576 && (XSETMISC (tem, tail),
3577 (end = OVERLAY_POSITION (OVERLAY_END (tem))) >= pos))
3579 parent = tail;
3580 tail = tail->next;
3583 /* If we don't find such an overlay,
3584 or the found one ends before PREV,
3585 or the found one is the last one in the list,
3586 we don't have to fix anything. */
3587 if (!tail || end < prev || !tail->next)
3588 return;
3590 right_pair = parent;
3591 parent = tail;
3592 tail = tail->next;
3594 /* Now, end position of overlays in the list TAIL should be before
3595 or equal to PREV. In the loop, an overlay which ends at POS is
3596 moved ahead to the place indicated by the CDR of RIGHT_PAIR. If
3597 we found an overlay which ends before PREV, the remaining
3598 overlays are in correct order. */
3599 while (tail)
3601 XSETMISC (tem, tail);
3602 end = OVERLAY_POSITION (OVERLAY_END (tem));
3604 if (end == pos)
3605 { /* This overlay is disordered. */
3606 struct Lisp_Overlay *found = tail;
3608 /* Unlink the found overlay. */
3609 tail = found->next;
3610 parent->next = tail;
3611 /* Move an overlay at RIGHT_PLACE to the next of the found one,
3612 and link it into the right place. */
3613 if (!right_pair)
3615 found->next = bp->overlays_before;
3616 bp->overlays_before = found;
3618 else
3620 found->next = right_pair->next;
3621 right_pair->next = found;
3624 else if (end == prev)
3626 parent = tail;
3627 tail = tail->next;
3629 else /* No more disordered overlay. */
3630 break;
3634 DEFUN ("overlayp", Foverlayp, Soverlayp, 1, 1, 0,
3635 doc: /* Return t if OBJECT is an overlay. */)
3636 (object)
3637 Lisp_Object object;
3639 return (OVERLAYP (object) ? Qt : Qnil);
3642 DEFUN ("make-overlay", Fmake_overlay, Smake_overlay, 2, 5, 0,
3643 doc: /* Create a new overlay with range BEG to END in BUFFER.
3644 If omitted, BUFFER defaults to the current buffer.
3645 BEG and END may be integers or markers.
3646 The fourth arg FRONT-ADVANCE, if non-nil, makes the marker
3647 for the front of the overlay advance when text is inserted there
3648 \(which means the text *is not* included in the overlay).
3649 The fifth arg REAR-ADVANCE, if non-nil, makes the marker
3650 for the rear of the overlay advance when text is inserted there
3651 \(which means the text *is* included in the overlay). */)
3652 (beg, end, buffer, front_advance, rear_advance)
3653 Lisp_Object beg, end, buffer;
3654 Lisp_Object front_advance, rear_advance;
3656 Lisp_Object overlay;
3657 struct buffer *b;
3659 if (NILP (buffer))
3660 XSETBUFFER (buffer, current_buffer);
3661 else
3662 CHECK_BUFFER (buffer);
3663 if (MARKERP (beg)
3664 && ! EQ (Fmarker_buffer (beg), buffer))
3665 error ("Marker points into wrong buffer");
3666 if (MARKERP (end)
3667 && ! EQ (Fmarker_buffer (end), buffer))
3668 error ("Marker points into wrong buffer");
3670 CHECK_NUMBER_COERCE_MARKER (beg);
3671 CHECK_NUMBER_COERCE_MARKER (end);
3673 if (XINT (beg) > XINT (end))
3675 Lisp_Object temp;
3676 temp = beg; beg = end; end = temp;
3679 b = XBUFFER (buffer);
3681 beg = Fset_marker (Fmake_marker (), beg, buffer);
3682 end = Fset_marker (Fmake_marker (), end, buffer);
3684 if (!NILP (front_advance))
3685 XMARKER (beg)->insertion_type = 1;
3686 if (!NILP (rear_advance))
3687 XMARKER (end)->insertion_type = 1;
3689 overlay = allocate_misc ();
3690 XMISCTYPE (overlay) = Lisp_Misc_Overlay;
3691 XOVERLAY (overlay)->start = beg;
3692 XOVERLAY (overlay)->end = end;
3693 XOVERLAY (overlay)->plist = Qnil;
3694 XOVERLAY (overlay)->next = NULL;
3696 /* Put the new overlay on the wrong list. */
3697 end = OVERLAY_END (overlay);
3698 if (OVERLAY_POSITION (end) < b->overlay_center)
3700 if (b->overlays_after)
3701 XOVERLAY (overlay)->next = b->overlays_after;
3702 b->overlays_after = XOVERLAY (overlay);
3704 else
3706 if (b->overlays_before)
3707 XOVERLAY (overlay)->next = b->overlays_before;
3708 b->overlays_before = XOVERLAY (overlay);
3711 /* This puts it in the right list, and in the right order. */
3712 recenter_overlay_lists (b, b->overlay_center);
3714 /* We don't need to redisplay the region covered by the overlay, because
3715 the overlay has no properties at the moment. */
3717 return overlay;
3720 /* Mark a section of BUF as needing redisplay because of overlays changes. */
3722 static void
3723 modify_overlay (buf, start, end)
3724 struct buffer *buf;
3725 EMACS_INT start, end;
3727 if (start > end)
3729 int temp = start;
3730 start = end;
3731 end = temp;
3734 BUF_COMPUTE_UNCHANGED (buf, start, end);
3736 /* If this is a buffer not in the selected window,
3737 we must do other windows. */
3738 if (buf != XBUFFER (XWINDOW (selected_window)->buffer))
3739 windows_or_buffers_changed = 1;
3740 /* If multiple windows show this buffer, we must do other windows. */
3741 else if (buffer_shared > 1)
3742 windows_or_buffers_changed = 1;
3743 /* If we modify an overlay at the end of the buffer, we cannot
3744 be sure that window end is still valid. */
3745 else if (end >= ZV && start <= ZV)
3746 windows_or_buffers_changed = 1;
3748 ++BUF_OVERLAY_MODIFF (buf);
3752 Lisp_Object Fdelete_overlay ();
3754 static struct Lisp_Overlay *
3755 unchain_overlay (list, overlay)
3756 struct Lisp_Overlay *list, *overlay;
3758 struct Lisp_Overlay *tmp, *prev;
3759 for (tmp = list, prev = NULL; tmp; prev = tmp, tmp = tmp->next)
3760 if (tmp == overlay)
3762 if (prev)
3763 prev->next = tmp->next;
3764 else
3765 list = tmp->next;
3766 overlay->next = NULL;
3767 break;
3769 return list;
3772 DEFUN ("move-overlay", Fmove_overlay, Smove_overlay, 3, 4, 0,
3773 doc: /* Set the endpoints of OVERLAY to BEG and END in BUFFER.
3774 If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.
3775 If BUFFER is omitted, and OVERLAY is in no buffer, put it in the current
3776 buffer. */)
3777 (overlay, beg, end, buffer)
3778 Lisp_Object overlay, beg, end, buffer;
3780 struct buffer *b, *ob;
3781 Lisp_Object obuffer;
3782 int count = SPECPDL_INDEX ();
3784 CHECK_OVERLAY (overlay);
3785 if (NILP (buffer))
3786 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3787 if (NILP (buffer))
3788 XSETBUFFER (buffer, current_buffer);
3789 CHECK_BUFFER (buffer);
3791 if (MARKERP (beg)
3792 && ! EQ (Fmarker_buffer (beg), buffer))
3793 error ("Marker points into wrong buffer");
3794 if (MARKERP (end)
3795 && ! EQ (Fmarker_buffer (end), buffer))
3796 error ("Marker points into wrong buffer");
3798 CHECK_NUMBER_COERCE_MARKER (beg);
3799 CHECK_NUMBER_COERCE_MARKER (end);
3801 if (XINT (beg) == XINT (end) && ! NILP (Foverlay_get (overlay, Qevaporate)))
3802 return Fdelete_overlay (overlay);
3804 if (XINT (beg) > XINT (end))
3806 Lisp_Object temp;
3807 temp = beg; beg = end; end = temp;
3810 specbind (Qinhibit_quit, Qt);
3812 obuffer = Fmarker_buffer (OVERLAY_START (overlay));
3813 b = XBUFFER (buffer);
3814 ob = BUFFERP (obuffer) ? XBUFFER (obuffer) : (struct buffer *) 0;
3816 /* If the overlay has changed buffers, do a thorough redisplay. */
3817 if (!EQ (buffer, obuffer))
3819 /* Redisplay where the overlay was. */
3820 if (!NILP (obuffer))
3822 int o_beg;
3823 int o_end;
3825 o_beg = OVERLAY_POSITION (OVERLAY_START (overlay));
3826 o_end = OVERLAY_POSITION (OVERLAY_END (overlay));
3828 modify_overlay (ob, o_beg, o_end);
3831 /* Redisplay where the overlay is going to be. */
3832 modify_overlay (b, XINT (beg), XINT (end));
3834 else
3835 /* Redisplay the area the overlay has just left, or just enclosed. */
3837 int o_beg, o_end;
3839 o_beg = OVERLAY_POSITION (OVERLAY_START (overlay));
3840 o_end = OVERLAY_POSITION (OVERLAY_END (overlay));
3842 if (o_beg == XINT (beg))
3843 modify_overlay (b, o_end, XINT (end));
3844 else if (o_end == XINT (end))
3845 modify_overlay (b, o_beg, XINT (beg));
3846 else
3848 if (XINT (beg) < o_beg) o_beg = XINT (beg);
3849 if (XINT (end) > o_end) o_end = XINT (end);
3850 modify_overlay (b, o_beg, o_end);
3854 if (!NILP (obuffer))
3856 ob->overlays_before
3857 = unchain_overlay (ob->overlays_before, XOVERLAY (overlay));
3858 ob->overlays_after
3859 = unchain_overlay (ob->overlays_after, XOVERLAY (overlay));
3860 eassert (XOVERLAY (overlay)->next == NULL);
3863 Fset_marker (OVERLAY_START (overlay), beg, buffer);
3864 Fset_marker (OVERLAY_END (overlay), end, buffer);
3866 /* Put the overlay on the wrong list. */
3867 end = OVERLAY_END (overlay);
3868 if (OVERLAY_POSITION (end) < b->overlay_center)
3870 XOVERLAY (overlay)->next = b->overlays_after;
3871 b->overlays_after = XOVERLAY (overlay);
3873 else
3875 XOVERLAY (overlay)->next = b->overlays_before;
3876 b->overlays_before = XOVERLAY (overlay);
3879 /* This puts it in the right list, and in the right order. */
3880 recenter_overlay_lists (b, b->overlay_center);
3882 return unbind_to (count, overlay);
3885 DEFUN ("delete-overlay", Fdelete_overlay, Sdelete_overlay, 1, 1, 0,
3886 doc: /* Delete the overlay OVERLAY from its buffer. */)
3887 (overlay)
3888 Lisp_Object overlay;
3890 Lisp_Object buffer;
3891 struct buffer *b;
3892 int count = SPECPDL_INDEX ();
3894 CHECK_OVERLAY (overlay);
3896 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3897 if (NILP (buffer))
3898 return Qnil;
3900 b = XBUFFER (buffer);
3901 specbind (Qinhibit_quit, Qt);
3903 b->overlays_before = unchain_overlay (b->overlays_before,XOVERLAY (overlay));
3904 b->overlays_after = unchain_overlay (b->overlays_after, XOVERLAY (overlay));
3905 eassert (XOVERLAY (overlay)->next == NULL);
3906 modify_overlay (b,
3907 marker_position (OVERLAY_START (overlay)),
3908 marker_position (OVERLAY_END (overlay)));
3909 Fset_marker (OVERLAY_START (overlay), Qnil, Qnil);
3910 Fset_marker (OVERLAY_END (overlay), Qnil, Qnil);
3912 /* When deleting an overlay with before or after strings, turn off
3913 display optimizations for the affected buffer, on the basis that
3914 these strings may contain newlines. This is easier to do than to
3915 check for that situation during redisplay. */
3916 if (!windows_or_buffers_changed
3917 && (!NILP (Foverlay_get (overlay, Qbefore_string))
3918 || !NILP (Foverlay_get (overlay, Qafter_string))))
3919 b->prevent_redisplay_optimizations_p = 1;
3921 return unbind_to (count, Qnil);
3924 /* Overlay dissection functions. */
3926 DEFUN ("overlay-start", Foverlay_start, Soverlay_start, 1, 1, 0,
3927 doc: /* Return the position at which OVERLAY starts. */)
3928 (overlay)
3929 Lisp_Object overlay;
3931 CHECK_OVERLAY (overlay);
3933 return (Fmarker_position (OVERLAY_START (overlay)));
3936 DEFUN ("overlay-end", Foverlay_end, Soverlay_end, 1, 1, 0,
3937 doc: /* Return the position at which OVERLAY ends. */)
3938 (overlay)
3939 Lisp_Object overlay;
3941 CHECK_OVERLAY (overlay);
3943 return (Fmarker_position (OVERLAY_END (overlay)));
3946 DEFUN ("overlay-buffer", Foverlay_buffer, Soverlay_buffer, 1, 1, 0,
3947 doc: /* Return the buffer OVERLAY belongs to.
3948 Return nil if OVERLAY has been deleted. */)
3949 (overlay)
3950 Lisp_Object overlay;
3952 CHECK_OVERLAY (overlay);
3954 return Fmarker_buffer (OVERLAY_START (overlay));
3957 DEFUN ("overlay-properties", Foverlay_properties, Soverlay_properties, 1, 1, 0,
3958 doc: /* Return a list of the properties on OVERLAY.
3959 This is a copy of OVERLAY's plist; modifying its conses has no effect on
3960 OVERLAY. */)
3961 (overlay)
3962 Lisp_Object overlay;
3964 CHECK_OVERLAY (overlay);
3966 return Fcopy_sequence (XOVERLAY (overlay)->plist);
3970 DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 1, 0,
3971 doc: /* Return a list of the overlays that contain the character at POS. */)
3972 (pos)
3973 Lisp_Object pos;
3975 int noverlays;
3976 Lisp_Object *overlay_vec;
3977 int len;
3978 Lisp_Object result;
3980 CHECK_NUMBER_COERCE_MARKER (pos);
3982 len = 10;
3983 /* We can't use alloca here because overlays_at can call xrealloc. */
3984 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
3986 /* Put all the overlays we want in a vector in overlay_vec.
3987 Store the length in len. */
3988 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
3989 (int *) 0, (int *) 0, 0);
3991 /* Make a list of them all. */
3992 result = Flist (noverlays, overlay_vec);
3994 xfree (overlay_vec);
3995 return result;
3998 DEFUN ("overlays-in", Foverlays_in, Soverlays_in, 2, 2, 0,
3999 doc: /* Return a list of the overlays that overlap the region BEG ... END.
4000 Overlap means that at least one character is contained within the overlay
4001 and also contained within the specified region.
4002 Empty overlays are included in the result if they are located at BEG
4003 or between BEG and END. */)
4004 (beg, end)
4005 Lisp_Object beg, end;
4007 int noverlays;
4008 Lisp_Object *overlay_vec;
4009 int len;
4010 Lisp_Object result;
4012 CHECK_NUMBER_COERCE_MARKER (beg);
4013 CHECK_NUMBER_COERCE_MARKER (end);
4015 len = 10;
4016 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
4018 /* Put all the overlays we want in a vector in overlay_vec.
4019 Store the length in len. */
4020 noverlays = overlays_in (XINT (beg), XINT (end), 1, &overlay_vec, &len,
4021 (int *) 0, (int *) 0);
4023 /* Make a list of them all. */
4024 result = Flist (noverlays, overlay_vec);
4026 xfree (overlay_vec);
4027 return result;
4030 DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
4031 1, 1, 0,
4032 doc: /* Return the next position after POS where an overlay starts or ends.
4033 If there are no overlay boundaries from POS to (point-max),
4034 the value is (point-max). */)
4035 (pos)
4036 Lisp_Object pos;
4038 int noverlays;
4039 int endpos;
4040 Lisp_Object *overlay_vec;
4041 int len;
4042 int i;
4044 CHECK_NUMBER_COERCE_MARKER (pos);
4046 len = 10;
4047 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
4049 /* Put all the overlays we want in a vector in overlay_vec.
4050 Store the length in len.
4051 endpos gets the position where the next overlay starts. */
4052 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
4053 &endpos, (int *) 0, 1);
4055 /* If any of these overlays ends before endpos,
4056 use its ending point instead. */
4057 for (i = 0; i < noverlays; i++)
4059 Lisp_Object oend;
4060 int oendpos;
4062 oend = OVERLAY_END (overlay_vec[i]);
4063 oendpos = OVERLAY_POSITION (oend);
4064 if (oendpos < endpos)
4065 endpos = oendpos;
4068 xfree (overlay_vec);
4069 return make_number (endpos);
4072 DEFUN ("previous-overlay-change", Fprevious_overlay_change,
4073 Sprevious_overlay_change, 1, 1, 0,
4074 doc: /* Return the previous position before POS where an overlay starts or ends.
4075 If there are no overlay boundaries from (point-min) to POS,
4076 the value is (point-min). */)
4077 (pos)
4078 Lisp_Object pos;
4080 int noverlays;
4081 int prevpos;
4082 Lisp_Object *overlay_vec;
4083 int len;
4085 CHECK_NUMBER_COERCE_MARKER (pos);
4087 /* At beginning of buffer, we know the answer;
4088 avoid bug subtracting 1 below. */
4089 if (XINT (pos) == BEGV)
4090 return pos;
4092 len = 10;
4093 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
4095 /* Put all the overlays we want in a vector in overlay_vec.
4096 Store the length in len.
4097 prevpos gets the position of the previous change. */
4098 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
4099 (int *) 0, &prevpos, 1);
4101 xfree (overlay_vec);
4102 return make_number (prevpos);
4105 /* These functions are for debugging overlays. */
4107 DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0,
4108 doc: /* Return a pair of lists giving all the overlays of the current buffer.
4109 The car has all the overlays before the overlay center;
4110 the cdr has all the overlays after the overlay center.
4111 Recentering overlays moves overlays between these lists.
4112 The lists you get are copies, so that changing them has no effect.
4113 However, the overlays you get are the real objects that the buffer uses. */)
4116 struct Lisp_Overlay *ol;
4117 Lisp_Object before = Qnil, after = Qnil, tmp;
4118 for (ol = current_buffer->overlays_before; ol; ol = ol->next)
4120 XSETMISC (tmp, ol);
4121 before = Fcons (tmp, before);
4123 for (ol = current_buffer->overlays_after; ol; ol = ol->next)
4125 XSETMISC (tmp, ol);
4126 after = Fcons (tmp, after);
4128 return Fcons (Fnreverse (before), Fnreverse (after));
4131 DEFUN ("overlay-recenter", Foverlay_recenter, Soverlay_recenter, 1, 1, 0,
4132 doc: /* Recenter the overlays of the current buffer around position POS.
4133 That makes overlay lookup faster for positions near POS (but perhaps slower
4134 for positions far away from POS). */)
4135 (pos)
4136 Lisp_Object pos;
4138 CHECK_NUMBER_COERCE_MARKER (pos);
4140 recenter_overlay_lists (current_buffer, XINT (pos));
4141 return Qnil;
4144 DEFUN ("overlay-get", Foverlay_get, Soverlay_get, 2, 2, 0,
4145 doc: /* Get the property of overlay OVERLAY with property name PROP. */)
4146 (overlay, prop)
4147 Lisp_Object overlay, prop;
4149 CHECK_OVERLAY (overlay);
4150 return lookup_char_property (XOVERLAY (overlay)->plist, prop, 0);
4153 DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0,
4154 doc: /* Set one property of overlay OVERLAY: give property PROP value VALUE. */)
4155 (overlay, prop, value)
4156 Lisp_Object overlay, prop, value;
4158 Lisp_Object tail, buffer;
4159 int changed;
4161 CHECK_OVERLAY (overlay);
4163 buffer = Fmarker_buffer (OVERLAY_START (overlay));
4165 for (tail = XOVERLAY (overlay)->plist;
4166 CONSP (tail) && CONSP (XCDR (tail));
4167 tail = XCDR (XCDR (tail)))
4168 if (EQ (XCAR (tail), prop))
4170 changed = !EQ (XCAR (XCDR (tail)), value);
4171 XSETCAR (XCDR (tail), value);
4172 goto found;
4174 /* It wasn't in the list, so add it to the front. */
4175 changed = !NILP (value);
4176 XOVERLAY (overlay)->plist
4177 = Fcons (prop, Fcons (value, XOVERLAY (overlay)->plist));
4178 found:
4179 if (! NILP (buffer))
4181 if (changed)
4182 modify_overlay (XBUFFER (buffer),
4183 marker_position (OVERLAY_START (overlay)),
4184 marker_position (OVERLAY_END (overlay)));
4185 if (EQ (prop, Qevaporate) && ! NILP (value)
4186 && (OVERLAY_POSITION (OVERLAY_START (overlay))
4187 == OVERLAY_POSITION (OVERLAY_END (overlay))))
4188 Fdelete_overlay (overlay);
4191 return value;
4194 /* Subroutine of report_overlay_modification. */
4196 /* Lisp vector holding overlay hook functions to call.
4197 Vector elements come in pairs.
4198 Each even-index element is a list of hook functions.
4199 The following odd-index element is the overlay they came from.
4201 Before the buffer change, we fill in this vector
4202 as we call overlay hook functions.
4203 After the buffer change, we get the functions to call from this vector.
4204 This way we always call the same functions before and after the change. */
4205 static Lisp_Object last_overlay_modification_hooks;
4207 /* Number of elements actually used in last_overlay_modification_hooks. */
4208 static int last_overlay_modification_hooks_used;
4210 /* Add one functionlist/overlay pair
4211 to the end of last_overlay_modification_hooks. */
4213 static void
4214 add_overlay_mod_hooklist (functionlist, overlay)
4215 Lisp_Object functionlist, overlay;
4217 int oldsize = XVECTOR (last_overlay_modification_hooks)->size;
4219 if (last_overlay_modification_hooks_used == oldsize)
4221 Lisp_Object old;
4222 old = last_overlay_modification_hooks;
4223 last_overlay_modification_hooks
4224 = Fmake_vector (make_number (oldsize * 2), Qnil);
4225 bcopy (XVECTOR (old)->contents,
4226 XVECTOR (last_overlay_modification_hooks)->contents,
4227 sizeof (Lisp_Object) * oldsize);
4229 AREF (last_overlay_modification_hooks, last_overlay_modification_hooks_used++) = functionlist;
4230 AREF (last_overlay_modification_hooks, last_overlay_modification_hooks_used++) = overlay;
4233 /* Run the modification-hooks of overlays that include
4234 any part of the text in START to END.
4235 If this change is an insertion, also
4236 run the insert-before-hooks of overlay starting at END,
4237 and the insert-after-hooks of overlay ending at START.
4239 This is called both before and after the modification.
4240 AFTER is nonzero when we call after the modification.
4242 ARG1, ARG2, ARG3 are arguments to pass to the hook functions.
4243 When AFTER is nonzero, they are the start position,
4244 the position after the inserted new text,
4245 and the length of deleted or replaced old text. */
4247 void
4248 report_overlay_modification (start, end, after, arg1, arg2, arg3)
4249 Lisp_Object start, end;
4250 int after;
4251 Lisp_Object arg1, arg2, arg3;
4253 Lisp_Object prop, overlay;
4254 struct Lisp_Overlay *tail;
4255 /* 1 if this change is an insertion. */
4256 int insertion = (after ? XFASTINT (arg3) == 0 : EQ (start, end));
4257 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4259 overlay = Qnil;
4260 tail = NULL;
4262 /* We used to run the functions as soon as we found them and only register
4263 them in last_overlay_modification_hooks for the purpose of the `after'
4264 case. But running elisp code as we traverse the list of overlays is
4265 painful because the list can be modified by the elisp code so we had to
4266 copy at several places. We now simply do a read-only traversal that
4267 only collects the functions to run and we run them afterwards. It's
4268 simpler, especially since all the code was already there. -stef */
4270 if (!after)
4272 /* We are being called before a change.
4273 Scan the overlays to find the functions to call. */
4274 last_overlay_modification_hooks_used = 0;
4275 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
4277 int startpos, endpos;
4278 Lisp_Object ostart, oend;
4280 XSETMISC (overlay, tail);
4282 ostart = OVERLAY_START (overlay);
4283 oend = OVERLAY_END (overlay);
4284 endpos = OVERLAY_POSITION (oend);
4285 if (XFASTINT (start) > endpos)
4286 break;
4287 startpos = OVERLAY_POSITION (ostart);
4288 if (insertion && (XFASTINT (start) == startpos
4289 || XFASTINT (end) == startpos))
4291 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
4292 if (!NILP (prop))
4293 add_overlay_mod_hooklist (prop, overlay);
4295 if (insertion && (XFASTINT (start) == endpos
4296 || XFASTINT (end) == endpos))
4298 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
4299 if (!NILP (prop))
4300 add_overlay_mod_hooklist (prop, overlay);
4302 /* Test for intersecting intervals. This does the right thing
4303 for both insertion and deletion. */
4304 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
4306 prop = Foverlay_get (overlay, Qmodification_hooks);
4307 if (!NILP (prop))
4308 add_overlay_mod_hooklist (prop, overlay);
4312 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
4314 int startpos, endpos;
4315 Lisp_Object ostart, oend;
4317 XSETMISC (overlay, tail);
4319 ostart = OVERLAY_START (overlay);
4320 oend = OVERLAY_END (overlay);
4321 startpos = OVERLAY_POSITION (ostart);
4322 endpos = OVERLAY_POSITION (oend);
4323 if (XFASTINT (end) < startpos)
4324 break;
4325 if (insertion && (XFASTINT (start) == startpos
4326 || XFASTINT (end) == startpos))
4328 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
4329 if (!NILP (prop))
4330 add_overlay_mod_hooklist (prop, overlay);
4332 if (insertion && (XFASTINT (start) == endpos
4333 || XFASTINT (end) == endpos))
4335 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
4336 if (!NILP (prop))
4337 add_overlay_mod_hooklist (prop, overlay);
4339 /* Test for intersecting intervals. This does the right thing
4340 for both insertion and deletion. */
4341 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
4343 prop = Foverlay_get (overlay, Qmodification_hooks);
4344 if (!NILP (prop))
4345 add_overlay_mod_hooklist (prop, overlay);
4350 GCPRO4 (overlay, arg1, arg2, arg3);
4352 /* Call the functions recorded in last_overlay_modification_hooks.
4353 First copy the vector contents, in case some of these hooks
4354 do subsequent modification of the buffer. */
4355 int size = last_overlay_modification_hooks_used;
4356 Lisp_Object *copy = (Lisp_Object *) alloca (size * sizeof (Lisp_Object));
4357 int i;
4359 bcopy (XVECTOR (last_overlay_modification_hooks)->contents,
4360 copy, size * sizeof (Lisp_Object));
4361 gcpro1.var = copy;
4362 gcpro1.nvars = size;
4364 for (i = 0; i < size;)
4366 Lisp_Object prop, overlay;
4367 prop = copy[i++];
4368 overlay = copy[i++];
4369 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
4372 UNGCPRO;
4375 static void
4376 call_overlay_mod_hooks (list, overlay, after, arg1, arg2, arg3)
4377 Lisp_Object list, overlay;
4378 int after;
4379 Lisp_Object arg1, arg2, arg3;
4381 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4383 GCPRO4 (list, arg1, arg2, arg3);
4385 while (CONSP (list))
4387 if (NILP (arg3))
4388 call4 (XCAR (list), overlay, after ? Qt : Qnil, arg1, arg2);
4389 else
4390 call5 (XCAR (list), overlay, after ? Qt : Qnil, arg1, arg2, arg3);
4391 list = XCDR (list);
4393 UNGCPRO;
4396 /* Delete any zero-sized overlays at position POS, if the `evaporate'
4397 property is set. */
4398 void
4399 evaporate_overlays (pos)
4400 EMACS_INT pos;
4402 Lisp_Object overlay, hit_list;
4403 struct Lisp_Overlay *tail;
4405 hit_list = Qnil;
4406 if (pos <= current_buffer->overlay_center)
4407 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
4409 int endpos;
4410 XSETMISC (overlay, tail);
4411 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
4412 if (endpos < pos)
4413 break;
4414 if (endpos == pos && OVERLAY_POSITION (OVERLAY_START (overlay)) == pos
4415 && ! NILP (Foverlay_get (overlay, Qevaporate)))
4416 hit_list = Fcons (overlay, hit_list);
4418 else
4419 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
4421 int startpos;
4422 XSETMISC (overlay, tail);
4423 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
4424 if (startpos > pos)
4425 break;
4426 if (startpos == pos && OVERLAY_POSITION (OVERLAY_END (overlay)) == pos
4427 && ! NILP (Foverlay_get (overlay, Qevaporate)))
4428 hit_list = Fcons (overlay, hit_list);
4430 for (; CONSP (hit_list); hit_list = XCDR (hit_list))
4431 Fdelete_overlay (XCAR (hit_list));
4434 /* Somebody has tried to store a value with an unacceptable type
4435 in the slot with offset OFFSET. */
4437 void
4438 buffer_slot_type_mismatch (offset)
4439 int offset;
4441 Lisp_Object sym;
4442 char *type_name;
4444 switch (XINT (PER_BUFFER_TYPE (offset)))
4446 case Lisp_Int:
4447 type_name = "integers";
4448 break;
4450 case Lisp_String:
4451 type_name = "strings";
4452 break;
4454 case Lisp_Symbol:
4455 type_name = "symbols";
4456 break;
4458 default:
4459 abort ();
4462 sym = PER_BUFFER_SYMBOL (offset);
4463 error ("Only %s should be stored in the buffer-local variable %s",
4464 type_name, SDATA (SYMBOL_NAME (sym)));
4468 /***********************************************************************
4469 Allocation with mmap
4470 ***********************************************************************/
4472 #ifdef USE_MMAP_FOR_BUFFERS
4474 #include <sys/types.h>
4475 #include <sys/mman.h>
4477 #ifndef MAP_ANON
4478 #ifdef MAP_ANONYMOUS
4479 #define MAP_ANON MAP_ANONYMOUS
4480 #else
4481 #define MAP_ANON 0
4482 #endif
4483 #endif
4485 #ifndef MAP_FAILED
4486 #define MAP_FAILED ((void *) -1)
4487 #endif
4489 #include <stdio.h>
4490 #include <errno.h>
4492 #if MAP_ANON == 0
4493 #include <fcntl.h>
4494 #endif
4496 #include "coding.h"
4499 /* Memory is allocated in regions which are mapped using mmap(2).
4500 The current implementation lets the system select mapped
4501 addresses; we're not using MAP_FIXED in general, except when
4502 trying to enlarge regions.
4504 Each mapped region starts with a mmap_region structure, the user
4505 area starts after that structure, aligned to MEM_ALIGN.
4507 +-----------------------+
4508 | struct mmap_info + |
4509 | padding |
4510 +-----------------------+
4511 | user data |
4514 +-----------------------+ */
4516 struct mmap_region
4518 /* User-specified size. */
4519 size_t nbytes_specified;
4521 /* Number of bytes mapped */
4522 size_t nbytes_mapped;
4524 /* Pointer to the location holding the address of the memory
4525 allocated with the mmap'd block. The variable actually points
4526 after this structure. */
4527 POINTER_TYPE **var;
4529 /* Next and previous in list of all mmap'd regions. */
4530 struct mmap_region *next, *prev;
4533 /* Doubly-linked list of mmap'd regions. */
4535 static struct mmap_region *mmap_regions;
4537 /* File descriptor for mmap. If we don't have anonymous mapping,
4538 /dev/zero will be opened on it. */
4540 static int mmap_fd;
4542 /* Temporary storage for mmap_set_vars, see there. */
4544 static struct mmap_region *mmap_regions_1;
4545 static int mmap_fd_1;
4547 /* Page size on this system. */
4549 static int mmap_page_size;
4551 /* 1 means mmap has been intialized. */
4553 static int mmap_initialized_p;
4555 /* Value is X rounded up to the next multiple of N. */
4557 #define ROUND(X, N) (((X) + (N) - 1) / (N) * (N))
4559 /* Size of mmap_region structure plus padding. */
4561 #define MMAP_REGION_STRUCT_SIZE \
4562 ROUND (sizeof (struct mmap_region), MEM_ALIGN)
4564 /* Given a pointer P to the start of the user-visible part of a mapped
4565 region, return a pointer to the start of the region. */
4567 #define MMAP_REGION(P) \
4568 ((struct mmap_region *) ((char *) (P) - MMAP_REGION_STRUCT_SIZE))
4570 /* Given a pointer P to the start of a mapped region, return a pointer
4571 to the start of the user-visible part of the region. */
4573 #define MMAP_USER_AREA(P) \
4574 ((POINTER_TYPE *) ((char *) (P) + MMAP_REGION_STRUCT_SIZE))
4576 #define MEM_ALIGN sizeof (double)
4578 /* Predicate returning true if part of the address range [START .. END]
4579 is currently mapped. Used to prevent overwriting an existing
4580 memory mapping.
4582 Default is to conservativly assume the address range is occupied by
4583 something else. This can be overridden by system configuration
4584 files if system-specific means to determine this exists. */
4586 #ifndef MMAP_ALLOCATED_P
4587 #define MMAP_ALLOCATED_P(start, end) 1
4588 #endif
4590 /* Function prototypes. */
4592 static int mmap_free_1 P_ ((struct mmap_region *));
4593 static int mmap_enlarge P_ ((struct mmap_region *, int));
4594 static struct mmap_region *mmap_find P_ ((POINTER_TYPE *, POINTER_TYPE *));
4595 static POINTER_TYPE *mmap_alloc P_ ((POINTER_TYPE **, size_t));
4596 static POINTER_TYPE *mmap_realloc P_ ((POINTER_TYPE **, size_t));
4597 static void mmap_free P_ ((POINTER_TYPE **ptr));
4598 static void mmap_init P_ ((void));
4601 /* Return a region overlapping address range START...END, or null if
4602 none. END is not including, i.e. the last byte in the range
4603 is at END - 1. */
4605 static struct mmap_region *
4606 mmap_find (start, end)
4607 POINTER_TYPE *start, *end;
4609 struct mmap_region *r;
4610 char *s = (char *) start, *e = (char *) end;
4612 for (r = mmap_regions; r; r = r->next)
4614 char *rstart = (char *) r;
4615 char *rend = rstart + r->nbytes_mapped;
4617 if (/* First byte of range, i.e. START, in this region? */
4618 (s >= rstart && s < rend)
4619 /* Last byte of range, i.e. END - 1, in this region? */
4620 || (e > rstart && e <= rend)
4621 /* First byte of this region in the range? */
4622 || (rstart >= s && rstart < e)
4623 /* Last byte of this region in the range? */
4624 || (rend > s && rend <= e))
4625 break;
4628 return r;
4632 /* Unmap a region. P is a pointer to the start of the user-araa of
4633 the region. Value is non-zero if successful. */
4635 static int
4636 mmap_free_1 (r)
4637 struct mmap_region *r;
4639 if (r->next)
4640 r->next->prev = r->prev;
4641 if (r->prev)
4642 r->prev->next = r->next;
4643 else
4644 mmap_regions = r->next;
4646 if (munmap ((POINTER_TYPE *) r, r->nbytes_mapped) == -1)
4648 fprintf (stderr, "munmap: %s\n", emacs_strerror (errno));
4649 return 0;
4652 return 1;
4656 /* Enlarge region R by NPAGES pages. NPAGES < 0 means shrink R.
4657 Value is non-zero if successful. */
4659 static int
4660 mmap_enlarge (r, npages)
4661 struct mmap_region *r;
4662 int npages;
4664 char *region_end = (char *) r + r->nbytes_mapped;
4665 size_t nbytes;
4666 int success = 0;
4668 if (npages < 0)
4670 /* Unmap pages at the end of the region. */
4671 nbytes = - npages * mmap_page_size;
4672 if (munmap (region_end - nbytes, nbytes) == -1)
4673 fprintf (stderr, "munmap: %s\n", emacs_strerror (errno));
4674 else
4676 r->nbytes_mapped -= nbytes;
4677 success = 1;
4680 else if (npages > 0)
4682 nbytes = npages * mmap_page_size;
4684 /* Try to map additional pages at the end of the region. We
4685 cannot do this if the address range is already occupied by
4686 something else because mmap deletes any previous mapping.
4687 I'm not sure this is worth doing, let's see. */
4688 if (!MMAP_ALLOCATED_P (region_end, region_end + nbytes))
4690 POINTER_TYPE *p;
4692 p = mmap (region_end, nbytes, PROT_READ | PROT_WRITE,
4693 MAP_ANON | MAP_PRIVATE | MAP_FIXED, mmap_fd, 0);
4694 if (p == MAP_FAILED)
4695 ; /* fprintf (stderr, "mmap: %s\n", emacs_strerror (errno)); */
4696 else if (p != (POINTER_TYPE *) region_end)
4698 /* Kernels are free to choose a different address. In
4699 that case, unmap what we've mapped above; we have
4700 no use for it. */
4701 if (munmap (p, nbytes) == -1)
4702 fprintf (stderr, "munmap: %s\n", emacs_strerror (errno));
4704 else
4706 r->nbytes_mapped += nbytes;
4707 success = 1;
4712 return success;
4716 /* Set or reset variables holding references to mapped regions. If
4717 RESTORE_P is zero, set all variables to null. If RESTORE_P is
4718 non-zero, set all variables to the start of the user-areas
4719 of mapped regions.
4721 This function is called from Fdump_emacs to ensure that the dumped
4722 Emacs doesn't contain references to memory that won't be mapped
4723 when Emacs starts. */
4725 void
4726 mmap_set_vars (restore_p)
4727 int restore_p;
4729 struct mmap_region *r;
4731 if (restore_p)
4733 mmap_regions = mmap_regions_1;
4734 mmap_fd = mmap_fd_1;
4735 for (r = mmap_regions; r; r = r->next)
4736 *r->var = MMAP_USER_AREA (r);
4738 else
4740 for (r = mmap_regions; r; r = r->next)
4741 *r->var = NULL;
4742 mmap_regions_1 = mmap_regions;
4743 mmap_regions = NULL;
4744 mmap_fd_1 = mmap_fd;
4745 mmap_fd = -1;
4750 /* Allocate a block of storage large enough to hold NBYTES bytes of
4751 data. A pointer to the data is returned in *VAR. VAR is thus the
4752 address of some variable which will use the data area.
4754 The allocation of 0 bytes is valid.
4756 If we can't allocate the necessary memory, set *VAR to null, and
4757 return null. */
4759 static POINTER_TYPE *
4760 mmap_alloc (var, nbytes)
4761 POINTER_TYPE **var;
4762 size_t nbytes;
4764 void *p;
4765 size_t map;
4767 mmap_init ();
4769 map = ROUND (nbytes + MMAP_REGION_STRUCT_SIZE, mmap_page_size);
4770 p = mmap (NULL, map, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE,
4771 mmap_fd, 0);
4773 if (p == MAP_FAILED)
4775 if (errno != ENOMEM)
4776 fprintf (stderr, "mmap: %s\n", emacs_strerror (errno));
4777 p = NULL;
4779 else
4781 struct mmap_region *r = (struct mmap_region *) p;
4783 r->nbytes_specified = nbytes;
4784 r->nbytes_mapped = map;
4785 r->var = var;
4786 r->prev = NULL;
4787 r->next = mmap_regions;
4788 if (r->next)
4789 r->next->prev = r;
4790 mmap_regions = r;
4792 p = MMAP_USER_AREA (p);
4795 return *var = p;
4799 /* Given a pointer at address VAR to data allocated with mmap_alloc,
4800 resize it to size NBYTES. Change *VAR to reflect the new block,
4801 and return this value. If more memory cannot be allocated, then
4802 leave *VAR unchanged, and return null. */
4804 static POINTER_TYPE *
4805 mmap_realloc (var, nbytes)
4806 POINTER_TYPE **var;
4807 size_t nbytes;
4809 POINTER_TYPE *result;
4811 mmap_init ();
4813 if (*var == NULL)
4814 result = mmap_alloc (var, nbytes);
4815 else if (nbytes == 0)
4817 mmap_free (var);
4818 result = mmap_alloc (var, nbytes);
4820 else
4822 struct mmap_region *r = MMAP_REGION (*var);
4823 size_t room = r->nbytes_mapped - MMAP_REGION_STRUCT_SIZE;
4825 if (room < nbytes)
4827 /* Must enlarge. */
4828 POINTER_TYPE *old_ptr = *var;
4830 /* Try to map additional pages at the end of the region.
4831 If that fails, allocate a new region, copy data
4832 from the old region, then free it. */
4833 if (mmap_enlarge (r, (ROUND (nbytes - room, mmap_page_size)
4834 / mmap_page_size)))
4836 r->nbytes_specified = nbytes;
4837 *var = result = old_ptr;
4839 else if (mmap_alloc (var, nbytes))
4841 bcopy (old_ptr, *var, r->nbytes_specified);
4842 mmap_free_1 (MMAP_REGION (old_ptr));
4843 result = *var;
4844 r = MMAP_REGION (result);
4845 r->nbytes_specified = nbytes;
4847 else
4849 *var = old_ptr;
4850 result = NULL;
4853 else if (room - nbytes >= mmap_page_size)
4855 /* Shrinking by at least a page. Let's give some
4856 memory back to the system.
4858 The extra parens are to make the division happens first,
4859 on positive values, so we know it will round towards
4860 zero. */
4861 mmap_enlarge (r, - ((room - nbytes) / mmap_page_size));
4862 result = *var;
4863 r->nbytes_specified = nbytes;
4865 else
4867 /* Leave it alone. */
4868 result = *var;
4869 r->nbytes_specified = nbytes;
4873 return result;
4877 /* Free a block of relocatable storage whose data is pointed to by
4878 PTR. Store 0 in *PTR to show there's no block allocated. */
4880 static void
4881 mmap_free (var)
4882 POINTER_TYPE **var;
4884 mmap_init ();
4886 if (*var)
4888 mmap_free_1 (MMAP_REGION (*var));
4889 *var = NULL;
4894 /* Perform necessary intializations for the use of mmap. */
4896 static void
4897 mmap_init ()
4899 #if MAP_ANON == 0
4900 /* The value of mmap_fd is initially 0 in temacs, and -1
4901 in a dumped Emacs. */
4902 if (mmap_fd <= 0)
4904 /* No anonymous mmap -- we need the file descriptor. */
4905 mmap_fd = open ("/dev/zero", O_RDONLY);
4906 if (mmap_fd == -1)
4907 fatal ("Cannot open /dev/zero: %s", emacs_strerror (errno));
4909 #endif /* MAP_ANON == 0 */
4911 if (mmap_initialized_p)
4912 return;
4913 mmap_initialized_p = 1;
4915 #if MAP_ANON != 0
4916 mmap_fd = -1;
4917 #endif
4919 mmap_page_size = getpagesize ();
4922 #endif /* USE_MMAP_FOR_BUFFERS */
4926 /***********************************************************************
4927 Buffer-text Allocation
4928 ***********************************************************************/
4930 #ifdef REL_ALLOC
4931 extern POINTER_TYPE *r_alloc P_ ((POINTER_TYPE **, size_t));
4932 extern POINTER_TYPE *r_re_alloc P_ ((POINTER_TYPE **, size_t));
4933 extern void r_alloc_free P_ ((POINTER_TYPE **ptr));
4934 #endif /* REL_ALLOC */
4937 /* Allocate NBYTES bytes for buffer B's text buffer. */
4939 static void
4940 alloc_buffer_text (b, nbytes)
4941 struct buffer *b;
4942 size_t nbytes;
4944 POINTER_TYPE *p;
4946 BLOCK_INPUT;
4947 #if defined USE_MMAP_FOR_BUFFERS
4948 p = mmap_alloc ((POINTER_TYPE **) &b->text->beg, nbytes);
4949 #elif defined REL_ALLOC
4950 p = r_alloc ((POINTER_TYPE **) &b->text->beg, nbytes);
4951 #else
4952 p = xmalloc (nbytes);
4953 #endif
4955 if (p == NULL)
4957 UNBLOCK_INPUT;
4958 memory_full ();
4961 b->text->beg = (unsigned char *) p;
4962 UNBLOCK_INPUT;
4965 /* Enlarge buffer B's text buffer by DELTA bytes. DELTA < 0 means
4966 shrink it. */
4968 void
4969 enlarge_buffer_text (b, delta)
4970 struct buffer *b;
4971 int delta;
4973 POINTER_TYPE *p;
4974 size_t nbytes = (BUF_Z_BYTE (b) - BUF_BEG_BYTE (b) + BUF_GAP_SIZE (b) + 1
4975 + delta);
4976 BLOCK_INPUT;
4977 #if defined USE_MMAP_FOR_BUFFERS
4978 p = mmap_realloc ((POINTER_TYPE **) &b->text->beg, nbytes);
4979 #elif defined REL_ALLOC
4980 p = r_re_alloc ((POINTER_TYPE **) &b->text->beg, nbytes);
4981 #else
4982 p = xrealloc (b->text->beg, nbytes);
4983 #endif
4985 if (p == NULL)
4987 UNBLOCK_INPUT;
4988 memory_full ();
4991 BUF_BEG_ADDR (b) = (unsigned char *) p;
4992 UNBLOCK_INPUT;
4996 /* Free buffer B's text buffer. */
4998 static void
4999 free_buffer_text (b)
5000 struct buffer *b;
5002 BLOCK_INPUT;
5004 #if defined USE_MMAP_FOR_BUFFERS
5005 mmap_free ((POINTER_TYPE **) &b->text->beg);
5006 #elif defined REL_ALLOC
5007 r_alloc_free ((POINTER_TYPE **) &b->text->beg);
5008 #else
5009 xfree (b->text->beg);
5010 #endif
5012 BUF_BEG_ADDR (b) = NULL;
5013 UNBLOCK_INPUT;
5018 /***********************************************************************
5019 Initialization
5020 ***********************************************************************/
5022 void
5023 init_buffer_once ()
5025 int idx;
5027 bzero (buffer_permanent_local_flags, sizeof buffer_permanent_local_flags);
5029 /* Make sure all markable slots in buffer_defaults
5030 are initialized reasonably, so mark_buffer won't choke. */
5031 reset_buffer (&buffer_defaults);
5032 reset_buffer_local_variables (&buffer_defaults, 1);
5033 reset_buffer (&buffer_local_symbols);
5034 reset_buffer_local_variables (&buffer_local_symbols, 1);
5035 /* Prevent GC from getting confused. */
5036 buffer_defaults.text = &buffer_defaults.own_text;
5037 buffer_local_symbols.text = &buffer_local_symbols.own_text;
5038 BUF_INTERVALS (&buffer_defaults) = 0;
5039 BUF_INTERVALS (&buffer_local_symbols) = 0;
5040 XSETPVECTYPE (&buffer_defaults, PVEC_BUFFER);
5041 XSETBUFFER (Vbuffer_defaults, &buffer_defaults);
5042 XSETPVECTYPE (&buffer_local_symbols, PVEC_BUFFER);
5043 XSETBUFFER (Vbuffer_local_symbols, &buffer_local_symbols);
5045 /* Set up the default values of various buffer slots. */
5046 /* Must do these before making the first buffer! */
5048 /* real setup is done in bindings.el */
5049 buffer_defaults.mode_line_format = build_string ("%-");
5050 buffer_defaults.header_line_format = Qnil;
5051 buffer_defaults.abbrev_mode = Qnil;
5052 buffer_defaults.overwrite_mode = Qnil;
5053 buffer_defaults.case_fold_search = Qt;
5054 buffer_defaults.auto_fill_function = Qnil;
5055 buffer_defaults.selective_display = Qnil;
5056 #ifndef old
5057 buffer_defaults.selective_display_ellipses = Qt;
5058 #endif
5059 buffer_defaults.abbrev_table = Qnil;
5060 buffer_defaults.display_table = Qnil;
5061 buffer_defaults.undo_list = Qnil;
5062 buffer_defaults.mark_active = Qnil;
5063 buffer_defaults.file_format = Qnil;
5064 buffer_defaults.auto_save_file_format = Qt;
5065 buffer_defaults.overlays_before = NULL;
5066 buffer_defaults.overlays_after = NULL;
5067 buffer_defaults.overlay_center = BEG;
5069 XSETFASTINT (buffer_defaults.tab_width, 8);
5070 buffer_defaults.truncate_lines = Qnil;
5071 buffer_defaults.ctl_arrow = Qt;
5072 buffer_defaults.direction_reversed = Qnil;
5073 buffer_defaults.cursor_type = Qt;
5074 buffer_defaults.extra_line_spacing = Qnil;
5075 buffer_defaults.cursor_in_non_selected_windows = Qt;
5077 #ifdef DOS_NT
5078 buffer_defaults.buffer_file_type = Qnil; /* TEXT */
5079 #endif
5080 buffer_defaults.enable_multibyte_characters = Qt;
5081 buffer_defaults.buffer_file_coding_system = Qnil;
5082 XSETFASTINT (buffer_defaults.fill_column, 70);
5083 XSETFASTINT (buffer_defaults.left_margin, 0);
5084 buffer_defaults.cache_long_line_scans = Qnil;
5085 buffer_defaults.file_truename = Qnil;
5086 XSETFASTINT (buffer_defaults.display_count, 0);
5087 XSETFASTINT (buffer_defaults.left_margin_cols, 0);
5088 XSETFASTINT (buffer_defaults.right_margin_cols, 0);
5089 buffer_defaults.left_fringe_width = Qnil;
5090 buffer_defaults.right_fringe_width = Qnil;
5091 buffer_defaults.fringes_outside_margins = Qnil;
5092 buffer_defaults.scroll_bar_width = Qnil;
5093 buffer_defaults.vertical_scroll_bar_type = Qt;
5094 buffer_defaults.indicate_empty_lines = Qnil;
5095 buffer_defaults.indicate_buffer_boundaries = Qnil;
5096 buffer_defaults.fringe_indicator_alist = Qnil;
5097 buffer_defaults.fringe_cursor_alist = Qnil;
5098 buffer_defaults.scroll_up_aggressively = Qnil;
5099 buffer_defaults.scroll_down_aggressively = Qnil;
5100 buffer_defaults.display_time = Qnil;
5102 /* Assign the local-flags to the slots that have default values.
5103 The local flag is a bit that is used in the buffer
5104 to say that it has its own local value for the slot.
5105 The local flag bits are in the local_var_flags slot of the buffer. */
5107 /* Nothing can work if this isn't true */
5108 if (sizeof (EMACS_INT) != sizeof (Lisp_Object)) abort ();
5110 /* 0 means not a lisp var, -1 means always local, else mask */
5111 bzero (&buffer_local_flags, sizeof buffer_local_flags);
5112 XSETINT (buffer_local_flags.filename, -1);
5113 XSETINT (buffer_local_flags.directory, -1);
5114 XSETINT (buffer_local_flags.backed_up, -1);
5115 XSETINT (buffer_local_flags.save_length, -1);
5116 XSETINT (buffer_local_flags.auto_save_file_name, -1);
5117 XSETINT (buffer_local_flags.read_only, -1);
5118 XSETINT (buffer_local_flags.major_mode, -1);
5119 XSETINT (buffer_local_flags.mode_name, -1);
5120 XSETINT (buffer_local_flags.undo_list, -1);
5121 XSETINT (buffer_local_flags.mark_active, -1);
5122 XSETINT (buffer_local_flags.point_before_scroll, -1);
5123 XSETINT (buffer_local_flags.file_truename, -1);
5124 XSETINT (buffer_local_flags.invisibility_spec, -1);
5125 XSETINT (buffer_local_flags.file_format, -1);
5126 XSETINT (buffer_local_flags.auto_save_file_format, -1);
5127 XSETINT (buffer_local_flags.display_count, -1);
5128 XSETINT (buffer_local_flags.display_time, -1);
5129 XSETINT (buffer_local_flags.enable_multibyte_characters, -1);
5131 idx = 1;
5132 XSETFASTINT (buffer_local_flags.mode_line_format, idx); ++idx;
5133 XSETFASTINT (buffer_local_flags.abbrev_mode, idx); ++idx;
5134 XSETFASTINT (buffer_local_flags.overwrite_mode, idx); ++idx;
5135 XSETFASTINT (buffer_local_flags.case_fold_search, idx); ++idx;
5136 XSETFASTINT (buffer_local_flags.auto_fill_function, idx); ++idx;
5137 XSETFASTINT (buffer_local_flags.selective_display, idx); ++idx;
5138 #ifndef old
5139 XSETFASTINT (buffer_local_flags.selective_display_ellipses, idx); ++idx;
5140 #endif
5141 XSETFASTINT (buffer_local_flags.tab_width, idx); ++idx;
5142 XSETFASTINT (buffer_local_flags.truncate_lines, idx); ++idx;
5143 XSETFASTINT (buffer_local_flags.ctl_arrow, idx); ++idx;
5144 XSETFASTINT (buffer_local_flags.fill_column, idx); ++idx;
5145 XSETFASTINT (buffer_local_flags.left_margin, idx); ++idx;
5146 XSETFASTINT (buffer_local_flags.abbrev_table, idx); ++idx;
5147 XSETFASTINT (buffer_local_flags.display_table, idx); ++idx;
5148 #ifdef DOS_NT
5149 XSETFASTINT (buffer_local_flags.buffer_file_type, idx);
5150 /* Make this one a permanent local. */
5151 buffer_permanent_local_flags[idx++] = 1;
5152 #endif
5153 XSETFASTINT (buffer_local_flags.syntax_table, idx); ++idx;
5154 XSETFASTINT (buffer_local_flags.cache_long_line_scans, idx); ++idx;
5155 XSETFASTINT (buffer_local_flags.category_table, idx); ++idx;
5156 XSETFASTINT (buffer_local_flags.direction_reversed, idx); ++idx;
5157 XSETFASTINT (buffer_local_flags.buffer_file_coding_system, idx);
5158 /* Make this one a permanent local. */
5159 buffer_permanent_local_flags[idx++] = 1;
5160 XSETFASTINT (buffer_local_flags.left_margin_cols, idx); ++idx;
5161 XSETFASTINT (buffer_local_flags.right_margin_cols, idx); ++idx;
5162 XSETFASTINT (buffer_local_flags.left_fringe_width, idx); ++idx;
5163 XSETFASTINT (buffer_local_flags.right_fringe_width, idx); ++idx;
5164 XSETFASTINT (buffer_local_flags.fringes_outside_margins, idx); ++idx;
5165 XSETFASTINT (buffer_local_flags.scroll_bar_width, idx); ++idx;
5166 XSETFASTINT (buffer_local_flags.vertical_scroll_bar_type, idx); ++idx;
5167 XSETFASTINT (buffer_local_flags.indicate_empty_lines, idx); ++idx;
5168 XSETFASTINT (buffer_local_flags.indicate_buffer_boundaries, idx); ++idx;
5169 XSETFASTINT (buffer_local_flags.fringe_indicator_alist, idx); ++idx;
5170 XSETFASTINT (buffer_local_flags.fringe_cursor_alist, idx); ++idx;
5171 XSETFASTINT (buffer_local_flags.scroll_up_aggressively, idx); ++idx;
5172 XSETFASTINT (buffer_local_flags.scroll_down_aggressively, idx); ++idx;
5173 XSETFASTINT (buffer_local_flags.header_line_format, idx); ++idx;
5174 XSETFASTINT (buffer_local_flags.cursor_type, idx); ++idx;
5175 XSETFASTINT (buffer_local_flags.extra_line_spacing, idx); ++idx;
5176 XSETFASTINT (buffer_local_flags.cursor_in_non_selected_windows, idx); ++idx;
5178 /* Need more room? */
5179 if (idx >= MAX_PER_BUFFER_VARS)
5180 abort ();
5181 last_per_buffer_idx = idx;
5183 Vbuffer_alist = Qnil;
5184 current_buffer = 0;
5185 all_buffers = 0;
5187 QSFundamental = build_string ("Fundamental");
5189 Qfundamental_mode = intern ("fundamental-mode");
5190 buffer_defaults.major_mode = Qfundamental_mode;
5192 Qmode_class = intern ("mode-class");
5194 Qprotected_field = intern ("protected-field");
5196 Qpermanent_local = intern ("permanent-local");
5198 Qkill_buffer_hook = intern ("kill-buffer-hook");
5199 Fput (Qkill_buffer_hook, Qpermanent_local, Qt);
5201 Qucs_set_table_for_input = intern ("ucs-set-table-for-input");
5203 Vprin1_to_string_buffer = Fget_buffer_create (build_string (" prin1"));
5205 /* super-magic invisible buffer */
5206 Vbuffer_alist = Qnil;
5208 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
5210 inhibit_modification_hooks = 0;
5213 void
5214 init_buffer ()
5216 char *pwd;
5217 Lisp_Object temp;
5218 int len;
5220 #ifdef USE_MMAP_FOR_BUFFERS
5222 /* When using the ralloc implementation based on mmap(2), buffer
5223 text pointers will have been set to null in the dumped Emacs.
5224 Map new memory. */
5225 struct buffer *b;
5227 for (b = all_buffers; b; b = b->next)
5228 if (b->text->beg == NULL)
5229 enlarge_buffer_text (b, 0);
5231 #endif /* USE_MMAP_FOR_BUFFERS */
5233 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
5234 if (NILP (buffer_defaults.enable_multibyte_characters))
5235 Fset_buffer_multibyte (Qnil);
5237 pwd = get_current_dir_name ();
5239 if (!pwd)
5240 fatal ("`get_current_dir_name' failed: %s\n", strerror (errno));
5242 #ifndef VMS
5243 /* Maybe this should really use some standard subroutine
5244 whose definition is filename syntax dependent. */
5245 len = strlen (pwd);
5246 if (!(IS_DIRECTORY_SEP (pwd[len - 1])))
5248 /* Grow buffer to add directory separator and '\0'. */
5249 pwd = (char *) xrealloc (pwd, len + 2);
5250 pwd[len] = DIRECTORY_SEP;
5251 pwd[len + 1] = '\0';
5253 #endif /* not VMS */
5255 current_buffer->directory = make_unibyte_string (pwd, strlen (pwd));
5256 if (! NILP (buffer_defaults.enable_multibyte_characters))
5257 /* At this moment, we still don't know how to decode the
5258 directory name. So, we keep the bytes in multibyte form so
5259 that ENCODE_FILE correctly gets the original bytes. */
5260 current_buffer->directory
5261 = string_to_multibyte (current_buffer->directory);
5263 /* Add /: to the front of the name
5264 if it would otherwise be treated as magic. */
5265 temp = Ffind_file_name_handler (current_buffer->directory, Qt);
5266 if (! NILP (temp)
5267 /* If the default dir is just /, TEMP is non-nil
5268 because of the ange-ftp completion handler.
5269 However, it is not necessary to turn / into /:/.
5270 So avoid doing that. */
5271 && strcmp ("/", SDATA (current_buffer->directory)))
5272 current_buffer->directory
5273 = concat2 (build_string ("/:"), current_buffer->directory);
5275 temp = get_minibuffer (0);
5276 XBUFFER (temp)->directory = current_buffer->directory;
5278 free (pwd);
5281 /* Similar to defvar_lisp but define a variable whose value is the Lisp
5282 Object stored in the current buffer. address is the address of the slot
5283 in the buffer that is current now. */
5285 /* TYPE is nil for a general Lisp variable.
5286 An integer specifies a type; then only LIsp values
5287 with that type code are allowed (except that nil is allowed too).
5288 LNAME is the LIsp-level variable name.
5289 VNAME is the name of the buffer slot.
5290 DOC is a dummy where you write the doc string as a comment. */
5291 #define DEFVAR_PER_BUFFER(lname, vname, type, doc) \
5292 defvar_per_buffer (lname, vname, type, 0)
5294 static void
5295 defvar_per_buffer (namestring, address, type, doc)
5296 char *namestring;
5297 Lisp_Object *address;
5298 Lisp_Object type;
5299 char *doc;
5301 Lisp_Object sym, val;
5302 int offset;
5304 sym = intern (namestring);
5305 val = allocate_misc ();
5306 offset = (char *)address - (char *)current_buffer;
5308 XMISCTYPE (val) = Lisp_Misc_Buffer_Objfwd;
5309 XBUFFER_OBJFWD (val)->offset = offset;
5310 SET_SYMBOL_VALUE (sym, val);
5311 PER_BUFFER_SYMBOL (offset) = sym;
5312 PER_BUFFER_TYPE (offset) = type;
5314 if (PER_BUFFER_IDX (offset) == 0)
5315 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding
5316 slot of buffer_local_flags */
5317 abort ();
5321 /* initialize the buffer routines */
5322 void
5323 syms_of_buffer ()
5325 staticpro (&last_overlay_modification_hooks);
5326 last_overlay_modification_hooks
5327 = Fmake_vector (make_number (10), Qnil);
5329 staticpro (&Vbuffer_defaults);
5330 staticpro (&Vbuffer_local_symbols);
5331 staticpro (&Qfundamental_mode);
5332 staticpro (&Qmode_class);
5333 staticpro (&QSFundamental);
5334 staticpro (&Vbuffer_alist);
5335 staticpro (&Qprotected_field);
5336 staticpro (&Qpermanent_local);
5337 staticpro (&Qkill_buffer_hook);
5338 Qoverlayp = intern ("overlayp");
5339 staticpro (&Qoverlayp);
5340 Qevaporate = intern ("evaporate");
5341 staticpro (&Qevaporate);
5342 Qmodification_hooks = intern ("modification-hooks");
5343 staticpro (&Qmodification_hooks);
5344 Qinsert_in_front_hooks = intern ("insert-in-front-hooks");
5345 staticpro (&Qinsert_in_front_hooks);
5346 Qinsert_behind_hooks = intern ("insert-behind-hooks");
5347 staticpro (&Qinsert_behind_hooks);
5348 Qget_file_buffer = intern ("get-file-buffer");
5349 staticpro (&Qget_file_buffer);
5350 Qpriority = intern ("priority");
5351 staticpro (&Qpriority);
5352 Qwindow = intern ("window");
5353 staticpro (&Qwindow);
5354 Qbefore_string = intern ("before-string");
5355 staticpro (&Qbefore_string);
5356 Qafter_string = intern ("after-string");
5357 staticpro (&Qafter_string);
5358 Qfirst_change_hook = intern ("first-change-hook");
5359 staticpro (&Qfirst_change_hook);
5360 Qbefore_change_functions = intern ("before-change-functions");
5361 staticpro (&Qbefore_change_functions);
5362 Qafter_change_functions = intern ("after-change-functions");
5363 staticpro (&Qafter_change_functions);
5364 staticpro (&Qucs_set_table_for_input);
5366 Qkill_buffer_query_functions = intern ("kill-buffer-query-functions");
5367 staticpro (&Qkill_buffer_query_functions);
5369 Fput (Qprotected_field, Qerror_conditions,
5370 Fcons (Qprotected_field, Fcons (Qerror, Qnil)));
5371 Fput (Qprotected_field, Qerror_message,
5372 build_string ("Attempt to modify a protected field"));
5374 /* All these use DEFVAR_LISP_NOPRO because the slots in
5375 buffer_defaults will all be marked via Vbuffer_defaults. */
5377 DEFVAR_LISP_NOPRO ("default-mode-line-format",
5378 &buffer_defaults.mode_line_format,
5379 doc: /* Default value of `mode-line-format' for buffers that don't override it.
5380 This is the same as (default-value 'mode-line-format). */);
5382 DEFVAR_LISP_NOPRO ("default-header-line-format",
5383 &buffer_defaults.header_line_format,
5384 doc: /* Default value of `header-line-format' for buffers that don't override it.
5385 This is the same as (default-value 'header-line-format). */);
5387 DEFVAR_LISP_NOPRO ("default-cursor-type", &buffer_defaults.cursor_type,
5388 doc: /* Default value of `cursor-type' for buffers that don't override it.
5389 This is the same as (default-value 'cursor-type). */);
5391 DEFVAR_LISP_NOPRO ("default-line-spacing",
5392 &buffer_defaults.extra_line_spacing,
5393 doc: /* Default value of `line-spacing' for buffers that don't override it.
5394 This is the same as (default-value 'line-spacing). */);
5396 DEFVAR_LISP_NOPRO ("default-cursor-in-non-selected-windows",
5397 &buffer_defaults.cursor_in_non_selected_windows,
5398 doc: /* Default value of `cursor-in-non-selected-windows'.
5399 This is the same as (default-value 'cursor-in-non-selected-windows). */);
5401 DEFVAR_LISP_NOPRO ("default-abbrev-mode",
5402 &buffer_defaults.abbrev_mode,
5403 doc: /* Default value of `abbrev-mode' for buffers that do not override it.
5404 This is the same as (default-value 'abbrev-mode). */);
5406 DEFVAR_LISP_NOPRO ("default-ctl-arrow",
5407 &buffer_defaults.ctl_arrow,
5408 doc: /* Default value of `ctl-arrow' for buffers that do not override it.
5409 This is the same as (default-value 'ctl-arrow). */);
5411 DEFVAR_LISP_NOPRO ("default-direction-reversed",
5412 &buffer_defaults.direction_reversed,
5413 doc: /* Default value of `direction-reversed' for buffers that do not override it.
5414 This is the same as (default-value 'direction-reversed). */);
5416 DEFVAR_LISP_NOPRO ("default-enable-multibyte-characters",
5417 &buffer_defaults.enable_multibyte_characters,
5418 doc: /* *Default value of `enable-multibyte-characters' for buffers not overriding it.
5419 This is the same as (default-value 'enable-multibyte-characters). */);
5421 DEFVAR_LISP_NOPRO ("default-buffer-file-coding-system",
5422 &buffer_defaults.buffer_file_coding_system,
5423 doc: /* Default value of `buffer-file-coding-system' for buffers not overriding it.
5424 This is the same as (default-value 'buffer-file-coding-system). */);
5426 DEFVAR_LISP_NOPRO ("default-truncate-lines",
5427 &buffer_defaults.truncate_lines,
5428 doc: /* Default value of `truncate-lines' for buffers that do not override it.
5429 This is the same as (default-value 'truncate-lines). */);
5431 DEFVAR_LISP_NOPRO ("default-fill-column",
5432 &buffer_defaults.fill_column,
5433 doc: /* Default value of `fill-column' for buffers that do not override it.
5434 This is the same as (default-value 'fill-column). */);
5436 DEFVAR_LISP_NOPRO ("default-left-margin",
5437 &buffer_defaults.left_margin,
5438 doc: /* Default value of `left-margin' for buffers that do not override it.
5439 This is the same as (default-value 'left-margin). */);
5441 DEFVAR_LISP_NOPRO ("default-tab-width",
5442 &buffer_defaults.tab_width,
5443 doc: /* Default value of `tab-width' for buffers that do not override it.
5444 This is the same as (default-value 'tab-width). */);
5446 DEFVAR_LISP_NOPRO ("default-case-fold-search",
5447 &buffer_defaults.case_fold_search,
5448 doc: /* Default value of `case-fold-search' for buffers that don't override it.
5449 This is the same as (default-value 'case-fold-search). */);
5451 #ifdef DOS_NT
5452 DEFVAR_LISP_NOPRO ("default-buffer-file-type",
5453 &buffer_defaults.buffer_file_type,
5454 doc: /* Default file type for buffers that do not override it.
5455 This is the same as (default-value 'buffer-file-type).
5456 The file type is nil for text, t for binary. */);
5457 #endif
5459 DEFVAR_LISP_NOPRO ("default-left-margin-width",
5460 &buffer_defaults.left_margin_cols,
5461 doc: /* Default value of `left-margin-width' for buffers that don't override it.
5462 This is the same as (default-value 'left-margin-width). */);
5464 DEFVAR_LISP_NOPRO ("default-right-margin-width",
5465 &buffer_defaults.right_margin_cols,
5466 doc: /* Default value of `right-margin-width' for buffers that don't override it.
5467 This is the same as (default-value 'right-margin-width). */);
5469 DEFVAR_LISP_NOPRO ("default-left-fringe-width",
5470 &buffer_defaults.left_fringe_width,
5471 doc: /* Default value of `left-fringe-width' for buffers that don't override it.
5472 This is the same as (default-value 'left-fringe-width). */);
5474 DEFVAR_LISP_NOPRO ("default-right-fringe-width",
5475 &buffer_defaults.right_fringe_width,
5476 doc: /* Default value of `right-fringe-width' for buffers that don't override it.
5477 This is the same as (default-value 'right-fringe-width). */);
5479 DEFVAR_LISP_NOPRO ("default-fringes-outside-margins",
5480 &buffer_defaults.fringes_outside_margins,
5481 doc: /* Default value of `fringes-outside-margins' for buffers that don't override it.
5482 This is the same as (default-value 'fringes-outside-margins). */);
5484 DEFVAR_LISP_NOPRO ("default-scroll-bar-width",
5485 &buffer_defaults.scroll_bar_width,
5486 doc: /* Default value of `scroll-bar-width' for buffers that don't override it.
5487 This is the same as (default-value 'scroll-bar-width). */);
5489 DEFVAR_LISP_NOPRO ("default-vertical-scroll-bar",
5490 &buffer_defaults.vertical_scroll_bar_type,
5491 doc: /* Default value of `vertical-scroll-bar' for buffers that don't override it.
5492 This is the same as (default-value 'vertical-scroll-bar). */);
5494 DEFVAR_LISP_NOPRO ("default-indicate-empty-lines",
5495 &buffer_defaults.indicate_empty_lines,
5496 doc: /* Default value of `indicate-empty-lines' for buffers that don't override it.
5497 This is the same as (default-value 'indicate-empty-lines). */);
5499 DEFVAR_LISP_NOPRO ("default-indicate-buffer-boundaries",
5500 &buffer_defaults.indicate_buffer_boundaries,
5501 doc: /* Default value of `indicate-buffer-boundaries' for buffers that don't override it.
5502 This is the same as (default-value 'indicate-buffer-boundaries). */);
5504 DEFVAR_LISP_NOPRO ("default-fringe-indicator-alist",
5505 &buffer_defaults.fringe_indicator_alist,
5506 doc: /* Default value of `fringe-indicator-alist' for buffers that don't override it.
5507 This is the same as (default-value 'fringe-indicator-alist'). */);
5509 DEFVAR_LISP_NOPRO ("default-fringe-cursor-alist",
5510 &buffer_defaults.fringe_cursor_alist,
5511 doc: /* Default value of `fringe-cursor-alist' for buffers that don't override it.
5512 This is the same as (default-value 'fringe-cursor-alist'). */);
5514 DEFVAR_LISP_NOPRO ("default-scroll-up-aggressively",
5515 &buffer_defaults.scroll_up_aggressively,
5516 doc: /* Default value of `scroll-up-aggressively'.
5517 This value applies in buffers that don't have their own local values.
5518 This is the same as (default-value 'scroll-up-aggressively). */);
5520 DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively",
5521 &buffer_defaults.scroll_down_aggressively,
5522 doc: /* Default value of `scroll-down-aggressively'.
5523 This value applies in buffers that don't have their own local values.
5524 This is the same as (default-value 'scroll-down-aggressively). */);
5526 DEFVAR_PER_BUFFER ("header-line-format",
5527 &current_buffer->header_line_format,
5528 Qnil,
5529 doc: /* Analogous to `mode-line-format', but controls the header line.
5530 The header line appears, optionally, at the top of a window;
5531 the mode line appears at the bottom. */);
5533 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
5534 Qnil,
5535 doc: /* Template for displaying mode line for current buffer.
5536 Each buffer has its own value of this variable.
5537 Value may be nil, a string, a symbol or a list or cons cell.
5538 A value of nil means don't display a mode line.
5539 For a symbol, its value is used (but it is ignored if t or nil).
5540 A string appearing directly as the value of a symbol is processed verbatim
5541 in that the %-constructs below are not recognized.
5542 Note that unless the symbol is marked as a `risky-local-variable', all
5543 properties in any strings, as well as all :eval and :propertize forms
5544 in the value of that symbol will be ignored.
5545 For a list of the form `(:eval FORM)', FORM is evaluated and the result
5546 is used as a mode line element. Be careful--FORM should not load any files,
5547 because that can cause an infinite recursion.
5548 For a list of the form `(:propertize ELT PROPS...)', ELT is displayed
5549 with the specified properties PROPS applied.
5550 For a list whose car is a symbol, the symbol's value is taken,
5551 and if that is non-nil, the cadr of the list is processed recursively.
5552 Otherwise, the caddr of the list (if there is one) is processed.
5553 For a list whose car is a string or list, each element is processed
5554 recursively and the results are effectively concatenated.
5555 For a list whose car is an integer, the cdr of the list is processed
5556 and padded (if the number is positive) or truncated (if negative)
5557 to the width specified by that number.
5558 A string is printed verbatim in the mode line except for %-constructs:
5559 (%-constructs are allowed when the string is the entire mode-line-format
5560 or when it is found in a cons-cell or a list)
5561 %b -- print buffer name. %f -- print visited file name.
5562 %F -- print frame name.
5563 %* -- print %, * or hyphen. %+ -- print *, % or hyphen.
5564 %& is like %*, but ignore read-only-ness.
5565 % means buffer is read-only and * means it is modified.
5566 For a modified read-only buffer, %* gives % and %+ gives *.
5567 %s -- print process status. %l -- print the current line number.
5568 %c -- print the current column number (this makes editing slower).
5569 To make the column number update correctly in all cases,
5570 `column-number-mode' must be non-nil.
5571 %i -- print the size of the buffer.
5572 %I -- like %i, but use k, M, G, etc., to abbreviate.
5573 %p -- print percent of buffer above top of window, or Top, Bot or All.
5574 %P -- print percent of buffer above bottom of window, perhaps plus Top,
5575 or print Bottom or All.
5576 %n -- print Narrow if appropriate.
5577 %t -- visited file is text or binary (if OS supports this distinction).
5578 %z -- print mnemonics of keyboard, terminal, and buffer coding systems.
5579 %Z -- like %z, but including the end-of-line format.
5580 %e -- print error message about full memory.
5581 %@ -- print @ or hyphen. @ means that default-directory is on a
5582 remote machine.
5583 %[ -- print one [ for each recursive editing level. %] similar.
5584 %% -- print %. %- -- print infinitely many dashes.
5585 Decimal digits after the % specify field width to which to pad. */);
5587 DEFVAR_LISP_NOPRO ("default-major-mode", &buffer_defaults.major_mode,
5588 doc: /* *Major mode for new buffers. Defaults to `fundamental-mode'.
5589 A value of nil means use current buffer's major mode,
5590 provided it is not marked as "special".
5592 When a mode is used by default, `find-file' switches to it
5593 before it reads the contents into the buffer and before
5594 it finishes setting up the buffer. Thus, the mode and
5595 its hooks should not expect certain variables such as
5596 `buffer-read-only' and `buffer-file-coding-system' to be set up. */);
5598 DEFVAR_PER_BUFFER ("major-mode", &current_buffer->major_mode,
5599 make_number (Lisp_Symbol),
5600 doc: /* Symbol for current buffer's major mode. */);
5602 DEFVAR_PER_BUFFER ("mode-name", &current_buffer->mode_name,
5603 Qnil,
5604 doc: /* Pretty name of current buffer's major mode (a string). */);
5606 DEFVAR_PER_BUFFER ("local-abbrev-table", &current_buffer->abbrev_table, Qnil,
5607 doc: /* Local (mode-specific) abbrev table of current buffer. */);
5609 DEFVAR_PER_BUFFER ("abbrev-mode", &current_buffer->abbrev_mode, Qnil,
5610 doc: /* Non-nil turns on automatic expansion of abbrevs as they are inserted. */);
5612 DEFVAR_PER_BUFFER ("case-fold-search", &current_buffer->case_fold_search,
5613 Qnil,
5614 doc: /* *Non-nil if searches and matches should ignore case. */);
5616 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column,
5617 make_number (Lisp_Int),
5618 doc: /* *Column beyond which automatic line-wrapping should happen.
5619 Interactively, you can set the buffer local value using \\[set-fill-column]. */);
5621 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin,
5622 make_number (Lisp_Int),
5623 doc: /* *Column for the default `indent-line-function' to indent to.
5624 Linefeed indents to this column in Fundamental mode. */);
5626 DEFVAR_PER_BUFFER ("tab-width", &current_buffer->tab_width,
5627 make_number (Lisp_Int),
5628 doc: /* *Distance between tab stops (for display of tab characters), in columns. */);
5630 DEFVAR_PER_BUFFER ("ctl-arrow", &current_buffer->ctl_arrow, Qnil,
5631 doc: /* *Non-nil means display control chars with uparrow.
5632 A value of nil means use backslash and octal digits.
5633 This variable does not apply to characters whose display is specified
5634 in the current display table (if there is one). */);
5636 DEFVAR_PER_BUFFER ("enable-multibyte-characters",
5637 &current_buffer->enable_multibyte_characters,
5638 Qnil,
5639 doc: /* Non-nil means the buffer contents are regarded as multi-byte characters.
5640 Otherwise they are regarded as unibyte. This affects the display,
5641 file I/O and the behavior of various editing commands.
5643 This variable is buffer-local but you cannot set it directly;
5644 use the function `set-buffer-multibyte' to change a buffer's representation.
5645 Changing its default value with `setq-default' is supported.
5646 See also variable `default-enable-multibyte-characters' and Info node
5647 `(elisp)Text Representations'. */);
5648 XSYMBOL (intern ("enable-multibyte-characters"))->constant = 1;
5650 DEFVAR_PER_BUFFER ("buffer-file-coding-system",
5651 &current_buffer->buffer_file_coding_system, Qnil,
5652 doc: /* Coding system to be used for encoding the buffer contents on saving.
5653 This variable applies to saving the buffer, and also to `write-region'
5654 and other functions that use `write-region'.
5655 It does not apply to sending output to subprocesses, however.
5657 If this is nil, the buffer is saved without any code conversion
5658 unless some coding system is specified in `file-coding-system-alist'
5659 for the buffer file.
5661 If the text to be saved cannot be encoded as specified by this variable,
5662 an alternative encoding is selected by `select-safe-coding-system', which see.
5664 The variable `coding-system-for-write', if non-nil, overrides this variable.
5666 This variable is never applied to a way of decoding a file while reading it. */);
5668 DEFVAR_PER_BUFFER ("direction-reversed", &current_buffer->direction_reversed,
5669 Qnil,
5670 doc: /* *Non-nil means lines in the buffer are displayed right to left. */);
5672 DEFVAR_PER_BUFFER ("truncate-lines", &current_buffer->truncate_lines, Qnil,
5673 doc: /* *Non-nil means do not display continuation lines.
5674 Instead, give each line of text just one screen line.
5676 Note that this is overridden by the variable
5677 `truncate-partial-width-windows' if that variable is non-nil
5678 and this buffer is not full-frame width. */);
5680 #ifdef DOS_NT
5681 DEFVAR_PER_BUFFER ("buffer-file-type", &current_buffer->buffer_file_type,
5682 Qnil,
5683 doc: /* Non-nil if the visited file is a binary file.
5684 This variable is meaningful on MS-DOG and Windows NT.
5685 On those systems, it is automatically local in every buffer.
5686 On other systems, this variable is normally always nil. */);
5687 #endif
5689 DEFVAR_PER_BUFFER ("default-directory", &current_buffer->directory,
5690 make_number (Lisp_String),
5691 doc: /* Name of default directory of current buffer. Should end with slash.
5692 To interactively change the default directory, use command `cd'. */);
5694 DEFVAR_PER_BUFFER ("auto-fill-function", &current_buffer->auto_fill_function,
5695 Qnil,
5696 doc: /* Function called (if non-nil) to perform auto-fill.
5697 It is called after self-inserting any character specified in
5698 the `auto-fill-chars' table.
5699 NOTE: This variable is not a hook;
5700 its value may not be a list of functions. */);
5702 DEFVAR_PER_BUFFER ("buffer-file-name", &current_buffer->filename,
5703 make_number (Lisp_String),
5704 doc: /* Name of file visited in current buffer, or nil if not visiting a file. */);
5706 DEFVAR_PER_BUFFER ("buffer-file-truename", &current_buffer->file_truename,
5707 make_number (Lisp_String),
5708 doc: /* Abbreviated truename of file visited in current buffer, or nil if none.
5709 The truename of a file is calculated by `file-truename'
5710 and then abbreviated with `abbreviate-file-name'. */);
5712 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
5713 &current_buffer->auto_save_file_name,
5714 make_number (Lisp_String),
5715 doc: /* Name of file for auto-saving current buffer.
5716 If it is nil, that means don't auto-save this buffer. */);
5718 DEFVAR_PER_BUFFER ("buffer-read-only", &current_buffer->read_only, Qnil,
5719 doc: /* Non-nil if this buffer is read-only. */);
5721 DEFVAR_PER_BUFFER ("buffer-backed-up", &current_buffer->backed_up, Qnil,
5722 doc: /* Non-nil if this buffer's file has been backed up.
5723 Backing up is done before the first time the file is saved. */);
5725 DEFVAR_PER_BUFFER ("buffer-saved-size", &current_buffer->save_length,
5726 make_number (Lisp_Int),
5727 doc: /* Length of current buffer when last read in, saved or auto-saved.
5728 0 initially. */);
5730 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
5731 Qnil,
5732 doc: /* Non-nil enables selective display.
5733 An integer N as value means display only lines
5734 that start with less than N columns of space.
5735 A value of t means that the character ^M makes itself and
5736 all the rest of the line invisible; also, when saving the buffer
5737 in a file, save the ^M as a newline. */);
5739 #ifndef old
5740 DEFVAR_PER_BUFFER ("selective-display-ellipses",
5741 &current_buffer->selective_display_ellipses,
5742 Qnil,
5743 doc: /* Non-nil means display ... on previous line when a line is invisible. */);
5744 #endif
5746 DEFVAR_PER_BUFFER ("overwrite-mode", &current_buffer->overwrite_mode, Qnil,
5747 doc: /* Non-nil if self-insertion should replace existing text.
5748 The value should be one of `overwrite-mode-textual',
5749 `overwrite-mode-binary', or nil.
5750 If it is `overwrite-mode-textual', self-insertion still
5751 inserts at the end of a line, and inserts when point is before a tab,
5752 until the tab is filled in.
5753 If `overwrite-mode-binary', self-insertion replaces newlines and tabs too. */);
5755 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
5756 Qnil,
5757 doc: /* Display table that controls display of the contents of current buffer.
5759 If this variable is nil, the value of `standard-display-table' is used.
5760 Each window can have its own, overriding display table, see
5761 `set-window-display-table' and `window-display-table'.
5763 The display table is a char-table created with `make-display-table'.
5764 A char-table is an array indexed by character codes. Normal array
5765 primitives `aref' and `aset' can be used to access elements of a char-table.
5767 Each of the char-table elements control how to display the corresponding
5768 text character: the element at index C in the table says how to display
5769 the character whose code is C. Each element should be a vector of
5770 characters or nil. The value nil means display the character in the
5771 default fashion; otherwise, the characters from the vector are delivered
5772 to the screen instead of the original character.
5774 For example, (aset buffer-display-table ?X [?Y]) tells Emacs
5775 to display a capital Y instead of each X character.
5777 In addition, a char-table has six extra slots to control the display of:
5779 the end of a truncated screen line (extra-slot 0, a single character);
5780 the end of a continued line (extra-slot 1, a single character);
5781 the escape character used to display character codes in octal
5782 (extra-slot 2, a single character);
5783 the character used as an arrow for control characters (extra-slot 3,
5784 a single character);
5785 the decoration indicating the presence of invisible lines (extra-slot 4,
5786 a vector of characters);
5787 the character used to draw the border between side-by-side windows
5788 (extra-slot 5, a single character).
5790 See also the functions `display-table-slot' and `set-display-table-slot'. */);
5792 DEFVAR_PER_BUFFER ("left-margin-width", &current_buffer->left_margin_cols,
5793 Qnil,
5794 doc: /* *Width of left marginal area for display of a buffer.
5795 A value of nil means no marginal area. */);
5797 DEFVAR_PER_BUFFER ("right-margin-width", &current_buffer->right_margin_cols,
5798 Qnil,
5799 doc: /* *Width of right marginal area for display of a buffer.
5800 A value of nil means no marginal area. */);
5802 DEFVAR_PER_BUFFER ("left-fringe-width", &current_buffer->left_fringe_width,
5803 Qnil,
5804 doc: /* *Width of this buffer's left fringe (in pixels).
5805 A value of 0 means no left fringe is shown in this buffer's window.
5806 A value of nil means to use the left fringe width from the window's frame. */);
5808 DEFVAR_PER_BUFFER ("right-fringe-width", &current_buffer->right_fringe_width,
5809 Qnil,
5810 doc: /* *Width of this buffer's right fringe (in pixels).
5811 A value of 0 means no right fringe is shown in this buffer's window.
5812 A value of nil means to use the right fringe width from the window's frame. */);
5814 DEFVAR_PER_BUFFER ("fringes-outside-margins", &current_buffer->fringes_outside_margins,
5815 Qnil,
5816 doc: /* *Non-nil means to display fringes outside display margins.
5817 A value of nil means to display fringes between margins and buffer text. */);
5819 DEFVAR_PER_BUFFER ("scroll-bar-width", &current_buffer->scroll_bar_width,
5820 Qnil,
5821 doc: /* *Width of this buffer's scroll bars in pixels.
5822 A value of nil means to use the scroll bar width from the window's frame. */);
5824 DEFVAR_PER_BUFFER ("vertical-scroll-bar", &current_buffer->vertical_scroll_bar_type,
5825 Qnil,
5826 doc: /* *Position of this buffer's vertical scroll bar.
5827 The value takes effect whenever you tell a window to display this buffer;
5828 for instance, with `set-window-buffer' or when `display-buffer' displays it.
5830 A value of `left' or `right' means put the vertical scroll bar at that side
5831 of the window; a value of nil means don't show any vertical scroll bars.
5832 A value of t (the default) means do whatever the window's frame specifies. */);
5834 DEFVAR_PER_BUFFER ("indicate-empty-lines",
5835 &current_buffer->indicate_empty_lines, Qnil,
5836 doc: /* *Visually indicate empty lines after the buffer end.
5837 If non-nil, a bitmap is displayed in the left fringe of a window on
5838 window-systems. */);
5840 DEFVAR_PER_BUFFER ("indicate-buffer-boundaries",
5841 &current_buffer->indicate_buffer_boundaries, Qnil,
5842 doc: /* *Visually indicate buffer boundaries and scrolling.
5843 If non-nil, the first and last line of the buffer are marked in the fringe
5844 of a window on window-systems with angle bitmaps, or if the window can be
5845 scrolled, the top and bottom line of the window are marked with up and down
5846 arrow bitmaps.
5848 If value is a symbol `left' or `right', both angle and arrow bitmaps
5849 are displayed in the left or right fringe, resp. Any other value
5850 that doesn't look like an alist means display the angle bitmaps in
5851 the left fringe but no arrows.
5853 You can exercise more precise control by using an alist as the
5854 value. Each alist element (INDICATOR . POSITION) specifies
5855 where to show one of the indicators. INDICATOR is one of `top',
5856 `bottom', `up', `down', or t, which specifies the default position,
5857 and POSITION is one of `left', `right', or nil, meaning do not show
5858 this indicator.
5860 For example, ((top . left) (t . right)) places the top angle bitmap in
5861 left fringe, the bottom angle bitmap in right fringe, and both arrow
5862 bitmaps in right fringe. To show just the angle bitmaps in the left
5863 fringe, but no arrow bitmaps, use ((top . left) (bottom . left)). */);
5865 DEFVAR_PER_BUFFER ("fringe-indicator-alist",
5866 &current_buffer->fringe_indicator_alist, Qnil,
5867 doc: /* *Mapping from logical to physical fringe indicator bitmaps.
5868 The value is an alist where each element (INDICATOR . BITMAPS)
5869 specifies the fringe bitmaps used to display a specific logical
5870 fringe indicator.
5872 INDICATOR specifies the logical indicator type which is one of the
5873 following symbols: `truncation' , `continuation', `overlay-arrow',
5874 `top', `bottom', `up', `down', `one-line', `empty-line', or `unknown'.
5876 BITMAPS is list of symbols (LEFT RIGHT [LEFT1 RIGHT1]) which specifies
5877 the actual bitmap shown in the left or right fringe for the logical
5878 indicator. LEFT and RIGHT are the bitmaps shown in the left and/or
5879 right fringe for the specific indicator. The LEFT1 or RIGHT1 bitmaps
5880 are used only for the `bottom' and `one-line' indicators when the last
5881 \(only) line in has no final newline. BITMAPS may also be a single
5882 symbol which is used in both left and right fringes. */);
5884 DEFVAR_PER_BUFFER ("fringe-cursor-alist",
5885 &current_buffer->fringe_cursor_alist, Qnil,
5886 doc: /* *Mapping from logical to physical fringe cursor bitmaps.
5887 The value is an alist where each element (CURSOR . BITMAP)
5888 specifies the fringe bitmaps used to display a specific logical
5889 cursor type in the fringe.
5891 CURSOR specifies the logical cursor type which is one of the following
5892 symbols: `box' , `hollow', `bar', `hbar', or `hollow-small'. The last
5893 one is used to show a hollow cursor on narrow lines display lines
5894 where the normal hollow cursor will not fit.
5896 BITMAP is the corresponding fringe bitmap shown for the logical
5897 cursor type. */);
5899 DEFVAR_PER_BUFFER ("scroll-up-aggressively",
5900 &current_buffer->scroll_up_aggressively, Qnil,
5901 doc: /* How far to scroll windows upward.
5902 If you move point off the bottom, the window scrolls automatically.
5903 This variable controls how far it scrolls. The value nil, the default,
5904 means scroll to center point. A fraction means scroll to put point
5905 that fraction of the window's height from the bottom of the window.
5906 When the value is 0.0, point goes at the bottom line, which in the simple
5907 case that you moved off with C-f means scrolling just one line. 1.0 means
5908 point goes at the top, so that in that simple case, the window
5909 scrolls by a full window height. Meaningful values are
5910 between 0.0 and 1.0, inclusive. */);
5912 DEFVAR_PER_BUFFER ("scroll-down-aggressively",
5913 &current_buffer->scroll_down_aggressively, Qnil,
5914 doc: /* How far to scroll windows downward.
5915 If you move point off the top, the window scrolls automatically.
5916 This variable controls how far it scrolls. The value nil, the default,
5917 means scroll to center point. A fraction means scroll to put point
5918 that fraction of the window's height from the top of the window.
5919 When the value is 0.0, point goes at the top line, which in the simple
5920 case that you moved off with C-b means scrolling just one line. 1.0 means
5921 point goes at the bottom, so that in that simple case, the window
5922 scrolls by a full window height. Meaningful values are
5923 between 0.0 and 1.0, inclusive. */);
5925 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
5926 "Don't ask.");
5929 DEFVAR_LISP ("before-change-functions", &Vbefore_change_functions,
5930 doc: /* List of functions to call before each text change.
5931 Two arguments are passed to each function: the positions of
5932 the beginning and end of the range of old text to be changed.
5933 \(For an insertion, the beginning and end are at the same place.)
5934 No information is given about the length of the text after the change.
5936 Buffer changes made while executing the `before-change-functions'
5937 don't call any before-change or after-change functions.
5938 That's because these variables are temporarily set to nil.
5939 As a result, a hook function cannot straightforwardly alter the value of
5940 these variables. See the Emacs Lisp manual for a way of
5941 accomplishing an equivalent result by using other variables.
5943 If an unhandled error happens in running these functions,
5944 the variable's value remains nil. That prevents the error
5945 from happening repeatedly and making Emacs nonfunctional. */);
5946 Vbefore_change_functions = Qnil;
5948 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions,
5949 doc: /* List of functions to call after each text change.
5950 Three arguments are passed to each function: the positions of
5951 the beginning and end of the range of changed text,
5952 and the length in bytes of the pre-change text replaced by that range.
5953 \(For an insertion, the pre-change length is zero;
5954 for a deletion, that length is the number of bytes deleted,
5955 and the post-change beginning and end are at the same place.)
5957 Buffer changes made while executing the `after-change-functions'
5958 don't call any before-change or after-change functions.
5959 That's because these variables are temporarily set to nil.
5960 As a result, a hook function cannot straightforwardly alter the value of
5961 these variables. See the Emacs Lisp manual for a way of
5962 accomplishing an equivalent result by using other variables.
5964 If an unhandled error happens in running these functions,
5965 the variable's value remains nil. That prevents the error
5966 from happening repeatedly and making Emacs nonfunctional. */);
5967 Vafter_change_functions = Qnil;
5969 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook,
5970 doc: /* A list of functions to call before changing a buffer which is unmodified.
5971 The functions are run using the `run-hooks' function. */);
5972 Vfirst_change_hook = Qnil;
5974 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
5975 doc: /* List of undo entries in current buffer.
5976 Recent changes come first; older changes follow newer.
5978 An entry (BEG . END) represents an insertion which begins at
5979 position BEG and ends at position END.
5981 An entry (TEXT . POSITION) represents the deletion of the string TEXT
5982 from (abs POSITION). If POSITION is positive, point was at the front
5983 of the text being deleted; if negative, point was at the end.
5985 An entry (t HIGH . LOW) indicates that the buffer previously had
5986 \"unmodified\" status. HIGH and LOW are the high and low 16-bit portions
5987 of the visited file's modification time, as of that time. If the
5988 modification time of the most recent save is different, this entry is
5989 obsolete.
5991 An entry (nil PROPERTY VALUE BEG . END) indicates that a text property
5992 was modified between BEG and END. PROPERTY is the property name,
5993 and VALUE is the old value.
5995 An entry (apply FUN-NAME . ARGS) means undo the change with
5996 \(apply FUN-NAME ARGS).
5998 An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo
5999 in the active region. BEG and END is the range affected by this entry
6000 and DELTA is the number of bytes added or deleted in that range by
6001 this change.
6003 An entry (MARKER . DISTANCE) indicates that the marker MARKER
6004 was adjusted in position by the offset DISTANCE (an integer).
6006 An entry of the form POSITION indicates that point was at the buffer
6007 location given by the integer. Undoing an entry of this form places
6008 point at POSITION.
6010 Entries with value `nil' mark undo boundaries. The undo command treats
6011 the changes between two undo boundaries as a single step to be undone.
6013 If the value of the variable is t, undo information is not recorded. */);
6015 DEFVAR_PER_BUFFER ("mark-active", &current_buffer->mark_active, Qnil,
6016 doc: /* Non-nil means the mark and region are currently active in this buffer. */);
6018 DEFVAR_PER_BUFFER ("cache-long-line-scans", &current_buffer->cache_long_line_scans, Qnil,
6019 doc: /* Non-nil means that Emacs should use caches to handle long lines more quickly.
6021 Normally, the line-motion functions work by scanning the buffer for
6022 newlines. Columnar operations (like `move-to-column' and
6023 `compute-motion') also work by scanning the buffer, summing character
6024 widths as they go. This works well for ordinary text, but if the
6025 buffer's lines are very long (say, more than 500 characters), these
6026 motion functions will take longer to execute. Emacs may also take
6027 longer to update the display.
6029 If `cache-long-line-scans' is non-nil, these motion functions cache the
6030 results of their scans, and consult the cache to avoid rescanning
6031 regions of the buffer until the text is modified. The caches are most
6032 beneficial when they prevent the most searching---that is, when the
6033 buffer contains long lines and large regions of characters with the
6034 same, fixed screen width.
6036 When `cache-long-line-scans' is non-nil, processing short lines will
6037 become slightly slower (because of the overhead of consulting the
6038 cache), and the caches will use memory roughly proportional to the
6039 number of newlines and characters whose screen width varies.
6041 The caches require no explicit maintenance; their accuracy is
6042 maintained internally by the Emacs primitives. Enabling or disabling
6043 the cache should not affect the behavior of any of the motion
6044 functions; it should only affect their performance. */);
6046 DEFVAR_PER_BUFFER ("point-before-scroll", &current_buffer->point_before_scroll, Qnil,
6047 doc: /* Value of point before the last series of scroll operations, or nil. */);
6049 DEFVAR_PER_BUFFER ("buffer-file-format", &current_buffer->file_format, Qnil,
6050 doc: /* List of formats to use when saving this buffer.
6051 Formats are defined by `format-alist'. This variable is
6052 set when a file is visited. */);
6054 DEFVAR_PER_BUFFER ("buffer-auto-save-file-format",
6055 &current_buffer->auto_save_file_format, Qnil,
6056 doc: /* *Format in which to write auto-save files.
6057 Should be a list of symbols naming formats that are defined in `format-alist'.
6058 If it is t, which is the default, auto-save files are written in the
6059 same format as a regular save would use. */);
6061 DEFVAR_PER_BUFFER ("buffer-invisibility-spec",
6062 &current_buffer->invisibility_spec, Qnil,
6063 doc: /* Invisibility spec of this buffer.
6064 The default is t, which means that text is invisible
6065 if it has a non-nil `invisible' property.
6066 If the value is a list, a text character is invisible if its `invisible'
6067 property is an element in that list (or is a list with members in common).
6068 If an element is a cons cell of the form (PROP . ELLIPSIS),
6069 then characters with property value PROP are invisible,
6070 and they have an ellipsis as well if ELLIPSIS is non-nil. */);
6072 DEFVAR_PER_BUFFER ("buffer-display-count",
6073 &current_buffer->display_count, Qnil,
6074 doc: /* A number incremented each time this buffer is displayed in a window.
6075 The function `set-window-buffer' increments it. */);
6077 DEFVAR_PER_BUFFER ("buffer-display-time",
6078 &current_buffer->display_time, Qnil,
6079 doc: /* Time stamp updated each time this buffer is displayed in a window.
6080 The function `set-window-buffer' updates this variable
6081 to the value obtained by calling `current-time'.
6082 If the buffer has never been shown in a window, the value is nil. */);
6084 DEFVAR_LISP ("transient-mark-mode", &Vtransient_mark_mode,
6085 doc: /* *Non-nil means deactivate the mark when the buffer contents change.
6086 Non-nil also enables highlighting of the region whenever the mark is active.
6087 The variable `highlight-nonselected-windows' controls whether to highlight
6088 all windows or just the selected window.
6090 If the value is `lambda', that enables Transient Mark mode temporarily
6091 until the next buffer modification. If a command sets the value to `only',
6092 that enables Transient Mark mode for the following command only.
6093 During that following command, the value of `transient-mark-mode'
6094 is `identity'. If it is still `identity' at the end of that command,
6095 it changes to nil. */);
6096 Vtransient_mark_mode = Qnil;
6098 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only,
6099 doc: /* *Non-nil means disregard read-only status of buffers or characters.
6100 If the value is t, disregard `buffer-read-only' and all `read-only'
6101 text properties. If the value is a list, disregard `buffer-read-only'
6102 and disregard a `read-only' text property if the property value
6103 is a member of the list. */);
6104 Vinhibit_read_only = Qnil;
6106 DEFVAR_PER_BUFFER ("cursor-type", &current_buffer->cursor_type, Qnil,
6107 doc: /* Cursor to use when this buffer is in the selected window.
6108 Values are interpreted as follows:
6110 t use the cursor specified for the frame
6111 nil don't display a cursor
6112 box display a filled box cursor
6113 hollow display a hollow box cursor
6114 bar display a vertical bar cursor with default width
6115 (bar . WIDTH) display a vertical bar cursor with width WIDTH
6116 hbar display a horizontal bar cursor with default height
6117 (hbar . HEIGHT) display a horizontal bar cursor with height HEIGHT
6118 ANYTHING ELSE display a hollow box cursor
6120 When the buffer is displayed in a nonselected window,
6121 this variable has no effect; the cursor appears as a hollow box. */);
6123 DEFVAR_PER_BUFFER ("line-spacing",
6124 &current_buffer->extra_line_spacing, Qnil,
6125 doc: /* Additional space to put between lines when displaying a buffer.
6126 The space is measured in pixels, and put below lines on window systems.
6127 If value is a floating point number, it specifies the spacing relative
6128 to the default frame line height. A value of nil means add no extra space. */);
6130 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
6131 &current_buffer->cursor_in_non_selected_windows, Qnil,
6132 doc: /* *Cursor type to display in non-selected windows.
6133 The value t means to use hollow box cursor. See `cursor-type' for other values. */);
6135 DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions,
6136 doc: /* List of functions called with no args to query before killing a buffer.
6137 The buffer being killed will be current while the functions are running.
6138 If any of them returns nil, the buffer is not killed. */);
6139 Vkill_buffer_query_functions = Qnil;
6141 DEFVAR_LISP ("change-major-mode-hook", &Vchange_major_mode_hook,
6142 doc: /* Normal hook run before changing the major mode of a buffer.
6143 The function `kill-all-local-variables' runs this before doing anything else. */);
6144 Vchange_major_mode_hook = Qnil;
6145 Qchange_major_mode_hook = intern ("change-major-mode-hook");
6146 staticpro (&Qchange_major_mode_hook);
6148 defsubr (&Sbuffer_live_p);
6149 defsubr (&Sbuffer_list);
6150 defsubr (&Sget_buffer);
6151 defsubr (&Sget_file_buffer);
6152 defsubr (&Sget_buffer_create);
6153 defsubr (&Smake_indirect_buffer);
6154 defsubr (&Sgenerate_new_buffer_name);
6155 defsubr (&Sbuffer_name);
6156 /*defsubr (&Sbuffer_number);*/
6157 defsubr (&Sbuffer_file_name);
6158 defsubr (&Sbuffer_base_buffer);
6159 defsubr (&Sbuffer_local_value);
6160 defsubr (&Sbuffer_local_variables);
6161 defsubr (&Sbuffer_modified_p);
6162 defsubr (&Sset_buffer_modified_p);
6163 defsubr (&Sbuffer_modified_tick);
6164 defsubr (&Sbuffer_chars_modified_tick);
6165 defsubr (&Srename_buffer);
6166 defsubr (&Sother_buffer);
6167 defsubr (&Sbuffer_enable_undo);
6168 defsubr (&Skill_buffer);
6169 defsubr (&Sset_buffer_major_mode);
6170 defsubr (&Sswitch_to_buffer);
6171 defsubr (&Spop_to_buffer);
6172 defsubr (&Scurrent_buffer);
6173 defsubr (&Sset_buffer);
6174 defsubr (&Sbarf_if_buffer_read_only);
6175 defsubr (&Sbury_buffer);
6176 defsubr (&Serase_buffer);
6177 defsubr (&Sset_buffer_multibyte);
6178 defsubr (&Skill_all_local_variables);
6180 defsubr (&Soverlayp);
6181 defsubr (&Smake_overlay);
6182 defsubr (&Sdelete_overlay);
6183 defsubr (&Smove_overlay);
6184 defsubr (&Soverlay_start);
6185 defsubr (&Soverlay_end);
6186 defsubr (&Soverlay_buffer);
6187 defsubr (&Soverlay_properties);
6188 defsubr (&Soverlays_at);
6189 defsubr (&Soverlays_in);
6190 defsubr (&Snext_overlay_change);
6191 defsubr (&Sprevious_overlay_change);
6192 defsubr (&Soverlay_recenter);
6193 defsubr (&Soverlay_lists);
6194 defsubr (&Soverlay_get);
6195 defsubr (&Soverlay_put);
6196 defsubr (&Srestore_buffer_modified_p);
6199 void
6200 keys_of_buffer ()
6202 initial_define_key (control_x_map, 'b', "switch-to-buffer");
6203 initial_define_key (control_x_map, 'k', "kill-buffer");
6205 /* This must not be in syms_of_buffer, because Qdisabled is not
6206 initialized when that function gets called. */
6207 Fput (intern ("erase-buffer"), Qdisabled, Qt);
6210 /* arch-tag: e48569bf-69a9-4b65-a23b-8e68769436e1
6211 (do not change this comment) */