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, 2008
5 Free Software Foundation, Inc.
7 This file is part of GNU Emacs.
9 GNU Emacs is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
24 #include <sys/types.h>
26 #include <sys/param.h>
40 #include "intervals.h"
44 #include "character.h"
45 #include "region-cache.h"
47 #include "blockinput.h"
52 struct buffer
*current_buffer
; /* the current buffer */
54 /* First buffer in chain of all buffers (in reverse order of creation).
55 Threaded through ->next. */
57 struct buffer
*all_buffers
;
59 /* This structure holds the default values of the buffer-local variables
60 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer.
61 The default value occupies the same slot in this structure
62 as an individual buffer's value occupies in that buffer.
63 Setting the default value also goes through the alist of buffers
64 and stores into each buffer that does not say it has a local value. */
66 DECL_ALIGN (struct buffer
, buffer_defaults
);
68 /* A Lisp_Object pointer to the above, used for staticpro */
70 static Lisp_Object Vbuffer_defaults
;
72 /* This structure marks which slots in a buffer have corresponding
73 default values in buffer_defaults.
74 Each such slot has a nonzero value in this structure.
75 The value has only one nonzero bit.
77 When a buffer has its own local value for a slot,
78 the entry for that slot (found in the same slot in this structure)
79 is turned on in the buffer's local_flags array.
81 If a slot in this structure is -1, then even though there may
82 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it;
83 and the corresponding slot in buffer_defaults is not used.
85 If a slot is -2, then there is no DEFVAR_PER_BUFFER for it,
86 but there is a default value which is copied into each buffer.
88 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is
89 zero, that is a bug */
91 struct buffer buffer_local_flags
;
93 /* This structure holds the names of symbols whose values may be
94 buffer-local. It is indexed and accessed in the same way as the above. */
96 DECL_ALIGN (struct buffer
, buffer_local_symbols
);
98 /* A Lisp_Object pointer to the above, used for staticpro */
99 static Lisp_Object Vbuffer_local_symbols
;
101 /* Flags indicating which built-in buffer-local variables
102 are permanent locals. */
103 static char buffer_permanent_local_flags
[MAX_PER_BUFFER_VARS
];
105 /* Number of per-buffer variables used. */
107 int last_per_buffer_idx
;
109 EXFUN (Fset_buffer
, 1);
110 void set_buffer_internal
P_ ((struct buffer
*b
));
111 void set_buffer_internal_1
P_ ((struct buffer
*b
));
112 static void call_overlay_mod_hooks
P_ ((Lisp_Object list
, Lisp_Object overlay
,
113 int after
, Lisp_Object arg1
,
114 Lisp_Object arg2
, Lisp_Object arg3
));
115 static void swap_out_buffer_local_variables
P_ ((struct buffer
*b
));
116 static void reset_buffer_local_variables
P_ ((struct buffer
*b
, int permanent_too
));
118 /* Alist of all buffer names vs the buffers. */
119 /* This used to be a variable, but is no longer,
120 to prevent lossage due to user rplac'ing this alist or its elements. */
121 Lisp_Object Vbuffer_alist
;
123 /* Functions to call before and after each text change. */
124 Lisp_Object Vbefore_change_functions
;
125 Lisp_Object Vafter_change_functions
;
127 Lisp_Object Vtransient_mark_mode
;
129 /* t means ignore all read-only text properties.
130 A list means ignore such a property if its value is a member of the list.
131 Any non-nil value means ignore buffer-read-only. */
132 Lisp_Object Vinhibit_read_only
;
134 /* List of functions to call that can query about killing a buffer.
135 If any of these functions returns nil, we don't kill it. */
136 Lisp_Object Vkill_buffer_query_functions
;
137 Lisp_Object Qkill_buffer_query_functions
;
139 /* Hook run before changing a major mode. */
140 Lisp_Object Vchange_major_mode_hook
, Qchange_major_mode_hook
;
142 /* List of functions to call before changing an unmodified buffer. */
143 Lisp_Object Vfirst_change_hook
;
145 Lisp_Object Qfirst_change_hook
;
146 Lisp_Object Qbefore_change_functions
;
147 Lisp_Object Qafter_change_functions
;
148 Lisp_Object Qucs_set_table_for_input
;
150 /* If nonzero, all modification hooks are suppressed. */
151 int inhibit_modification_hooks
;
153 Lisp_Object Qfundamental_mode
, Qmode_class
, Qpermanent_local
;
154 Lisp_Object Qpermanent_local_hook
;
156 Lisp_Object Qprotected_field
;
158 Lisp_Object QSFundamental
; /* A string "Fundamental" */
160 Lisp_Object Qkill_buffer_hook
;
162 Lisp_Object Qget_file_buffer
;
164 Lisp_Object Qoverlayp
;
166 Lisp_Object Qpriority
, Qwindow
, Qevaporate
, Qbefore_string
, Qafter_string
;
168 Lisp_Object Qmodification_hooks
;
169 Lisp_Object Qinsert_in_front_hooks
;
170 Lisp_Object Qinsert_behind_hooks
;
172 static void alloc_buffer_text
P_ ((struct buffer
*, size_t));
173 static void free_buffer_text
P_ ((struct buffer
*b
));
174 static struct Lisp_Overlay
* copy_overlays
P_ ((struct buffer
*, struct Lisp_Overlay
*));
175 static void modify_overlay
P_ ((struct buffer
*, EMACS_INT
, EMACS_INT
));
176 static Lisp_Object buffer_lisp_local_variables
P_ ((struct buffer
*));
178 extern char * emacs_strerror
P_ ((int));
180 /* For debugging; temporary. See set_buffer_internal. */
181 /* Lisp_Object Qlisp_mode, Vcheck_symbol; */
188 error ("No buffer named %s", SDATA (spec
));
189 error ("Invalid buffer argument");
192 DEFUN ("buffer-live-p", Fbuffer_live_p
, Sbuffer_live_p
, 1, 1, 0,
193 doc
: /* Return non-nil if OBJECT is a buffer which has not been killed.
194 Value is nil if OBJECT is not a buffer or if it has been killed. */)
198 return ((BUFFERP (object
) && ! NILP (XBUFFER (object
)->name
))
202 DEFUN ("buffer-list", Fbuffer_list
, Sbuffer_list
, 0, 1, 0,
203 doc
: /* Return a list of all existing live buffers.
204 If the optional arg FRAME is a frame, we return the buffer list
205 in the proper order for that frame: the buffers in FRAME's `buffer-list'
206 frame parameter come first, followed by the rest of the buffers. */)
211 general
= Fmapcar (Qcdr
, Vbuffer_alist
);
215 Lisp_Object framelist
, prevlist
, tail
;
220 framelist
= Fcopy_sequence (XFRAME (frame
)->buffer_list
);
221 prevlist
= Fnreverse (Fcopy_sequence (XFRAME (frame
)->buried_buffer_list
));
223 /* Remove from GENERAL any buffer that duplicates one in
224 FRAMELIST or PREVLIST. */
228 general
= Fdelq (XCAR (tail
), general
);
234 general
= Fdelq (XCAR (tail
), general
);
241 return Fnconc (3, args
);
247 /* Like Fassoc, but use Fstring_equal to compare
248 (which ignores text properties),
249 and don't ever QUIT. */
252 assoc_ignore_text_properties (key
, list
)
253 register Lisp_Object key
;
256 register Lisp_Object tail
;
257 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
259 register Lisp_Object elt
, tem
;
261 tem
= Fstring_equal (Fcar (elt
), key
);
268 DEFUN ("get-buffer", Fget_buffer
, Sget_buffer
, 1, 1, 0,
269 doc
: /* Return the buffer named NAME (a string).
270 If there is no live buffer named NAME, return nil.
271 NAME may also be a buffer; if so, the value is that buffer. */)
273 register Lisp_Object name
;
279 return Fcdr (assoc_ignore_text_properties (name
, Vbuffer_alist
));
282 DEFUN ("get-file-buffer", Fget_file_buffer
, Sget_file_buffer
, 1, 1, 0,
283 doc
: /* Return the buffer visiting file FILENAME (a string).
284 The buffer's `buffer-file-name' must match exactly the expansion of FILENAME.
285 If there is no such live buffer, return nil.
286 See also `find-buffer-visiting'. */)
288 register Lisp_Object filename
;
290 register Lisp_Object tail
, buf
, tem
;
293 CHECK_STRING (filename
);
294 filename
= Fexpand_file_name (filename
, Qnil
);
296 /* If the file name has special constructs in it,
297 call the corresponding file handler. */
298 handler
= Ffind_file_name_handler (filename
, Qget_file_buffer
);
300 return call2 (handler
, Qget_file_buffer
, filename
);
302 for (tail
= Vbuffer_alist
; CONSP (tail
); tail
= XCDR (tail
))
304 buf
= Fcdr (XCAR (tail
));
305 if (!BUFFERP (buf
)) continue;
306 if (!STRINGP (XBUFFER (buf
)->filename
)) continue;
307 tem
= Fstring_equal (XBUFFER (buf
)->filename
, filename
);
315 get_truename_buffer (filename
)
316 register Lisp_Object filename
;
318 register Lisp_Object tail
, buf
, tem
;
320 for (tail
= Vbuffer_alist
; CONSP (tail
); tail
= XCDR (tail
))
322 buf
= Fcdr (XCAR (tail
));
323 if (!BUFFERP (buf
)) continue;
324 if (!STRINGP (XBUFFER (buf
)->file_truename
)) continue;
325 tem
= Fstring_equal (XBUFFER (buf
)->file_truename
, filename
);
332 /* Incremented for each buffer created, to assign the buffer number. */
335 DEFUN ("get-buffer-create", Fget_buffer_create
, Sget_buffer_create
, 1, 1, 0,
336 doc
: /* Return the buffer named NAME, or create such a buffer and return it.
337 A new buffer is created if there is no live buffer named NAME.
338 If NAME starts with a space, the new buffer does not keep undo information.
339 If NAME is a buffer instead of a string, then it is the value returned.
340 The value is never nil. */)
342 register Lisp_Object name
;
344 register Lisp_Object buf
;
345 register struct buffer
*b
;
347 buf
= Fget_buffer (name
);
351 if (SCHARS (name
) == 0)
352 error ("Empty string for buffer name is not allowed");
354 b
= allocate_buffer ();
356 /* An ordinary buffer uses its own struct buffer_text. */
357 b
->text
= &b
->own_text
;
360 BUF_GAP_SIZE (b
) = 20;
362 /* We allocate extra 1-byte at the tail and keep it always '\0' for
363 anchoring a search. */
364 alloc_buffer_text (b
, BUF_GAP_SIZE (b
) + 1);
366 if (! BUF_BEG_ADDR (b
))
367 buffer_memory_full ();
374 BUF_PT_BYTE (b
) = BEG_BYTE
;
375 BUF_GPT_BYTE (b
) = BEG_BYTE
;
376 BUF_BEGV_BYTE (b
) = BEG_BYTE
;
377 BUF_ZV_BYTE (b
) = BEG_BYTE
;
378 BUF_Z_BYTE (b
) = BEG_BYTE
;
380 BUF_CHARS_MODIFF (b
) = 1;
381 BUF_OVERLAY_MODIFF (b
) = 1;
382 BUF_SAVE_MODIFF (b
) = 1;
383 BUF_INTERVALS (b
) = 0;
384 BUF_UNCHANGED_MODIFIED (b
) = 1;
385 BUF_OVERLAY_UNCHANGED_MODIFIED (b
) = 1;
386 BUF_END_UNCHANGED (b
) = 0;
387 BUF_BEG_UNCHANGED (b
) = 0;
388 *(BUF_GPT_ADDR (b
)) = *(BUF_Z_ADDR (b
)) = 0; /* Put an anchor '\0'. */
390 b
->newline_cache
= 0;
391 b
->width_run_cache
= 0;
392 b
->width_table
= Qnil
;
393 b
->prevent_redisplay_optimizations_p
= 1;
395 /* Put this on the chain of all buffers including killed ones. */
396 b
->next
= all_buffers
;
399 /* An ordinary buffer normally doesn't need markers
400 to handle BEGV and ZV. */
402 b
->begv_marker
= Qnil
;
405 name
= Fcopy_sequence (name
);
406 STRING_SET_INTERVALS (name
, NULL_INTERVAL
);
409 b
->undo_list
= (SREF (name
, 0) != ' ') ? Qnil
: Qt
;
412 reset_buffer_local_variables (b
, 1);
414 b
->mark
= Fmake_marker ();
415 BUF_MARKERS (b
) = NULL
;
418 /* Put this in the alist of all live buffers. */
420 Vbuffer_alist
= nconc2 (Vbuffer_alist
, Fcons (Fcons (name
, buf
), Qnil
));
422 /* An error in calling the function here (should someone redefine it)
423 can lead to infinite regress until you run out of stack. rms
424 says that's not worth protecting against. */
425 if (!NILP (Ffboundp (Qucs_set_table_for_input
)))
426 /* buf is on buffer-alist, so no gcpro. */
427 call1 (Qucs_set_table_for_input
, buf
);
433 /* Return a list of overlays which is a copy of the overlay list
434 LIST, but for buffer B. */
436 static struct Lisp_Overlay
*
437 copy_overlays (b
, list
)
439 struct Lisp_Overlay
*list
;
442 struct Lisp_Overlay
*result
= NULL
, *tail
= NULL
;
444 XSETBUFFER (buffer
, b
);
446 for (; list
; list
= list
->next
)
448 Lisp_Object overlay
, start
, end
, old_overlay
;
451 XSETMISC (old_overlay
, list
);
452 charpos
= marker_position (OVERLAY_START (old_overlay
));
453 start
= Fmake_marker ();
454 Fset_marker (start
, make_number (charpos
), buffer
);
455 XMARKER (start
)->insertion_type
456 = XMARKER (OVERLAY_START (old_overlay
))->insertion_type
;
458 charpos
= marker_position (OVERLAY_END (old_overlay
));
459 end
= Fmake_marker ();
460 Fset_marker (end
, make_number (charpos
), buffer
);
461 XMARKER (end
)->insertion_type
462 = XMARKER (OVERLAY_END (old_overlay
))->insertion_type
;
464 overlay
= allocate_misc ();
465 XMISCTYPE (overlay
) = Lisp_Misc_Overlay
;
466 OVERLAY_START (overlay
) = start
;
467 OVERLAY_END (overlay
) = end
;
468 OVERLAY_PLIST (overlay
) = Fcopy_sequence (OVERLAY_PLIST (old_overlay
));
469 XOVERLAY (overlay
)->next
= NULL
;
472 tail
= tail
->next
= XOVERLAY (overlay
);
474 result
= tail
= XOVERLAY (overlay
);
481 /* Clone per-buffer values of buffer FROM.
483 Buffer TO gets the same per-buffer values as FROM, with the
484 following exceptions: (1) TO's name is left untouched, (2) markers
485 are copied and made to refer to TO, and (3) overlay lists are
489 clone_per_buffer_values (from
, to
)
490 struct buffer
*from
, *to
;
492 Lisp_Object to_buffer
;
495 XSETBUFFER (to_buffer
, to
);
497 /* buffer-local Lisp variables start at `undo_list',
498 tho only the ones from `name' on are GC'd normally. */
499 for (offset
= PER_BUFFER_VAR_OFFSET (undo_list
) + sizeof (Lisp_Object
);
501 offset
+= sizeof (Lisp_Object
))
505 obj
= PER_BUFFER_VALUE (from
, offset
);
508 struct Lisp_Marker
*m
= XMARKER (obj
);
509 obj
= Fmake_marker ();
510 XMARKER (obj
)->insertion_type
= m
->insertion_type
;
511 set_marker_both (obj
, to_buffer
, m
->charpos
, m
->bytepos
);
514 PER_BUFFER_VALUE (to
, offset
) = obj
;
517 bcopy (from
->local_flags
, to
->local_flags
, sizeof to
->local_flags
);
519 to
->overlays_before
= copy_overlays (to
, from
->overlays_before
);
520 to
->overlays_after
= copy_overlays (to
, from
->overlays_after
);
522 /* Get (a copy of) the alist of Lisp-level local variables of FROM
523 and install that in TO. */
524 to
->local_var_alist
= buffer_lisp_local_variables (from
);
527 DEFUN ("make-indirect-buffer", Fmake_indirect_buffer
, Smake_indirect_buffer
,
529 "bMake indirect buffer (to buffer): \nBName of indirect buffer: ",
530 doc
: /* Create and return an indirect buffer for buffer BASE-BUFFER, named NAME.
531 BASE-BUFFER should be a live buffer, or the name of an existing buffer.
532 NAME should be a string which is not the name of an existing buffer.
533 Optional argument CLONE non-nil means preserve BASE-BUFFER's state,
534 such as major and minor modes, in the indirect buffer.
535 CLONE nil means the indirect buffer's state is reset to default values. */)
536 (base_buffer
, name
, clone
)
537 Lisp_Object base_buffer
, name
, clone
;
539 Lisp_Object buf
, tem
;
543 buf
= Fget_buffer (name
);
545 error ("Buffer name `%s' is in use", SDATA (name
));
548 base_buffer
= Fget_buffer (base_buffer
);
549 if (NILP (base_buffer
))
550 error ("No such buffer: `%s'", SDATA (tem
));
551 if (NILP (XBUFFER (base_buffer
)->name
))
552 error ("Base buffer has been killed");
554 if (SCHARS (name
) == 0)
555 error ("Empty string for buffer name is not allowed");
557 b
= allocate_buffer ();
559 b
->base_buffer
= (XBUFFER (base_buffer
)->base_buffer
560 ? XBUFFER (base_buffer
)->base_buffer
561 : XBUFFER (base_buffer
));
563 /* Use the base buffer's text object. */
564 b
->text
= b
->base_buffer
->text
;
566 BUF_BEGV (b
) = BUF_BEGV (b
->base_buffer
);
567 BUF_ZV (b
) = BUF_ZV (b
->base_buffer
);
568 BUF_PT (b
) = BUF_PT (b
->base_buffer
);
569 BUF_BEGV_BYTE (b
) = BUF_BEGV_BYTE (b
->base_buffer
);
570 BUF_ZV_BYTE (b
) = BUF_ZV_BYTE (b
->base_buffer
);
571 BUF_PT_BYTE (b
) = BUF_PT_BYTE (b
->base_buffer
);
573 b
->newline_cache
= 0;
574 b
->width_run_cache
= 0;
575 b
->width_table
= Qnil
;
577 /* Put this on the chain of all buffers including killed ones. */
578 b
->next
= all_buffers
;
581 name
= Fcopy_sequence (name
);
582 STRING_SET_INTERVALS (name
, NULL_INTERVAL
);
586 reset_buffer_local_variables (b
, 1);
588 /* Put this in the alist of all live buffers. */
590 Vbuffer_alist
= nconc2 (Vbuffer_alist
, Fcons (Fcons (name
, buf
), Qnil
));
592 b
->mark
= Fmake_marker ();
595 /* The multibyte status belongs to the base buffer. */
596 b
->enable_multibyte_characters
= b
->base_buffer
->enable_multibyte_characters
;
598 /* Make sure the base buffer has markers for its narrowing. */
599 if (NILP (b
->base_buffer
->pt_marker
))
601 b
->base_buffer
->pt_marker
= Fmake_marker ();
602 set_marker_both (b
->base_buffer
->pt_marker
, base_buffer
,
603 BUF_PT (b
->base_buffer
),
604 BUF_PT_BYTE (b
->base_buffer
));
606 if (NILP (b
->base_buffer
->begv_marker
))
608 b
->base_buffer
->begv_marker
= Fmake_marker ();
609 set_marker_both (b
->base_buffer
->begv_marker
, base_buffer
,
610 BUF_BEGV (b
->base_buffer
),
611 BUF_BEGV_BYTE (b
->base_buffer
));
613 if (NILP (b
->base_buffer
->zv_marker
))
615 b
->base_buffer
->zv_marker
= Fmake_marker ();
616 set_marker_both (b
->base_buffer
->zv_marker
, base_buffer
,
617 BUF_ZV (b
->base_buffer
),
618 BUF_ZV_BYTE (b
->base_buffer
));
619 XMARKER (b
->base_buffer
->zv_marker
)->insertion_type
= 1;
624 /* Give the indirect buffer markers for its narrowing. */
625 b
->pt_marker
= Fmake_marker ();
626 set_marker_both (b
->pt_marker
, buf
, BUF_PT (b
), BUF_PT_BYTE (b
));
627 b
->begv_marker
= Fmake_marker ();
628 set_marker_both (b
->begv_marker
, buf
, BUF_BEGV (b
), BUF_BEGV_BYTE (b
));
629 b
->zv_marker
= Fmake_marker ();
630 set_marker_both (b
->zv_marker
, buf
, BUF_ZV (b
), BUF_ZV_BYTE (b
));
631 XMARKER (b
->zv_marker
)->insertion_type
= 1;
635 struct buffer
*old_b
= current_buffer
;
637 clone_per_buffer_values (b
->base_buffer
, b
);
639 b
->file_truename
= Qnil
;
640 b
->display_count
= make_number (0);
642 b
->auto_save_file_name
= Qnil
;
643 set_buffer_internal_1 (b
);
644 Fset (intern ("buffer-save-without-query"), Qnil
);
645 Fset (intern ("buffer-file-number"), Qnil
);
646 Fset (intern ("buffer-stale-function"), Qnil
);
647 set_buffer_internal_1 (old_b
);
654 delete_all_overlays (b
)
659 /* `reset_buffer' blindly sets the list of overlays to NULL, so we
660 have to empty the list, otherwise we end up with overlays that
661 think they belong to this buffer while the buffer doesn't know about
663 while (b
->overlays_before
)
665 XSETMISC (overlay
, b
->overlays_before
);
666 Fdelete_overlay (overlay
);
668 while (b
->overlays_after
)
670 XSETMISC (overlay
, b
->overlays_after
);
671 Fdelete_overlay (overlay
);
673 eassert (b
->overlays_before
== NULL
);
674 eassert (b
->overlays_after
== NULL
);
677 /* Reinitialize everything about a buffer except its name and contents
679 If called on an already-initialized buffer, the list of overlays
680 should be deleted before calling this function, otherwise we end up
681 with overlays that claim to belong to the buffer but the buffer
682 claims it doesn't belong to it. */
686 register struct buffer
*b
;
689 b
->file_truename
= Qnil
;
690 b
->directory
= (current_buffer
) ? current_buffer
->directory
: Qnil
;
692 XSETFASTINT (b
->save_length
, 0);
693 b
->last_window_start
= 1;
694 /* It is more conservative to start out "changed" than "unchanged". */
696 b
->prevent_redisplay_optimizations_p
= 1;
698 b
->auto_save_modified
= 0;
699 b
->auto_save_failure_time
= -1;
700 b
->auto_save_file_name
= Qnil
;
702 b
->overlays_before
= NULL
;
703 b
->overlays_after
= NULL
;
704 b
->overlay_center
= BEG
;
705 b
->mark_active
= Qnil
;
706 b
->point_before_scroll
= Qnil
;
707 b
->file_format
= Qnil
;
708 b
->auto_save_file_format
= Qt
;
709 b
->last_selected_window
= Qnil
;
710 XSETINT (b
->display_count
, 0);
711 b
->display_time
= Qnil
;
712 b
->enable_multibyte_characters
= buffer_defaults
.enable_multibyte_characters
;
713 b
->cursor_type
= buffer_defaults
.cursor_type
;
714 b
->extra_line_spacing
= buffer_defaults
.extra_line_spacing
;
716 b
->display_error_modiff
= 0;
719 /* Reset buffer B's local variables info.
720 Don't use this on a buffer that has already been in use;
721 it does not treat permanent locals consistently.
722 Instead, use Fkill_all_local_variables.
724 If PERMANENT_TOO is 1, then we reset permanent
725 buffer-local variables. If PERMANENT_TOO is 0,
726 we preserve those. */
729 reset_buffer_local_variables (b
, permanent_too
)
730 register struct buffer
*b
;
736 /* Reset the major mode to Fundamental, together with all the
737 things that depend on the major mode.
738 default-major-mode is handled at a higher level.
739 We ignore it here. */
740 b
->major_mode
= Qfundamental_mode
;
742 b
->mode_name
= QSFundamental
;
743 b
->minor_modes
= Qnil
;
745 /* If the standard case table has been altered and invalidated,
746 fix up its insides first. */
747 if (! (CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table
)->extras
[0])
748 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table
)->extras
[1])
749 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table
)->extras
[2])))
750 Fset_standard_case_table (Vascii_downcase_table
);
752 b
->downcase_table
= Vascii_downcase_table
;
753 b
->upcase_table
= XCHAR_TABLE (Vascii_downcase_table
)->extras
[0];
754 b
->case_canon_table
= XCHAR_TABLE (Vascii_downcase_table
)->extras
[1];
755 b
->case_eqv_table
= XCHAR_TABLE (Vascii_downcase_table
)->extras
[2];
756 b
->invisibility_spec
= Qt
;
758 b
->buffer_file_type
= Qnil
;
761 /* Reset all (or most) per-buffer variables to their defaults. */
763 b
->local_var_alist
= Qnil
;
766 Lisp_Object tmp
, prop
, last
= Qnil
;
767 for (tmp
= b
->local_var_alist
; CONSP (tmp
); tmp
= XCDR (tmp
))
768 if (CONSP (XCAR (tmp
))
769 && SYMBOLP (XCAR (XCAR (tmp
)))
770 && !NILP (prop
= Fget (XCAR (XCAR (tmp
)), Qpermanent_local
)))
772 /* If permanent-local, keep it. */
774 if (EQ (prop
, Qpermanent_local_hook
))
776 /* This is a partially permanent hook variable.
777 Preserve only the elements that want to be preserved. */
778 Lisp_Object list
, newlist
;
779 list
= XCDR (XCAR (tmp
));
783 for (newlist
= Qnil
; CONSP (list
); list
= XCDR (list
))
785 Lisp_Object elt
= XCAR (list
);
786 /* Preserve element ELT if it's t,
787 if it is a function with a `permanent-local-hook' property,
788 or if it's not a symbol. */
791 || !NILP (Fget (elt
, Qpermanent_local_hook
)))
792 newlist
= Fcons (elt
, newlist
);
794 XSETCDR (XCAR (tmp
), Fnreverse (newlist
));
797 /* Delete this local variable. */
798 else if (NILP (last
))
799 b
->local_var_alist
= XCDR (tmp
);
801 XSETCDR (last
, XCDR (tmp
));
804 for (i
= 0; i
< last_per_buffer_idx
; ++i
)
805 if (permanent_too
|| buffer_permanent_local_flags
[i
] == 0)
806 SET_PER_BUFFER_VALUE_P (b
, i
, 0);
808 /* For each slot that has a default value,
809 copy that into the slot. */
811 /* buffer-local Lisp variables start at `undo_list',
812 tho only the ones from `name' on are GC'd normally. */
813 for (offset
= PER_BUFFER_VAR_OFFSET (undo_list
);
815 offset
+= sizeof (Lisp_Object
))
817 int idx
= PER_BUFFER_IDX (offset
);
820 || buffer_permanent_local_flags
[idx
] == 0))
821 /* Is -2 used anywhere? */
823 PER_BUFFER_VALUE (b
, offset
) = PER_BUFFER_DEFAULT (offset
);
827 /* We split this away from generate-new-buffer, because rename-buffer
828 and set-visited-file-name ought to be able to use this to really
829 rename the buffer properly. */
831 DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name
, Sgenerate_new_buffer_name
,
833 doc
: /* Return a string that is the name of no existing buffer based on NAME.
834 If there is no live buffer named NAME, then return NAME.
835 Otherwise modify name by appending `<NUMBER>', incrementing NUMBER
836 \(starting at 2) until an unused name is found, and then return that name.
837 Optional second argument IGNORE specifies a name that is okay to use (if
838 it is in the sequence to be tried) even if a buffer with that name exists. */)
840 register Lisp_Object name
, ignore
;
842 register Lisp_Object gentemp
, tem
;
848 tem
= Fstring_equal (name
, ignore
);
851 tem
= Fget_buffer (name
);
858 sprintf (number
, "<%d>", ++count
);
859 gentemp
= concat2 (name
, build_string (number
));
860 tem
= Fstring_equal (gentemp
, ignore
);
863 tem
= Fget_buffer (gentemp
);
870 DEFUN ("buffer-name", Fbuffer_name
, Sbuffer_name
, 0, 1, 0,
871 doc
: /* Return the name of BUFFER, as a string.
872 With no argument or nil as argument, return the name of the current buffer. */)
874 register Lisp_Object buffer
;
877 return current_buffer
->name
;
878 CHECK_BUFFER (buffer
);
879 return XBUFFER (buffer
)->name
;
882 DEFUN ("buffer-file-name", Fbuffer_file_name
, Sbuffer_file_name
, 0, 1, 0,
883 doc
: /* Return name of file BUFFER is visiting, or nil if none.
884 No argument or nil as argument means use the current buffer. */)
886 register Lisp_Object buffer
;
889 return current_buffer
->filename
;
890 CHECK_BUFFER (buffer
);
891 return XBUFFER (buffer
)->filename
;
894 DEFUN ("buffer-base-buffer", Fbuffer_base_buffer
, Sbuffer_base_buffer
,
896 doc
: /* Return the base buffer of indirect buffer BUFFER.
897 If BUFFER is not indirect, return nil.
898 BUFFER defaults to the current buffer. */)
900 register Lisp_Object buffer
;
903 Lisp_Object base_buffer
;
906 base
= current_buffer
->base_buffer
;
909 CHECK_BUFFER (buffer
);
910 base
= XBUFFER (buffer
)->base_buffer
;
915 XSETBUFFER (base_buffer
, base
);
919 DEFUN ("buffer-local-value", Fbuffer_local_value
,
920 Sbuffer_local_value
, 2, 2, 0,
921 doc
: /* Return the value of VARIABLE in BUFFER.
922 If VARIABLE does not have a buffer-local binding in BUFFER, the value
923 is the default binding of the variable. */)
925 register Lisp_Object variable
;
926 register Lisp_Object buffer
;
928 register struct buffer
*buf
;
929 register Lisp_Object result
;
931 CHECK_SYMBOL (variable
);
932 CHECK_BUFFER (buffer
);
933 buf
= XBUFFER (buffer
);
935 variable
= indirect_variable (variable
);
937 /* Look in local_var_list */
938 result
= Fassoc (variable
, buf
->local_var_alist
);
944 /* Look in special slots */
945 /* buffer-local Lisp variables start at `undo_list',
946 tho only the ones from `name' on are GC'd normally. */
947 for (offset
= PER_BUFFER_VAR_OFFSET (undo_list
);
948 offset
< sizeof (struct buffer
);
949 /* sizeof EMACS_INT == sizeof Lisp_Object */
950 offset
+= (sizeof (EMACS_INT
)))
952 idx
= PER_BUFFER_IDX (offset
);
953 if ((idx
== -1 || PER_BUFFER_VALUE_P (buf
, idx
))
954 && SYMBOLP (PER_BUFFER_SYMBOL (offset
))
955 && EQ (PER_BUFFER_SYMBOL (offset
), variable
))
957 result
= PER_BUFFER_VALUE (buf
, offset
);
964 result
= Fdefault_value (variable
);
968 Lisp_Object valcontents
;
969 Lisp_Object current_alist_element
;
971 /* What binding is loaded right now? */
972 valcontents
= SYMBOL_VALUE (variable
);
973 current_alist_element
974 = XCAR (XBUFFER_LOCAL_VALUE (valcontents
)->cdr
);
976 /* The value of the currently loaded binding is not
977 stored in it, but rather in the realvalue slot.
978 Store that value into the binding it belongs to
979 in case that is the one we are about to use. */
981 Fsetcdr (current_alist_element
,
982 do_symval_forwarding (XBUFFER_LOCAL_VALUE (valcontents
)->realvalue
));
984 /* Now get the (perhaps updated) value out of the binding. */
985 result
= XCDR (result
);
988 if (!EQ (result
, Qunbound
))
991 xsignal1 (Qvoid_variable
, variable
);
994 /* Return an alist of the Lisp-level buffer-local bindings of
995 buffer BUF. That is, don't include the variables maintained
996 in special slots in the buffer object. */
999 buffer_lisp_local_variables (buf
)
1002 Lisp_Object result
= Qnil
;
1003 register Lisp_Object tail
;
1004 for (tail
= buf
->local_var_alist
; CONSP (tail
); tail
= XCDR (tail
))
1006 Lisp_Object val
, elt
;
1010 /* Reference each variable in the alist in buf.
1011 If inquiring about the current buffer, this gets the current values,
1012 so store them into the alist so the alist is up to date.
1013 If inquiring about some other buffer, this swaps out any values
1014 for that buffer, making the alist up to date automatically. */
1015 val
= find_symbol_value (XCAR (elt
));
1016 /* Use the current buffer value only if buf is the current buffer. */
1017 if (buf
!= current_buffer
)
1020 /* If symbol is unbound, put just the symbol in the list. */
1021 if (EQ (val
, Qunbound
))
1022 result
= Fcons (XCAR (elt
), result
);
1023 /* Otherwise, put (symbol . value) in the list. */
1025 result
= Fcons (Fcons (XCAR (elt
), val
), result
);
1031 DEFUN ("buffer-local-variables", Fbuffer_local_variables
,
1032 Sbuffer_local_variables
, 0, 1, 0,
1033 doc
: /* Return an alist of variables that are buffer-local in BUFFER.
1034 Most elements look like (SYMBOL . VALUE), describing one variable.
1035 For a symbol that is locally unbound, just the symbol appears in the value.
1036 Note that storing new VALUEs in these elements doesn't change the variables.
1037 No argument or nil as argument means use current buffer as BUFFER. */)
1039 register Lisp_Object buffer
;
1041 register struct buffer
*buf
;
1042 register Lisp_Object result
;
1045 buf
= current_buffer
;
1048 CHECK_BUFFER (buffer
);
1049 buf
= XBUFFER (buffer
);
1052 result
= buffer_lisp_local_variables (buf
);
1054 /* Add on all the variables stored in special slots. */
1058 /* buffer-local Lisp variables start at `undo_list',
1059 tho only the ones from `name' on are GC'd normally. */
1060 for (offset
= PER_BUFFER_VAR_OFFSET (undo_list
);
1061 offset
< sizeof (struct buffer
);
1062 /* sizeof EMACS_INT == sizeof Lisp_Object */
1063 offset
+= (sizeof (EMACS_INT
)))
1065 idx
= PER_BUFFER_IDX (offset
);
1066 if ((idx
== -1 || PER_BUFFER_VALUE_P (buf
, idx
))
1067 && SYMBOLP (PER_BUFFER_SYMBOL (offset
)))
1068 result
= Fcons (Fcons (PER_BUFFER_SYMBOL (offset
),
1069 PER_BUFFER_VALUE (buf
, offset
)),
1077 DEFUN ("buffer-modified-p", Fbuffer_modified_p
, Sbuffer_modified_p
,
1079 doc
: /* Return t if BUFFER was modified since its file was last read or saved.
1080 No argument or nil as argument means use current buffer as BUFFER. */)
1082 register Lisp_Object buffer
;
1084 register struct buffer
*buf
;
1086 buf
= current_buffer
;
1089 CHECK_BUFFER (buffer
);
1090 buf
= XBUFFER (buffer
);
1093 return BUF_SAVE_MODIFF (buf
) < BUF_MODIFF (buf
) ? Qt
: Qnil
;
1096 DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p
, Sset_buffer_modified_p
,
1098 doc
: /* Mark current buffer as modified or unmodified according to FLAG.
1099 A non-nil FLAG means mark the buffer modified. */)
1101 register Lisp_Object flag
;
1103 register int already
;
1104 register Lisp_Object fn
;
1105 Lisp_Object buffer
, window
;
1107 #ifdef CLASH_DETECTION
1108 /* If buffer becoming modified, lock the file.
1109 If buffer becoming unmodified, unlock the file. */
1111 fn
= current_buffer
->file_truename
;
1112 /* Test buffer-file-name so that binding it to nil is effective. */
1113 if (!NILP (fn
) && ! NILP (current_buffer
->filename
))
1115 already
= SAVE_MODIFF
< MODIFF
;
1116 if (!already
&& !NILP (flag
))
1118 else if (already
&& NILP (flag
))
1121 #endif /* CLASH_DETECTION */
1123 SAVE_MODIFF
= NILP (flag
) ? MODIFF
: 0;
1125 /* Set update_mode_lines only if buffer is displayed in some window.
1126 Packages like jit-lock or lazy-lock preserve a buffer's modified
1127 state by recording/restoring the state around blocks of code.
1128 Setting update_mode_lines makes redisplay consider all windows
1129 (on all frames). Stealth fontification of buffers not displayed
1130 would incur additional redisplay costs if we'd set
1131 update_modes_lines unconditionally.
1133 Ideally, I think there should be another mechanism for fontifying
1134 buffers without "modifying" buffers, or redisplay should be
1135 smarter about updating the `*' in mode lines. --gerd */
1136 XSETBUFFER (buffer
, current_buffer
);
1137 window
= Fget_buffer_window (buffer
, Qt
);
1138 if (WINDOWP (window
))
1140 ++update_mode_lines
;
1141 current_buffer
->prevent_redisplay_optimizations_p
= 1;
1147 DEFUN ("restore-buffer-modified-p", Frestore_buffer_modified_p
,
1148 Srestore_buffer_modified_p
, 1, 1, 0,
1149 doc
: /* Like `set-buffer-modified-p', with a difference concerning redisplay.
1150 It is not ensured that mode lines will be updated to show the modified
1151 state of the current buffer. Use with care. */)
1155 #ifdef CLASH_DETECTION
1158 /* If buffer becoming modified, lock the file.
1159 If buffer becoming unmodified, unlock the file. */
1161 fn
= current_buffer
->file_truename
;
1162 /* Test buffer-file-name so that binding it to nil is effective. */
1163 if (!NILP (fn
) && ! NILP (current_buffer
->filename
))
1165 int already
= SAVE_MODIFF
< MODIFF
;
1166 if (!already
&& !NILP (flag
))
1168 else if (already
&& NILP (flag
))
1171 #endif /* CLASH_DETECTION */
1173 SAVE_MODIFF
= NILP (flag
) ? MODIFF
: 0;
1177 DEFUN ("buffer-modified-tick", Fbuffer_modified_tick
, Sbuffer_modified_tick
,
1179 doc
: /* Return BUFFER's tick counter, incremented for each change in text.
1180 Each buffer has a tick counter which is incremented each time the
1181 text in that buffer is changed. It wraps around occasionally.
1182 No argument or nil as argument means use current buffer as BUFFER. */)
1184 register Lisp_Object buffer
;
1186 register struct buffer
*buf
;
1188 buf
= current_buffer
;
1191 CHECK_BUFFER (buffer
);
1192 buf
= XBUFFER (buffer
);
1195 return make_number (BUF_MODIFF (buf
));
1198 DEFUN ("buffer-chars-modified-tick", Fbuffer_chars_modified_tick
,
1199 Sbuffer_chars_modified_tick
, 0, 1, 0,
1200 doc
: /* Return BUFFER's character-change tick counter.
1201 Each buffer has a character-change tick counter, which is set to the
1202 value of the buffer's tick counter \(see `buffer-modified-tick'), each
1203 time text in that buffer is inserted or deleted. By comparing the
1204 values returned by two individual calls of `buffer-chars-modified-tick',
1205 you can tell whether a character change occurred in that buffer in
1206 between these calls. No argument or nil as argument means use current
1207 buffer as BUFFER. */)
1209 register Lisp_Object buffer
;
1211 register struct buffer
*buf
;
1213 buf
= current_buffer
;
1216 CHECK_BUFFER (buffer
);
1217 buf
= XBUFFER (buffer
);
1220 return make_number (BUF_CHARS_MODIFF (buf
));
1223 DEFUN ("rename-buffer", Frename_buffer
, Srename_buffer
, 1, 2,
1224 "(list (read-string \"Rename buffer (to new name): \" \
1225 nil 'buffer-name-history (buffer-name (current-buffer))) \
1226 current-prefix-arg)",
1227 doc
: /* Change current buffer's name to NEWNAME (a string).
1228 If second arg UNIQUE is nil or omitted, it is an error if a
1229 buffer named NEWNAME already exists.
1230 If UNIQUE is non-nil, come up with a new name using
1231 `generate-new-buffer-name'.
1232 Interactively, you can set UNIQUE with a prefix argument.
1233 We return the name we actually gave the buffer.
1234 This does not change the name of the visited file (if any). */)
1236 register Lisp_Object newname
, unique
;
1238 register Lisp_Object tem
, buf
;
1240 CHECK_STRING (newname
);
1242 if (SCHARS (newname
) == 0)
1243 error ("Empty string is invalid as a buffer name");
1245 tem
= Fget_buffer (newname
);
1248 /* Don't short-circuit if UNIQUE is t. That is a useful way to
1249 rename the buffer automatically so you can create another
1250 with the original name. It makes UNIQUE equivalent to
1251 (rename-buffer (generate-new-buffer-name NEWNAME)). */
1252 if (NILP (unique
) && XBUFFER (tem
) == current_buffer
)
1253 return current_buffer
->name
;
1255 newname
= Fgenerate_new_buffer_name (newname
, current_buffer
->name
);
1257 error ("Buffer name `%s' is in use", SDATA (newname
));
1260 current_buffer
->name
= newname
;
1262 /* Catch redisplay's attention. Unless we do this, the mode lines for
1263 any windows displaying current_buffer will stay unchanged. */
1264 update_mode_lines
++;
1266 XSETBUFFER (buf
, current_buffer
);
1267 Fsetcar (Frassq (buf
, Vbuffer_alist
), newname
);
1268 if (NILP (current_buffer
->filename
)
1269 && !NILP (current_buffer
->auto_save_file_name
))
1270 call0 (intern ("rename-auto-save-file"));
1271 /* Refetch since that last call may have done GC. */
1272 return current_buffer
->name
;
1275 DEFUN ("other-buffer", Fother_buffer
, Sother_buffer
, 0, 3, 0,
1276 doc
: /* Return most recently selected buffer other than BUFFER.
1277 Buffers not visible in windows are preferred to visible buffers,
1278 unless optional second argument VISIBLE-OK is non-nil.
1279 If the optional third argument FRAME is non-nil, use that frame's
1280 buffer list instead of the selected frame's buffer list.
1281 If no other buffer exists, the buffer `*scratch*' is returned.
1282 If BUFFER is omitted or nil, some interesting buffer is returned. */)
1283 (buffer
, visible_ok
, frame
)
1284 register Lisp_Object buffer
, visible_ok
, frame
;
1286 Lisp_Object
Fset_buffer_major_mode ();
1287 register Lisp_Object tail
, buf
, notsogood
, tem
, pred
, add_ons
;
1291 frame
= selected_frame
;
1293 tail
= Vbuffer_alist
;
1294 pred
= frame_buffer_predicate (frame
);
1296 /* Consider buffers that have been seen in the selected frame
1297 before other buffers. */
1299 tem
= frame_buffer_list (frame
);
1303 if (BUFFERP (XCAR (tem
)))
1304 add_ons
= Fcons (Fcons (Qnil
, XCAR (tem
)), add_ons
);
1307 tail
= nconc2 (Fnreverse (add_ons
), tail
);
1309 for (; CONSP (tail
); tail
= XCDR (tail
))
1311 buf
= Fcdr (XCAR (tail
));
1312 if (EQ (buf
, buffer
))
1316 if (NILP (XBUFFER (buf
)->name
))
1318 if (SREF (XBUFFER (buf
)->name
, 0) == ' ')
1320 /* If the selected frame has a buffer_predicate,
1321 disregard buffers that don't fit the predicate. */
1324 tem
= call1 (pred
, buf
);
1329 if (NILP (visible_ok
))
1330 tem
= Fget_buffer_window (buf
, Qvisible
);
1335 if (NILP (notsogood
))
1338 if (!NILP (notsogood
))
1340 buf
= Fget_buffer (build_string ("*scratch*"));
1343 buf
= Fget_buffer_create (build_string ("*scratch*"));
1344 Fset_buffer_major_mode (buf
);
1349 DEFUN ("buffer-enable-undo", Fbuffer_enable_undo
, Sbuffer_enable_undo
,
1351 doc
: /* Start keeping undo information for buffer BUFFER.
1352 No argument or nil as argument means do this for the current buffer. */)
1354 register Lisp_Object buffer
;
1356 Lisp_Object real_buffer
;
1359 XSETBUFFER (real_buffer
, current_buffer
);
1362 real_buffer
= Fget_buffer (buffer
);
1363 if (NILP (real_buffer
))
1367 if (EQ (XBUFFER (real_buffer
)->undo_list
, Qt
))
1368 XBUFFER (real_buffer
)->undo_list
= Qnil
;
1374 DEFVAR_LISP ("kill-buffer-hook", no_cell, "\
1375 Hook to be run (by `run-hooks', which see) when a buffer is killed.\n\
1376 The buffer being killed will be current while the hook is running.\n\
1379 DEFUN ("kill-buffer", Fkill_buffer
, Skill_buffer
, 1, 1, "bKill buffer: ",
1380 doc
: /* Kill the buffer BUFFER.
1381 The argument may be a buffer or the name of a buffer.
1382 With a nil argument, kill the current buffer.
1384 Value is t if the buffer is actually killed, nil otherwise.
1386 The functions in `kill-buffer-query-functions' are called with BUFFER as
1387 the current buffer. If any of them returns nil, the buffer is not killed.
1389 The hook `kill-buffer-hook' is run before the buffer is actually killed.
1390 The buffer being killed will be current while the hook is running.
1392 Any processes that have this buffer as the `process-buffer' are killed
1398 register struct buffer
*b
;
1399 register Lisp_Object tem
;
1400 register struct Lisp_Marker
*m
;
1401 struct gcpro gcpro1
;
1404 buf
= Fcurrent_buffer ();
1406 buf
= Fget_buffer (buffer
);
1412 /* Avoid trouble for buffer already dead. */
1416 /* Query if the buffer is still modified. */
1417 if (INTERACTIVE
&& !NILP (b
->filename
)
1418 && BUF_MODIFF (b
) > BUF_SAVE_MODIFF (b
))
1421 tem
= do_yes_or_no_p (format2 ("Buffer %s modified; kill anyway? ",
1422 b
->name
, make_number (0)));
1428 /* Run hooks with the buffer to be killed the current buffer. */
1430 int count
= SPECPDL_INDEX ();
1431 Lisp_Object arglist
[1];
1433 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
1434 set_buffer_internal (b
);
1436 /* First run the query functions; if any query is answered no,
1437 don't kill the buffer. */
1438 arglist
[0] = Qkill_buffer_query_functions
;
1439 tem
= Frun_hook_with_args_until_failure (1, arglist
);
1441 return unbind_to (count
, Qnil
);
1443 /* Then run the hooks. */
1444 Frun_hooks (1, &Qkill_buffer_hook
);
1445 unbind_to (count
, Qnil
);
1448 /* We have no more questions to ask. Verify that it is valid
1449 to kill the buffer. This must be done after the questions
1450 since anything can happen within do_yes_or_no_p. */
1452 /* Don't kill the minibuffer now current. */
1453 if (EQ (buf
, XWINDOW (minibuf_window
)->buffer
))
1459 /* When we kill a base buffer, kill all its indirect buffers.
1460 We do it at this stage so nothing terrible happens if they
1461 ask questions or their hooks get errors. */
1462 if (! b
->base_buffer
)
1464 struct buffer
*other
;
1468 for (other
= all_buffers
; other
; other
= other
->next
)
1469 /* all_buffers contains dead buffers too;
1470 don't re-kill them. */
1471 if (other
->base_buffer
== b
&& !NILP (other
->name
))
1474 XSETBUFFER (buf
, other
);
1481 /* Make this buffer not be current.
1482 In the process, notice if this is the sole visible buffer
1483 and give up if so. */
1484 if (b
== current_buffer
)
1486 tem
= Fother_buffer (buf
, Qnil
, Qnil
);
1488 if (b
== current_buffer
)
1492 /* Notice if the buffer to kill is the sole visible buffer
1493 when we're currently in the mini-buffer, and give up if so. */
1494 XSETBUFFER (tem
, current_buffer
);
1495 if (EQ (tem
, XWINDOW (minibuf_window
)->buffer
))
1497 tem
= Fother_buffer (buf
, Qnil
, Qnil
);
1502 /* Now there is no question: we can kill the buffer. */
1504 #ifdef CLASH_DETECTION
1505 /* Unlock this buffer's file, if it is locked. */
1507 #endif /* CLASH_DETECTION */
1510 kill_buffer_processes (buf
);
1513 /* Killing buffer processes may run sentinels which may
1514 have called kill-buffer. */
1519 clear_charpos_cache (b
);
1521 tem
= Vinhibit_quit
;
1523 replace_buffer_in_all_windows (buf
);
1524 Vbuffer_alist
= Fdelq (Frassq (buf
, Vbuffer_alist
), Vbuffer_alist
);
1525 frames_discard_buffer (buf
);
1526 Vinhibit_quit
= tem
;
1528 /* Delete any auto-save file, if we saved it in this session.
1529 But not if the buffer is modified. */
1530 if (STRINGP (b
->auto_save_file_name
)
1531 && b
->auto_save_modified
!= 0
1532 && BUF_SAVE_MODIFF (b
) < b
->auto_save_modified
1533 && BUF_SAVE_MODIFF (b
) < BUF_MODIFF (b
)
1534 && NILP (Fsymbol_value (intern ("auto-save-visited-file-name"))))
1537 tem
= Fsymbol_value (intern ("delete-auto-save-files"));
1539 internal_delete_file (b
->auto_save_file_name
);
1544 /* Unchain all markers that belong to this indirect buffer.
1545 Don't unchain the markers that belong to the base buffer
1546 or its other indirect buffers. */
1547 for (m
= BUF_MARKERS (b
); m
; )
1549 struct Lisp_Marker
*next
= m
->next
;
1557 /* Unchain all markers of this buffer and its indirect buffers.
1558 and leave them pointing nowhere. */
1559 for (m
= BUF_MARKERS (b
); m
; )
1561 struct Lisp_Marker
*next
= m
->next
;
1566 BUF_MARKERS (b
) = NULL
;
1567 BUF_INTERVALS (b
) = NULL_INTERVAL
;
1569 /* Perhaps we should explicitly free the interval tree here... */
1572 /* Reset the local variables, so that this buffer's local values
1573 won't be protected from GC. They would be protected
1574 if they happened to remain encached in their symbols.
1575 This gets rid of them for certain. */
1576 swap_out_buffer_local_variables (b
);
1577 reset_buffer_local_variables (b
, 1);
1582 if (! b
->base_buffer
)
1583 free_buffer_text (b
);
1585 if (b
->newline_cache
)
1587 free_region_cache (b
->newline_cache
);
1588 b
->newline_cache
= 0;
1590 if (b
->width_run_cache
)
1592 free_region_cache (b
->width_run_cache
);
1593 b
->width_run_cache
= 0;
1595 b
->width_table
= Qnil
;
1597 b
->undo_list
= Qnil
;
1602 /* Move the assoc for buffer BUF to the front of buffer-alist. Since
1603 we do this each time BUF is selected visibly, the more recently
1604 selected buffers are always closer to the front of the list. This
1605 means that other_buffer is more likely to choose a relevant buffer. */
1611 register Lisp_Object link
, prev
;
1613 frame
= selected_frame
;
1616 for (link
= Vbuffer_alist
; CONSP (link
); link
= XCDR (link
))
1618 if (EQ (XCDR (XCAR (link
)), buf
))
1623 /* Effectively do Vbuffer_alist = Fdelq (link, Vbuffer_alist);
1624 we cannot use Fdelq itself here because it allows quitting. */
1627 Vbuffer_alist
= XCDR (Vbuffer_alist
);
1629 XSETCDR (prev
, XCDR (XCDR (prev
)));
1631 XSETCDR (link
, Vbuffer_alist
);
1632 Vbuffer_alist
= link
;
1634 /* Effectively do a delq on buried_buffer_list. */
1637 for (link
= XFRAME (frame
)->buried_buffer_list
; CONSP (link
);
1640 if (EQ (XCAR (link
), buf
))
1643 XFRAME (frame
)->buried_buffer_list
= XCDR (link
);
1645 XSETCDR (prev
, XCDR (XCDR (prev
)));
1651 /* Now move this buffer to the front of frame_buffer_list also. */
1654 for (link
= frame_buffer_list (frame
); CONSP (link
);
1657 if (EQ (XCAR (link
), buf
))
1662 /* Effectively do delq. */
1667 set_frame_buffer_list (frame
,
1668 XCDR (frame_buffer_list (frame
)));
1670 XSETCDR (prev
, XCDR (XCDR (prev
)));
1672 XSETCDR (link
, frame_buffer_list (frame
));
1673 set_frame_buffer_list (frame
, link
);
1676 set_frame_buffer_list (frame
, Fcons (buf
, frame_buffer_list (frame
)));
1679 DEFUN ("set-buffer-major-mode", Fset_buffer_major_mode
, Sset_buffer_major_mode
, 1, 1, 0,
1680 doc
: /* Set an appropriate major mode for BUFFER.
1681 For the *scratch* buffer, use `initial-major-mode', otherwise choose a mode
1682 according to `default-major-mode'.
1683 Use this function before selecting the buffer, since it may need to inspect
1684 the current buffer's major mode. */)
1689 Lisp_Object function
;
1691 CHECK_BUFFER (buffer
);
1693 if (STRINGP (XBUFFER (buffer
)->name
)
1694 && strcmp (SDATA (XBUFFER (buffer
)->name
), "*scratch*") == 0)
1695 function
= find_symbol_value (intern ("initial-major-mode"));
1698 function
= buffer_defaults
.major_mode
;
1700 && NILP (Fget (current_buffer
->major_mode
, Qmode_class
)))
1701 function
= current_buffer
->major_mode
;
1704 if (NILP (function
) || EQ (function
, Qfundamental_mode
))
1707 count
= SPECPDL_INDEX ();
1709 /* To select a nonfundamental mode,
1710 select the buffer temporarily and then call the mode function. */
1712 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
1714 Fset_buffer (buffer
);
1717 return unbind_to (count
, Qnil
);
1720 /* If switching buffers in WINDOW would be an error, return
1721 a C string saying what the error would be. */
1724 no_switch_window (window
)
1728 if (EQ (minibuf_window
, window
))
1729 return "Cannot switch buffers in minibuffer window";
1730 tem
= Fwindow_dedicated_p (window
);
1732 return "Cannot switch buffers in a dedicated window";
1736 /* Switch to buffer BUFFER in the selected window.
1737 If NORECORD is non-nil, don't call record_buffer. */
1740 switch_to_buffer_1 (buffer
, norecord
)
1741 Lisp_Object buffer
, norecord
;
1743 register Lisp_Object buf
;
1746 buf
= Fother_buffer (Fcurrent_buffer (), Qnil
, Qnil
);
1749 buf
= Fget_buffer (buffer
);
1752 buf
= Fget_buffer_create (buffer
);
1753 Fset_buffer_major_mode (buf
);
1757 if (NILP (norecord
))
1758 record_buffer (buf
);
1760 Fset_window_buffer (EQ (selected_window
, minibuf_window
)
1761 ? Fnext_window (minibuf_window
, Qnil
, Qnil
)
1768 DEFUN ("switch-to-buffer", Fswitch_to_buffer
, Sswitch_to_buffer
, 1, 2,
1769 "(list (read-buffer-to-switch \"Switch to buffer: \"))",
1770 doc
: /* Select buffer BUFFER in the current window.
1771 If BUFFER does not identify an existing buffer,
1772 then this function creates a buffer with that name.
1774 When called from Lisp, BUFFER may be a buffer, a string \(a buffer name),
1775 or nil. If BUFFER is nil, then this function chooses a buffer
1776 using `other-buffer'.
1777 Optional second arg NORECORD non-nil means
1778 do not put this buffer at the front of the list of recently selected ones.
1779 This function returns the buffer it switched to.
1781 WARNING: This is NOT the way to work on another buffer temporarily
1782 within a Lisp program! Use `set-buffer' instead. That avoids messing with
1783 the window-buffer correspondences. */)
1785 Lisp_Object buffer
, norecord
;
1789 if (EQ (buffer
, Fwindow_buffer (selected_window
)))
1791 /* Basically a NOP. Avoid signalling an error in the case where
1792 the selected window is dedicated, or a minibuffer. */
1794 /* But do put this buffer at the front of the buffer list,
1795 unless that has been inhibited. Note that even if
1796 BUFFER is at the front of the main buffer-list already,
1797 we still want to move it to the front of the frame's buffer list. */
1798 if (NILP (norecord
))
1799 record_buffer (buffer
);
1800 return Fset_buffer (buffer
);
1803 err
= no_switch_window (selected_window
);
1805 /* If can't display in current window, let pop-to-buffer
1806 try some other window. */
1807 return call3 (intern ("pop-to-buffer"), buffer
, Qnil
, norecord
);
1809 return switch_to_buffer_1 (buffer
, norecord
);
1812 DEFUN ("pop-to-buffer", Fpop_to_buffer
, Spop_to_buffer
, 1, 3, 0,
1813 doc
: /* Select buffer BUFFER in some window, preferably a different one.
1814 BUFFER may be a buffer, a string \(a buffer name), or nil.
1815 If BUFFER is a string which is not the name of an existing buffer,
1816 then this function creates a buffer with that name.
1817 If BUFFER is nil, then it chooses some other buffer.
1818 If `pop-up-windows' is non-nil, windows can be split to do this.
1819 If optional second arg OTHER-WINDOW is non-nil, insist on finding another
1820 window even if BUFFER is already visible in the selected window,
1821 and ignore `same-window-regexps' and `same-window-buffer-names'.
1822 This function returns the buffer it switched to.
1823 This uses the function `display-buffer' as a subroutine; see the documentation
1824 of `display-buffer' for additional customization information.
1826 Optional third arg NORECORD non-nil means
1827 do not put this buffer at the front of the list of recently selected ones. */)
1828 (buffer
, other_window
, norecord
)
1829 Lisp_Object buffer
, other_window
, norecord
;
1831 register Lisp_Object buf
;
1833 buf
= Fother_buffer (Fcurrent_buffer (), Qnil
, Qnil
);
1836 buf
= Fget_buffer (buffer
);
1839 buf
= Fget_buffer_create (buffer
);
1840 Fset_buffer_major_mode (buf
);
1844 Fselect_window (Fdisplay_buffer (buf
, other_window
, Qnil
), norecord
);
1848 DEFUN ("current-buffer", Fcurrent_buffer
, Scurrent_buffer
, 0, 0, 0,
1849 doc
: /* Return the current buffer as a Lisp object. */)
1852 register Lisp_Object buf
;
1853 XSETBUFFER (buf
, current_buffer
);
1857 /* Set the current buffer to B.
1859 We previously set windows_or_buffers_changed here to invalidate
1860 global unchanged information in beg_unchanged and end_unchanged.
1861 This is no longer necessary because we now compute unchanged
1862 information on a buffer-basis. Every action affecting other
1863 windows than the selected one requires a select_window at some
1864 time, and that increments windows_or_buffers_changed. */
1867 set_buffer_internal (b
)
1868 register struct buffer
*b
;
1870 if (current_buffer
!= b
)
1871 set_buffer_internal_1 (b
);
1874 /* Set the current buffer to B, and do not set windows_or_buffers_changed.
1875 This is used by redisplay. */
1878 set_buffer_internal_1 (b
)
1879 register struct buffer
*b
;
1881 register struct buffer
*old_buf
;
1882 register Lisp_Object tail
, valcontents
;
1885 #ifdef USE_MMAP_FOR_BUFFERS
1886 if (b
->text
->beg
== NULL
)
1887 enlarge_buffer_text (b
, 0);
1888 #endif /* USE_MMAP_FOR_BUFFERS */
1890 if (current_buffer
== b
)
1893 old_buf
= current_buffer
;
1895 last_known_column_point
= -1; /* invalidate indentation cache */
1899 /* Put the undo list back in the base buffer, so that it appears
1900 that an indirect buffer shares the undo list of its base. */
1901 if (old_buf
->base_buffer
)
1902 old_buf
->base_buffer
->undo_list
= old_buf
->undo_list
;
1904 /* If the old current buffer has markers to record PT, BEGV and ZV
1905 when it is not current, update them now. */
1906 if (! NILP (old_buf
->pt_marker
))
1909 XSETBUFFER (obuf
, old_buf
);
1910 set_marker_both (old_buf
->pt_marker
, obuf
,
1911 BUF_PT (old_buf
), BUF_PT_BYTE (old_buf
));
1913 if (! NILP (old_buf
->begv_marker
))
1916 XSETBUFFER (obuf
, old_buf
);
1917 set_marker_both (old_buf
->begv_marker
, obuf
,
1918 BUF_BEGV (old_buf
), BUF_BEGV_BYTE (old_buf
));
1920 if (! NILP (old_buf
->zv_marker
))
1923 XSETBUFFER (obuf
, old_buf
);
1924 set_marker_both (old_buf
->zv_marker
, obuf
,
1925 BUF_ZV (old_buf
), BUF_ZV_BYTE (old_buf
));
1929 /* Get the undo list from the base buffer, so that it appears
1930 that an indirect buffer shares the undo list of its base. */
1932 b
->undo_list
= b
->base_buffer
->undo_list
;
1934 /* If the new current buffer has markers to record PT, BEGV and ZV
1935 when it is not current, fetch them now. */
1936 if (! NILP (b
->pt_marker
))
1938 BUF_PT (b
) = marker_position (b
->pt_marker
);
1939 BUF_PT_BYTE (b
) = marker_byte_position (b
->pt_marker
);
1941 if (! NILP (b
->begv_marker
))
1943 BUF_BEGV (b
) = marker_position (b
->begv_marker
);
1944 BUF_BEGV_BYTE (b
) = marker_byte_position (b
->begv_marker
);
1946 if (! NILP (b
->zv_marker
))
1948 BUF_ZV (b
) = marker_position (b
->zv_marker
);
1949 BUF_ZV_BYTE (b
) = marker_byte_position (b
->zv_marker
);
1952 /* Look down buffer's list of local Lisp variables
1953 to find and update any that forward into C variables. */
1955 for (tail
= b
->local_var_alist
; CONSP (tail
); tail
= XCDR (tail
))
1957 valcontents
= SYMBOL_VALUE (XCAR (XCAR (tail
)));
1958 if ((BUFFER_LOCAL_VALUEP (valcontents
))
1959 && (tem
= XBUFFER_LOCAL_VALUE (valcontents
)->realvalue
,
1960 (BOOLFWDP (tem
) || INTFWDP (tem
) || OBJFWDP (tem
))))
1961 /* Just reference the variable
1962 to cause it to become set for this buffer. */
1963 Fsymbol_value (XCAR (XCAR (tail
)));
1966 /* Do the same with any others that were local to the previous buffer */
1969 for (tail
= old_buf
->local_var_alist
; CONSP (tail
); tail
= XCDR (tail
))
1971 valcontents
= SYMBOL_VALUE (XCAR (XCAR (tail
)));
1972 if ((BUFFER_LOCAL_VALUEP (valcontents
))
1973 && (tem
= XBUFFER_LOCAL_VALUE (valcontents
)->realvalue
,
1974 (BOOLFWDP (tem
) || INTFWDP (tem
) || OBJFWDP (tem
))))
1975 /* Just reference the variable
1976 to cause it to become set for this buffer. */
1977 Fsymbol_value (XCAR (XCAR (tail
)));
1981 /* Switch to buffer B temporarily for redisplay purposes.
1982 This avoids certain things that don't need to be done within redisplay. */
1988 register struct buffer
*old_buf
;
1990 if (current_buffer
== b
)
1993 old_buf
= current_buffer
;
1998 /* If the old current buffer has markers to record PT, BEGV and ZV
1999 when it is not current, update them now. */
2000 if (! NILP (old_buf
->pt_marker
))
2003 XSETBUFFER (obuf
, old_buf
);
2004 set_marker_both (old_buf
->pt_marker
, obuf
,
2005 BUF_PT (old_buf
), BUF_PT_BYTE (old_buf
));
2007 if (! NILP (old_buf
->begv_marker
))
2010 XSETBUFFER (obuf
, old_buf
);
2011 set_marker_both (old_buf
->begv_marker
, obuf
,
2012 BUF_BEGV (old_buf
), BUF_BEGV_BYTE (old_buf
));
2014 if (! NILP (old_buf
->zv_marker
))
2017 XSETBUFFER (obuf
, old_buf
);
2018 set_marker_both (old_buf
->zv_marker
, obuf
,
2019 BUF_ZV (old_buf
), BUF_ZV_BYTE (old_buf
));
2023 /* If the new current buffer has markers to record PT, BEGV and ZV
2024 when it is not current, fetch them now. */
2025 if (! NILP (b
->pt_marker
))
2027 BUF_PT (b
) = marker_position (b
->pt_marker
);
2028 BUF_PT_BYTE (b
) = marker_byte_position (b
->pt_marker
);
2030 if (! NILP (b
->begv_marker
))
2032 BUF_BEGV (b
) = marker_position (b
->begv_marker
);
2033 BUF_BEGV_BYTE (b
) = marker_byte_position (b
->begv_marker
);
2035 if (! NILP (b
->zv_marker
))
2037 BUF_ZV (b
) = marker_position (b
->zv_marker
);
2038 BUF_ZV_BYTE (b
) = marker_byte_position (b
->zv_marker
);
2042 DEFUN ("set-buffer", Fset_buffer
, Sset_buffer
, 1, 1, 0,
2043 doc
: /* Make the buffer BUFFER current for editing operations.
2044 BUFFER may be a buffer or the name of an existing buffer.
2045 See also `save-excursion' when you want to make a buffer current temporarily.
2046 This function does not display the buffer, so its effect ends
2047 when the current command terminates.
2048 Use `switch-to-buffer' or `pop-to-buffer' to switch buffers permanently. */)
2050 register Lisp_Object buffer
;
2052 register Lisp_Object buf
;
2053 buf
= Fget_buffer (buffer
);
2056 if (NILP (XBUFFER (buf
)->name
))
2057 error ("Selecting deleted buffer");
2058 set_buffer_internal (XBUFFER (buf
));
2062 /* Set the current buffer to BUFFER provided it is alive. */
2065 set_buffer_if_live (buffer
)
2068 if (! NILP (XBUFFER (buffer
)->name
))
2069 Fset_buffer (buffer
);
2073 DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only
,
2074 Sbarf_if_buffer_read_only
, 0, 0, 0,
2075 doc
: /* Signal a `buffer-read-only' error if the current buffer is read-only. */)
2078 if (!NILP (current_buffer
->read_only
)
2079 && NILP (Vinhibit_read_only
))
2080 xsignal1 (Qbuffer_read_only
, Fcurrent_buffer ());
2084 DEFUN ("bury-buffer", Fbury_buffer
, Sbury_buffer
, 0, 1, "",
2085 doc
: /* Put BUFFER at the end of the list of all buffers.
2086 There it is the least likely candidate for `other-buffer' to return;
2087 thus, the least likely buffer for \\[switch-to-buffer] to select by default.
2088 You can specify a buffer name as BUFFER, or an actual buffer object.
2089 If BUFFER is nil or omitted, bury the current buffer.
2090 Also, if BUFFER is nil or omitted, remove the current buffer from the
2091 selected window if it is displayed there. */)
2093 register Lisp_Object buffer
;
2095 /* Figure out what buffer we're going to bury. */
2099 XSETBUFFER (buffer
, current_buffer
);
2101 tem
= Fwindow_buffer (selected_window
);
2102 /* If we're burying the current buffer, unshow it. */
2103 if (EQ (buffer
, tem
))
2105 if (NILP (Fwindow_dedicated_p (selected_window
)))
2106 Fswitch_to_buffer (Fother_buffer (buffer
, Qnil
, Qnil
), Qnil
);
2107 else if (NILP (XWINDOW (selected_window
)->parent
))
2108 Ficonify_frame (Fwindow_frame (selected_window
));
2110 Fdelete_window (selected_window
);
2117 buf1
= Fget_buffer (buffer
);
2123 /* Move buffer to the end of the buffer list. Do nothing if the
2124 buffer is killed. */
2125 if (!NILP (XBUFFER (buffer
)->name
))
2127 Lisp_Object aelt
, link
;
2129 aelt
= Frassq (buffer
, Vbuffer_alist
);
2130 link
= Fmemq (aelt
, Vbuffer_alist
);
2131 Vbuffer_alist
= Fdelq (aelt
, Vbuffer_alist
);
2132 XSETCDR (link
, Qnil
);
2133 Vbuffer_alist
= nconc2 (Vbuffer_alist
, link
);
2135 XFRAME (selected_frame
)->buffer_list
2136 = Fdelq (buffer
, XFRAME (selected_frame
)->buffer_list
);
2137 XFRAME (selected_frame
)->buried_buffer_list
2138 = Fcons (buffer
, Fdelq (buffer
, XFRAME (selected_frame
)->buried_buffer_list
));
2144 DEFUN ("erase-buffer", Ferase_buffer
, Serase_buffer
, 0, 0, "*",
2145 doc
: /* Delete the entire contents of the current buffer.
2146 Any narrowing restriction in effect (see `narrow-to-region') is removed,
2147 so the buffer is truly empty after this. */)
2154 current_buffer
->last_window_start
= 1;
2155 /* Prevent warnings, or suspension of auto saving, that would happen
2156 if future size is less than past size. Use of erase-buffer
2157 implies that the future text is not really related to the past text. */
2158 XSETFASTINT (current_buffer
->save_length
, 0);
2163 validate_region (b
, e
)
2164 register Lisp_Object
*b
, *e
;
2166 CHECK_NUMBER_COERCE_MARKER (*b
);
2167 CHECK_NUMBER_COERCE_MARKER (*e
);
2169 if (XINT (*b
) > XINT (*e
))
2172 tem
= *b
; *b
= *e
; *e
= tem
;
2175 if (!(BEGV
<= XINT (*b
) && XINT (*b
) <= XINT (*e
)
2176 && XINT (*e
) <= ZV
))
2177 args_out_of_range (*b
, *e
);
2180 /* Advance BYTE_POS up to a character boundary
2181 and return the adjusted position. */
2184 advance_to_char_boundary (byte_pos
)
2189 if (byte_pos
== BEG
)
2190 /* Beginning of buffer is always a character boundary. */
2193 c
= FETCH_BYTE (byte_pos
);
2194 if (! CHAR_HEAD_P (c
))
2196 /* We should advance BYTE_POS only when C is a constituent of a
2197 multibyte sequence. */
2198 int orig_byte_pos
= byte_pos
;
2203 c
= FETCH_BYTE (byte_pos
);
2205 while (! CHAR_HEAD_P (c
) && byte_pos
> BEG
);
2207 if (byte_pos
< orig_byte_pos
)
2208 byte_pos
= orig_byte_pos
;
2209 /* If C is a constituent of a multibyte sequence, BYTE_POS was
2210 surely advance to the correct character boundary. If C is
2211 not, BYTE_POS was unchanged. */
2217 DEFUN ("buffer-swap-text", Fbuffer_swap_text
, Sbuffer_swap_text
,
2219 doc
: /* Swap the text between current buffer and BUFFER. */)
2223 struct buffer
*other_buffer
;
2224 CHECK_BUFFER (buffer
);
2225 other_buffer
= XBUFFER (buffer
);
2227 /* Actually, it probably works just fine.
2228 * if (other_buffer == current_buffer)
2229 * error ("Cannot swap a buffer's text with itself"); */
2231 /* Actually, this may be workable as well, tho probably only if they're
2233 if (other_buffer
->base_buffer
2234 || current_buffer
->base_buffer
)
2235 error ("Cannot swap indirect buffers's text");
2237 { /* This is probably harder to make work. */
2238 struct buffer
*other
;
2239 for (other
= all_buffers
; other
; other
= other
->next
)
2240 if (other
->base_buffer
== other_buffer
2241 || other
->base_buffer
== current_buffer
)
2242 error ("One of the buffers to swap has indirect buffers");
2245 #define swapfield(field, type) \
2247 type tmp##field = other_buffer->field; \
2248 other_buffer->field = current_buffer->field; \
2249 current_buffer->field = tmp##field; \
2252 swapfield (own_text
, struct buffer_text
);
2253 eassert (current_buffer
->text
== ¤t_buffer
->own_text
);
2254 eassert (other_buffer
->text
== &other_buffer
->own_text
);
2255 swapfield (pt
, EMACS_INT
);
2256 swapfield (pt_byte
, EMACS_INT
);
2257 swapfield (begv
, EMACS_INT
);
2258 swapfield (begv_byte
, EMACS_INT
);
2259 swapfield (zv
, EMACS_INT
);
2260 swapfield (zv_byte
, EMACS_INT
);
2261 eassert (!current_buffer
->base_buffer
);
2262 eassert (!other_buffer
->base_buffer
);
2263 current_buffer
->clip_changed
= 1; other_buffer
->clip_changed
= 1;
2264 swapfield (newline_cache
, struct region_cache
*);
2265 swapfield (width_run_cache
, struct region_cache
*);
2266 current_buffer
->prevent_redisplay_optimizations_p
= 1;
2267 other_buffer
->prevent_redisplay_optimizations_p
= 1;
2268 swapfield (overlays_before
, struct Lisp_Overlay
*);
2269 swapfield (overlays_after
, struct Lisp_Overlay
*);
2270 swapfield (overlay_center
, EMACS_INT
);
2271 swapfield (undo_list
, Lisp_Object
);
2272 swapfield (mark
, Lisp_Object
);
2273 if (MARKERP (current_buffer
->mark
) && XMARKER (current_buffer
->mark
)->buffer
)
2274 XMARKER (current_buffer
->mark
)->buffer
= current_buffer
;
2275 if (MARKERP (other_buffer
->mark
) && XMARKER (other_buffer
->mark
)->buffer
)
2276 XMARKER (other_buffer
->mark
)->buffer
= other_buffer
;
2277 swapfield (enable_multibyte_characters
, Lisp_Object
);
2278 /* FIXME: Not sure what we should do with these *_marker fields.
2279 Hopefully they're just nil anyway. */
2280 swapfield (pt_marker
, Lisp_Object
);
2281 swapfield (begv_marker
, Lisp_Object
);
2282 swapfield (zv_marker
, Lisp_Object
);
2283 current_buffer
->point_before_scroll
= Qnil
;
2284 other_buffer
->point_before_scroll
= Qnil
;
2286 current_buffer
->text
->modiff
++; other_buffer
->text
->modiff
++;
2287 current_buffer
->text
->chars_modiff
++; other_buffer
->text
->chars_modiff
++;
2288 current_buffer
->text
->overlay_modiff
++; other_buffer
->text
->overlay_modiff
++;
2289 current_buffer
->text
->beg_unchanged
= current_buffer
->text
->gpt
;
2290 current_buffer
->text
->end_unchanged
= current_buffer
->text
->gpt
;
2291 other_buffer
->text
->beg_unchanged
= current_buffer
->text
->gpt
;
2292 other_buffer
->text
->end_unchanged
= current_buffer
->text
->gpt
;
2294 struct Lisp_Marker
*m
;
2295 for (m
= BUF_MARKERS (current_buffer
); m
; m
= m
->next
)
2296 if (m
->buffer
== other_buffer
)
2297 m
->buffer
= current_buffer
;
2298 for (m
= BUF_MARKERS (other_buffer
); m
; m
= m
->next
)
2299 if (m
->buffer
== current_buffer
)
2300 m
->buffer
= other_buffer
;
2302 if (current_buffer
->text
->intervals
)
2303 (eassert (EQ (current_buffer
->text
->intervals
->up
.obj
, buffer
)),
2304 XSETBUFFER (current_buffer
->text
->intervals
->up
.obj
, current_buffer
));
2305 if (other_buffer
->text
->intervals
)
2306 (eassert (EQ (other_buffer
->text
->intervals
->up
.obj
, Fcurrent_buffer ())),
2307 XSETBUFFER (other_buffer
->text
->intervals
->up
.obj
, other_buffer
));
2312 DEFUN ("set-buffer-multibyte", Fset_buffer_multibyte
, Sset_buffer_multibyte
,
2314 doc
: /* Set the multibyte flag of the current buffer to FLAG.
2315 If FLAG is t, this makes the buffer a multibyte buffer.
2316 If FLAG is nil, this makes the buffer a single-byte buffer.
2317 In these cases, the buffer contents remain unchanged as a sequence of
2318 bytes but the contents viewed as characters do change.
2319 If FLAG is `to', this makes the buffer a multibyte buffer by changing
2320 all eight-bit bytes to eight-bit characters.
2321 If the multibyte flag was really changed, undo information of the
2322 current buffer is cleared. */)
2326 struct Lisp_Marker
*tail
, *markers
;
2327 struct buffer
*other
;
2329 int narrowed
= (BEG
!= BEGV
|| Z
!= ZV
);
2330 int modified_p
= !NILP (Fbuffer_modified_p (Qnil
));
2331 Lisp_Object old_undo
= current_buffer
->undo_list
;
2332 struct gcpro gcpro1
;
2334 if (current_buffer
->base_buffer
)
2335 error ("Cannot do `set-buffer-multibyte' on an indirect buffer");
2337 /* Do nothing if nothing actually changes. */
2338 if (NILP (flag
) == NILP (current_buffer
->enable_multibyte_characters
))
2343 /* Don't record these buffer changes. We will put a special undo entry
2345 current_buffer
->undo_list
= Qt
;
2347 /* If the cached position is for this buffer, clear it out. */
2348 clear_charpos_cache (current_buffer
);
2351 begv
= BEGV_BYTE
, zv
= ZV_BYTE
;
2353 begv
= BEGV
, zv
= ZV
;
2363 /* Do this first, so it can use CHAR_TO_BYTE
2364 to calculate the old correspondences. */
2365 set_intervals_multibyte (0);
2367 current_buffer
->enable_multibyte_characters
= Qnil
;
2373 TEMP_SET_PT_BOTH (PT_BYTE
, PT_BYTE
);
2376 for (tail
= BUF_MARKERS (current_buffer
); tail
; tail
= tail
->next
)
2377 tail
->charpos
= tail
->bytepos
;
2379 /* Convert multibyte form of 8-bit characters to unibyte. */
2394 if (ASCII_BYTE_P (*p
))
2396 else if (CHAR_BYTE8_HEAD_P (*p
))
2398 c
= STRING_CHAR_AND_LENGTH (p
, stop
- pos
, bytes
);
2399 /* Delete all bytes for this 8-bit character but the
2400 last one, and change the last one to the charcter
2403 del_range_2 (pos
, pos
, pos
+ bytes
, pos
+ bytes
, 0);
2415 bytes
= BYTES_BY_CHAR_HEAD (*p
);
2416 p
+= bytes
, pos
+= bytes
;
2420 Fnarrow_to_region (make_number (begv
), make_number (zv
));
2426 unsigned char *p
, *pend
;
2428 /* Be sure not to have a multibyte sequence striding over the GAP.
2429 Ex: We change this: "...abc\302 _GAP_ \241def..."
2430 to: "...abc _GAP_ \302\241def..." */
2433 && GPT_BYTE
> 1 && GPT_BYTE
< Z_BYTE
2434 && ! CHAR_HEAD_P (*(GAP_END_ADDR
)))
2436 unsigned char *p
= GPT_ADDR
- 1;
2438 while (! CHAR_HEAD_P (*p
) && p
> BEG_ADDR
) p
--;
2439 if (BASE_LEADING_CODE_P (*p
))
2441 int new_gpt
= GPT_BYTE
- (GPT_ADDR
- p
);
2443 move_gap_both (new_gpt
, new_gpt
);
2447 /* Make the buffer contents valid as multibyte by converting
2448 8-bit characters to multibyte form. */
2466 if (ASCII_BYTE_P (*p
))
2468 else if (EQ (flag
, Qt
) && (bytes
= MULTIBYTE_LENGTH (p
, pend
)) > 0)
2469 p
+= bytes
, pos
+= bytes
;
2472 unsigned char tmp
[MAX_MULTIBYTE_LENGTH
];
2475 c
= BYTE8_TO_CHAR (*p
);
2476 bytes
= CHAR_STRING (c
, tmp
);
2478 TEMP_SET_PT_BOTH (pos
+ 1, pos
+ 1);
2480 insert_1_both (tmp
+ 1, bytes
, bytes
, 1, 0, 0);
2481 /* Now the gap is after the just inserted data. */
2499 Fnarrow_to_region (make_number (begv
), make_number (zv
));
2501 /* Do this first, so that chars_in_text asks the right question.
2502 set_intervals_multibyte needs it too. */
2503 current_buffer
->enable_multibyte_characters
= Qt
;
2505 GPT_BYTE
= advance_to_char_boundary (GPT_BYTE
);
2506 GPT
= chars_in_text (BEG_ADDR
, GPT_BYTE
- BEG_BYTE
) + BEG
;
2508 Z
= chars_in_text (GAP_END_ADDR
, Z_BYTE
- GPT_BYTE
) + GPT
;
2510 BEGV_BYTE
= advance_to_char_boundary (BEGV_BYTE
);
2511 if (BEGV_BYTE
> GPT_BYTE
)
2512 BEGV
= chars_in_text (GAP_END_ADDR
, BEGV_BYTE
- GPT_BYTE
) + GPT
;
2514 BEGV
= chars_in_text (BEG_ADDR
, BEGV_BYTE
- BEG_BYTE
) + BEG
;
2516 ZV_BYTE
= advance_to_char_boundary (ZV_BYTE
);
2517 if (ZV_BYTE
> GPT_BYTE
)
2518 ZV
= chars_in_text (GAP_END_ADDR
, ZV_BYTE
- GPT_BYTE
) + GPT
;
2520 ZV
= chars_in_text (BEG_ADDR
, ZV_BYTE
- BEG_BYTE
) + BEG
;
2523 int pt_byte
= advance_to_char_boundary (PT_BYTE
);
2526 if (pt_byte
> GPT_BYTE
)
2527 pt
= chars_in_text (GAP_END_ADDR
, pt_byte
- GPT_BYTE
) + GPT
;
2529 pt
= chars_in_text (BEG_ADDR
, pt_byte
- BEG_BYTE
) + BEG
;
2530 TEMP_SET_PT_BOTH (pt
, pt_byte
);
2533 tail
= markers
= BUF_MARKERS (current_buffer
);
2535 /* This prevents BYTE_TO_CHAR (that is, buf_bytepos_to_charpos) from
2536 getting confused by the markers that have not yet been updated.
2537 It is also a signal that it should never create a marker. */
2538 BUF_MARKERS (current_buffer
) = NULL
;
2540 for (; tail
; tail
= tail
->next
)
2542 tail
->bytepos
= advance_to_char_boundary (tail
->bytepos
);
2543 tail
->charpos
= BYTE_TO_CHAR (tail
->bytepos
);
2546 /* Make sure no markers were put on the chain
2547 while the chain value was incorrect. */
2548 if (BUF_MARKERS (current_buffer
))
2551 BUF_MARKERS (current_buffer
) = markers
;
2553 /* Do this last, so it can calculate the new correspondences
2554 between chars and bytes. */
2555 set_intervals_multibyte (1);
2558 if (!EQ (old_undo
, Qt
))
2560 /* Represent all the above changes by a special undo entry. */
2561 extern Lisp_Object Qapply
;
2562 current_buffer
->undo_list
= Fcons (list3 (Qapply
,
2563 intern ("set-buffer-multibyte"),
2564 NILP (flag
) ? Qt
: Qnil
),
2570 /* Changing the multibyteness of a buffer means that all windows
2571 showing that buffer must be updated thoroughly. */
2572 current_buffer
->prevent_redisplay_optimizations_p
= 1;
2573 ++windows_or_buffers_changed
;
2575 /* Copy this buffer's new multibyte status
2576 into all of its indirect buffers. */
2577 for (other
= all_buffers
; other
; other
= other
->next
)
2578 if (other
->base_buffer
== current_buffer
&& !NILP (other
->name
))
2580 other
->enable_multibyte_characters
2581 = current_buffer
->enable_multibyte_characters
;
2582 other
->prevent_redisplay_optimizations_p
= 1;
2585 /* Restore the modifiedness of the buffer. */
2586 if (!modified_p
&& !NILP (Fbuffer_modified_p (Qnil
)))
2587 Fset_buffer_modified_p (Qnil
);
2590 /* Update coding systems of this buffer's process (if any). */
2592 Lisp_Object process
;
2594 process
= Fget_buffer_process (Fcurrent_buffer ());
2595 if (PROCESSP (process
))
2596 setup_process_coding_systems (process
);
2598 #endif /* subprocesses */
2603 DEFUN ("kill-all-local-variables", Fkill_all_local_variables
, Skill_all_local_variables
,
2605 doc
: /* Switch to Fundamental mode by killing current buffer's local variables.
2606 Most local variable bindings are eliminated so that the default values
2607 become effective once more. Also, the syntax table is set from
2608 `standard-syntax-table', the local keymap is set to nil,
2609 and the abbrev table from `fundamental-mode-abbrev-table'.
2610 This function also forces redisplay of the mode line.
2612 Every function to select a new major mode starts by
2613 calling this function.
2615 As a special exception, local variables whose names have
2616 a non-nil `permanent-local' property are not eliminated by this function.
2618 The first thing this function does is run
2619 the normal hook `change-major-mode-hook'. */)
2622 if (!NILP (Vrun_hooks
))
2623 call1 (Vrun_hooks
, Qchange_major_mode_hook
);
2625 /* Make sure none of the bindings in local_var_alist
2626 remain swapped in, in their symbols. */
2628 swap_out_buffer_local_variables (current_buffer
);
2630 /* Actually eliminate all local bindings of this buffer. */
2632 reset_buffer_local_variables (current_buffer
, 0);
2634 /* Force mode-line redisplay. Useful here because all major mode
2635 commands call this function. */
2636 update_mode_lines
++;
2641 /* Make sure no local variables remain set up with buffer B
2642 for their current values. */
2645 swap_out_buffer_local_variables (b
)
2648 Lisp_Object oalist
, alist
, sym
, tem
, buffer
;
2650 XSETBUFFER (buffer
, b
);
2651 oalist
= b
->local_var_alist
;
2653 for (alist
= oalist
; CONSP (alist
); alist
= XCDR (alist
))
2655 sym
= XCAR (XCAR (alist
));
2657 /* Need not do anything if some other buffer's binding is now encached. */
2658 tem
= XBUFFER_LOCAL_VALUE (SYMBOL_VALUE (sym
))->buffer
;
2659 if (EQ (tem
, buffer
))
2661 /* Symbol is set up for this buffer's old local value:
2663 swap_in_global_binding (sym
);
2668 /* Find all the overlays in the current buffer that contain position POS.
2669 Return the number found, and store them in a vector in *VEC_PTR.
2670 Store in *LEN_PTR the size allocated for the vector.
2671 Store in *NEXT_PTR the next position after POS where an overlay starts,
2672 or ZV if there are no more overlays between POS and ZV.
2673 Store in *PREV_PTR the previous position before POS where an overlay ends,
2674 or where an overlay starts which ends at or after POS;
2675 or BEGV if there are no such overlays from BEGV to POS.
2676 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2678 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2679 when this function is called.
2681 If EXTEND is non-zero, we make the vector bigger if necessary.
2682 If EXTEND is zero, we never extend the vector,
2683 and we store only as many overlays as will fit.
2684 But we still return the total number of overlays.
2686 If CHANGE_REQ is true, then any position written into *PREV_PTR or
2687 *NEXT_PTR is guaranteed to be not equal to POS, unless it is the
2688 default (BEGV or ZV). */
2691 overlays_at (pos
, extend
, vec_ptr
, len_ptr
, next_ptr
, prev_ptr
, change_req
)
2694 Lisp_Object
**vec_ptr
;
2696 EMACS_INT
*next_ptr
;
2697 EMACS_INT
*prev_ptr
;
2700 Lisp_Object overlay
, start
, end
;
2701 struct Lisp_Overlay
*tail
;
2704 Lisp_Object
*vec
= *vec_ptr
;
2707 int inhibit_storing
= 0;
2709 for (tail
= current_buffer
->overlays_before
; tail
; tail
= tail
->next
)
2711 int startpos
, endpos
;
2713 XSETMISC (overlay
, tail
);
2715 start
= OVERLAY_START (overlay
);
2716 end
= OVERLAY_END (overlay
);
2717 endpos
= OVERLAY_POSITION (end
);
2724 startpos
= OVERLAY_POSITION (start
);
2725 /* This one ends at or after POS
2726 so its start counts for PREV_PTR if it's before POS. */
2727 if (prev
< startpos
&& startpos
< pos
)
2731 if (startpos
<= pos
)
2735 /* The supplied vector is full.
2736 Either make it bigger, or don't store any more in it. */
2739 /* Make it work with an initial len == 0. */
2744 vec
= (Lisp_Object
*) xrealloc (vec
, len
* sizeof (Lisp_Object
));
2748 inhibit_storing
= 1;
2751 if (!inhibit_storing
)
2753 /* Keep counting overlays even if we can't return them all. */
2756 else if (startpos
< next
)
2760 for (tail
= current_buffer
->overlays_after
; tail
; tail
= tail
->next
)
2762 int startpos
, endpos
;
2764 XSETMISC (overlay
, tail
);
2766 start
= OVERLAY_START (overlay
);
2767 end
= OVERLAY_END (overlay
);
2768 startpos
= OVERLAY_POSITION (start
);
2771 if (startpos
< next
)
2775 endpos
= OVERLAY_POSITION (end
);
2782 /* Make it work with an initial len == 0. */
2787 vec
= (Lisp_Object
*) xrealloc (vec
, len
* sizeof (Lisp_Object
));
2791 inhibit_storing
= 1;
2794 if (!inhibit_storing
)
2798 if (startpos
< pos
&& startpos
> prev
)
2801 else if (endpos
< pos
&& endpos
> prev
)
2803 else if (endpos
== pos
&& startpos
> prev
2804 && (!change_req
|| startpos
< pos
))
2815 /* Find all the overlays in the current buffer that overlap the range
2816 BEG-END, or are empty at BEG, or are empty at END provided END
2817 denotes the position at the end of the current buffer.
2819 Return the number found, and store them in a vector in *VEC_PTR.
2820 Store in *LEN_PTR the size allocated for the vector.
2821 Store in *NEXT_PTR the next position after POS where an overlay starts,
2822 or ZV if there are no more overlays.
2823 Store in *PREV_PTR the previous position before POS where an overlay ends,
2824 or BEGV if there are no previous overlays.
2825 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2827 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2828 when this function is called.
2830 If EXTEND is non-zero, we make the vector bigger if necessary.
2831 If EXTEND is zero, we never extend the vector,
2832 and we store only as many overlays as will fit.
2833 But we still return the total number of overlays. */
2836 overlays_in (beg
, end
, extend
, vec_ptr
, len_ptr
, next_ptr
, prev_ptr
)
2839 Lisp_Object
**vec_ptr
;
2844 Lisp_Object overlay
, ostart
, oend
;
2845 struct Lisp_Overlay
*tail
;
2848 Lisp_Object
*vec
= *vec_ptr
;
2851 int inhibit_storing
= 0;
2852 int end_is_Z
= end
== Z
;
2854 for (tail
= current_buffer
->overlays_before
; tail
; tail
= tail
->next
)
2856 int startpos
, endpos
;
2858 XSETMISC (overlay
, tail
);
2860 ostart
= OVERLAY_START (overlay
);
2861 oend
= OVERLAY_END (overlay
);
2862 endpos
= OVERLAY_POSITION (oend
);
2869 startpos
= OVERLAY_POSITION (ostart
);
2870 /* Count an interval if it overlaps the range, is empty at the
2871 start of the range, or is empty at END provided END denotes the
2872 end of the buffer. */
2873 if ((beg
< endpos
&& startpos
< end
)
2874 || (startpos
== endpos
2875 && (beg
== endpos
|| (end_is_Z
&& endpos
== end
))))
2879 /* The supplied vector is full.
2880 Either make it bigger, or don't store any more in it. */
2883 /* Make it work with an initial len == 0. */
2888 vec
= (Lisp_Object
*) xrealloc (vec
, len
* sizeof (Lisp_Object
));
2892 inhibit_storing
= 1;
2895 if (!inhibit_storing
)
2897 /* Keep counting overlays even if we can't return them all. */
2900 else if (startpos
< next
)
2904 for (tail
= current_buffer
->overlays_after
; tail
; tail
= tail
->next
)
2906 int startpos
, endpos
;
2908 XSETMISC (overlay
, tail
);
2910 ostart
= OVERLAY_START (overlay
);
2911 oend
= OVERLAY_END (overlay
);
2912 startpos
= OVERLAY_POSITION (ostart
);
2915 if (startpos
< next
)
2919 endpos
= OVERLAY_POSITION (oend
);
2920 /* Count an interval if it overlaps the range, is empty at the
2921 start of the range, or is empty at END provided END denotes the
2922 end of the buffer. */
2923 if ((beg
< endpos
&& startpos
< end
)
2924 || (startpos
== endpos
2925 && (beg
== endpos
|| (end_is_Z
&& endpos
== end
))))
2931 /* Make it work with an initial len == 0. */
2936 vec
= (Lisp_Object
*) xrealloc (vec
, len
* sizeof (Lisp_Object
));
2940 inhibit_storing
= 1;
2943 if (!inhibit_storing
)
2947 else if (endpos
< beg
&& endpos
> prev
)
2959 /* Return non-zero if there exists an overlay with a non-nil
2960 `mouse-face' property overlapping OVERLAY. */
2963 mouse_face_overlay_overlaps (overlay
)
2964 Lisp_Object overlay
;
2966 int start
= OVERLAY_POSITION (OVERLAY_START (overlay
));
2967 int end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
2969 Lisp_Object
*v
, tem
;
2972 v
= (Lisp_Object
*) alloca (size
* sizeof *v
);
2973 n
= overlays_in (start
, end
, 0, &v
, &size
, NULL
, NULL
);
2976 v
= (Lisp_Object
*) alloca (n
* sizeof *v
);
2977 overlays_in (start
, end
, 0, &v
, &n
, NULL
, NULL
);
2980 for (i
= 0; i
< n
; ++i
)
2981 if (!EQ (v
[i
], overlay
)
2982 && (tem
= Foverlay_get (overlay
, Qmouse_face
),
2991 /* Fast function to just test if we're at an overlay boundary. */
2993 overlay_touches_p (pos
)
2996 Lisp_Object overlay
;
2997 struct Lisp_Overlay
*tail
;
2999 for (tail
= current_buffer
->overlays_before
; tail
; tail
= tail
->next
)
3003 XSETMISC (overlay
,tail
);
3004 if (!OVERLAYP (overlay
))
3007 endpos
= OVERLAY_POSITION (OVERLAY_END (overlay
));
3010 if (endpos
== pos
|| OVERLAY_POSITION (OVERLAY_START (overlay
)) == pos
)
3014 for (tail
= current_buffer
->overlays_after
; tail
; tail
= tail
->next
)
3018 XSETMISC (overlay
, tail
);
3019 if (!OVERLAYP (overlay
))
3022 startpos
= OVERLAY_POSITION (OVERLAY_START (overlay
));
3025 if (startpos
== pos
|| OVERLAY_POSITION (OVERLAY_END (overlay
)) == pos
)
3033 Lisp_Object overlay
;
3039 compare_overlays (v1
, v2
)
3040 const void *v1
, *v2
;
3042 const struct sortvec
*s1
= (const struct sortvec
*) v1
;
3043 const struct sortvec
*s2
= (const struct sortvec
*) v2
;
3044 if (s1
->priority
!= s2
->priority
)
3045 return s1
->priority
- s2
->priority
;
3046 if (s1
->beg
!= s2
->beg
)
3047 return s1
->beg
- s2
->beg
;
3048 if (s1
->end
!= s2
->end
)
3049 return s2
->end
- s1
->end
;
3053 /* Sort an array of overlays by priority. The array is modified in place.
3054 The return value is the new size; this may be smaller than the original
3055 size if some of the overlays were invalid or were window-specific. */
3057 sort_overlays (overlay_vec
, noverlays
, w
)
3058 Lisp_Object
*overlay_vec
;
3063 struct sortvec
*sortvec
;
3064 sortvec
= (struct sortvec
*) alloca (noverlays
* sizeof (struct sortvec
));
3066 /* Put the valid and relevant overlays into sortvec. */
3068 for (i
= 0, j
= 0; i
< noverlays
; i
++)
3071 Lisp_Object overlay
;
3073 overlay
= overlay_vec
[i
];
3074 if (OVERLAY_VALID (overlay
)
3075 && OVERLAY_POSITION (OVERLAY_START (overlay
)) > 0
3076 && OVERLAY_POSITION (OVERLAY_END (overlay
)) > 0)
3078 /* If we're interested in a specific window, then ignore
3079 overlays that are limited to some other window. */
3084 window
= Foverlay_get (overlay
, Qwindow
);
3085 if (WINDOWP (window
) && XWINDOW (window
) != w
)
3089 /* This overlay is good and counts: put it into sortvec. */
3090 sortvec
[j
].overlay
= overlay
;
3091 sortvec
[j
].beg
= OVERLAY_POSITION (OVERLAY_START (overlay
));
3092 sortvec
[j
].end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
3093 tem
= Foverlay_get (overlay
, Qpriority
);
3095 sortvec
[j
].priority
= XINT (tem
);
3097 sortvec
[j
].priority
= 0;
3103 /* Sort the overlays into the proper order: increasing priority. */
3106 qsort (sortvec
, noverlays
, sizeof (struct sortvec
), compare_overlays
);
3108 for (i
= 0; i
< noverlays
; i
++)
3109 overlay_vec
[i
] = sortvec
[i
].overlay
;
3115 Lisp_Object string
, string2
;
3122 struct sortstr
*buf
; /* An array that expands as needed; never freed. */
3123 int size
; /* Allocated length of that array. */
3124 int used
; /* How much of the array is currently in use. */
3125 int bytes
; /* Total length of the strings in buf. */
3128 /* Buffers for storing information about the overlays touching a given
3129 position. These could be automatic variables in overlay_strings, but
3130 it's more efficient to hold onto the memory instead of repeatedly
3131 allocating and freeing it. */
3132 static struct sortstrlist overlay_heads
, overlay_tails
;
3133 static unsigned char *overlay_str_buf
;
3135 /* Allocated length of overlay_str_buf. */
3136 static int overlay_str_len
;
3138 /* A comparison function suitable for passing to qsort. */
3140 cmp_for_strings (as1
, as2
)
3143 struct sortstr
*s1
= (struct sortstr
*)as1
;
3144 struct sortstr
*s2
= (struct sortstr
*)as2
;
3145 if (s1
->size
!= s2
->size
)
3146 return s2
->size
- s1
->size
;
3147 if (s1
->priority
!= s2
->priority
)
3148 return s1
->priority
- s2
->priority
;
3153 record_overlay_string (ssl
, str
, str2
, pri
, size
)
3154 struct sortstrlist
*ssl
;
3155 Lisp_Object str
, str2
, pri
;
3160 if (ssl
->used
== ssl
->size
)
3166 ssl
->buf
= ((struct sortstr
*)
3167 xrealloc (ssl
->buf
, ssl
->size
* sizeof (struct sortstr
)));
3169 ssl
->buf
[ssl
->used
].string
= str
;
3170 ssl
->buf
[ssl
->used
].string2
= str2
;
3171 ssl
->buf
[ssl
->used
].size
= size
;
3172 ssl
->buf
[ssl
->used
].priority
= (INTEGERP (pri
) ? XINT (pri
) : 0);
3175 if (NILP (current_buffer
->enable_multibyte_characters
))
3176 nbytes
= SCHARS (str
);
3177 else if (! STRING_MULTIBYTE (str
))
3178 nbytes
= count_size_as_multibyte (SDATA (str
),
3181 nbytes
= SBYTES (str
);
3183 ssl
->bytes
+= nbytes
;
3187 if (NILP (current_buffer
->enable_multibyte_characters
))
3188 nbytes
= SCHARS (str2
);
3189 else if (! STRING_MULTIBYTE (str2
))
3190 nbytes
= count_size_as_multibyte (SDATA (str2
),
3193 nbytes
= SBYTES (str2
);
3195 ssl
->bytes
+= nbytes
;
3199 /* Return the concatenation of the strings associated with overlays that
3200 begin or end at POS, ignoring overlays that are specific to a window
3201 other than W. The strings are concatenated in the appropriate order:
3202 shorter overlays nest inside longer ones, and higher priority inside
3203 lower. Normally all of the after-strings come first, but zero-sized
3204 overlays have their after-strings ride along with the before-strings
3205 because it would look strange to print them inside-out.
3207 Returns the string length, and stores the contents indirectly through
3208 PSTR, if that variable is non-null. The string may be overwritten by
3209 subsequent calls. */
3212 overlay_strings (pos
, w
, pstr
)
3215 unsigned char **pstr
;
3217 Lisp_Object overlay
, window
, str
;
3218 struct Lisp_Overlay
*ov
;
3219 int startpos
, endpos
;
3220 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
3222 overlay_heads
.used
= overlay_heads
.bytes
= 0;
3223 overlay_tails
.used
= overlay_tails
.bytes
= 0;
3224 for (ov
= current_buffer
->overlays_before
; ov
; ov
= ov
->next
)
3226 XSETMISC (overlay
, ov
);
3227 eassert (OVERLAYP (overlay
));
3229 startpos
= OVERLAY_POSITION (OVERLAY_START (overlay
));
3230 endpos
= OVERLAY_POSITION (OVERLAY_END (overlay
));
3233 if (endpos
!= pos
&& startpos
!= pos
)
3235 window
= Foverlay_get (overlay
, Qwindow
);
3236 if (WINDOWP (window
) && XWINDOW (window
) != w
)
3239 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
)))
3240 record_overlay_string (&overlay_heads
, str
,
3242 ? Foverlay_get (overlay
, Qafter_string
)
3244 Foverlay_get (overlay
, Qpriority
),
3246 else if (endpos
== pos
3247 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
)))
3248 record_overlay_string (&overlay_tails
, str
, Qnil
,
3249 Foverlay_get (overlay
, Qpriority
),
3252 for (ov
= current_buffer
->overlays_after
; ov
; ov
= ov
->next
)
3254 XSETMISC (overlay
, ov
);
3255 eassert (OVERLAYP (overlay
));
3257 startpos
= OVERLAY_POSITION (OVERLAY_START (overlay
));
3258 endpos
= OVERLAY_POSITION (OVERLAY_END (overlay
));
3261 if (endpos
!= pos
&& startpos
!= pos
)
3263 window
= Foverlay_get (overlay
, Qwindow
);
3264 if (WINDOWP (window
) && XWINDOW (window
) != w
)
3267 && (str
= Foverlay_get (overlay
, Qbefore_string
), STRINGP (str
)))
3268 record_overlay_string (&overlay_heads
, str
,
3270 ? Foverlay_get (overlay
, Qafter_string
)
3272 Foverlay_get (overlay
, Qpriority
),
3274 else if (endpos
== pos
3275 && (str
= Foverlay_get (overlay
, Qafter_string
), STRINGP (str
)))
3276 record_overlay_string (&overlay_tails
, str
, Qnil
,
3277 Foverlay_get (overlay
, Qpriority
),
3280 if (overlay_tails
.used
> 1)
3281 qsort (overlay_tails
.buf
, overlay_tails
.used
, sizeof (struct sortstr
),
3283 if (overlay_heads
.used
> 1)
3284 qsort (overlay_heads
.buf
, overlay_heads
.used
, sizeof (struct sortstr
),
3286 if (overlay_heads
.bytes
|| overlay_tails
.bytes
)
3291 int total
= overlay_heads
.bytes
+ overlay_tails
.bytes
;
3293 if (total
> overlay_str_len
)
3295 overlay_str_len
= total
;
3296 overlay_str_buf
= (unsigned char *)xrealloc (overlay_str_buf
,
3299 p
= overlay_str_buf
;
3300 for (i
= overlay_tails
.used
; --i
>= 0;)
3303 tem
= overlay_tails
.buf
[i
].string
;
3304 nbytes
= copy_text (SDATA (tem
), p
,
3306 STRING_MULTIBYTE (tem
), multibyte
);
3309 for (i
= 0; i
< overlay_heads
.used
; ++i
)
3312 tem
= overlay_heads
.buf
[i
].string
;
3313 nbytes
= copy_text (SDATA (tem
), p
,
3315 STRING_MULTIBYTE (tem
), multibyte
);
3317 tem
= overlay_heads
.buf
[i
].string2
;
3320 nbytes
= copy_text (SDATA (tem
), p
,
3322 STRING_MULTIBYTE (tem
), multibyte
);
3326 if (p
!= overlay_str_buf
+ total
)
3329 *pstr
= overlay_str_buf
;
3335 /* Shift overlays in BUF's overlay lists, to center the lists at POS. */
3338 recenter_overlay_lists (buf
, pos
)
3342 Lisp_Object overlay
, beg
, end
;
3343 struct Lisp_Overlay
*prev
, *tail
, *next
;
3345 /* See if anything in overlays_before should move to overlays_after. */
3347 /* We don't strictly need prev in this loop; it should always be nil.
3348 But we use it for symmetry and in case that should cease to be true
3349 with some future change. */
3351 for (tail
= buf
->overlays_before
; tail
; prev
= tail
, tail
= next
)
3354 XSETMISC (overlay
, tail
);
3356 /* If the overlay is not valid, get rid of it. */
3357 if (!OVERLAY_VALID (overlay
))
3362 /* Splice the cons cell TAIL out of overlays_before. */
3366 buf
->overlays_before
= next
;
3372 beg
= OVERLAY_START (overlay
);
3373 end
= OVERLAY_END (overlay
);
3375 if (OVERLAY_POSITION (end
) > pos
)
3377 /* OVERLAY needs to be moved. */
3378 int where
= OVERLAY_POSITION (beg
);
3379 struct Lisp_Overlay
*other
, *other_prev
;
3381 /* Splice the cons cell TAIL out of overlays_before. */
3385 buf
->overlays_before
= next
;
3387 /* Search thru overlays_after for where to put it. */
3389 for (other
= buf
->overlays_after
; other
;
3390 other_prev
= other
, other
= other
->next
)
3392 Lisp_Object otherbeg
, otheroverlay
;
3394 XSETMISC (otheroverlay
, other
);
3395 eassert (OVERLAY_VALID (otheroverlay
));
3397 otherbeg
= OVERLAY_START (otheroverlay
);
3398 if (OVERLAY_POSITION (otherbeg
) >= where
)
3402 /* Add TAIL to overlays_after before OTHER. */
3405 other_prev
->next
= tail
;
3407 buf
->overlays_after
= tail
;
3411 /* We've reached the things that should stay in overlays_before.
3412 All the rest of overlays_before must end even earlier,
3417 /* See if anything in overlays_after should be in overlays_before. */
3419 for (tail
= buf
->overlays_after
; tail
; prev
= tail
, tail
= next
)
3422 XSETMISC (overlay
, tail
);
3424 /* If the overlay is not valid, get rid of it. */
3425 if (!OVERLAY_VALID (overlay
))
3430 /* Splice the cons cell TAIL out of overlays_after. */
3434 buf
->overlays_after
= next
;
3440 beg
= OVERLAY_START (overlay
);
3441 end
= OVERLAY_END (overlay
);
3443 /* Stop looking, when we know that nothing further
3444 can possibly end before POS. */
3445 if (OVERLAY_POSITION (beg
) > pos
)
3448 if (OVERLAY_POSITION (end
) <= pos
)
3450 /* OVERLAY needs to be moved. */
3451 int where
= OVERLAY_POSITION (end
);
3452 struct Lisp_Overlay
*other
, *other_prev
;
3454 /* Splice the cons cell TAIL out of overlays_after. */
3458 buf
->overlays_after
= next
;
3460 /* Search thru overlays_before for where to put it. */
3462 for (other
= buf
->overlays_before
; other
;
3463 other_prev
= other
, other
= other
->next
)
3465 Lisp_Object otherend
, otheroverlay
;
3467 XSETMISC (otheroverlay
, other
);
3468 eassert (OVERLAY_VALID (otheroverlay
));
3470 otherend
= OVERLAY_END (otheroverlay
);
3471 if (OVERLAY_POSITION (otherend
) <= where
)
3475 /* Add TAIL to overlays_before before OTHER. */
3478 other_prev
->next
= tail
;
3480 buf
->overlays_before
= tail
;
3485 buf
->overlay_center
= pos
;
3489 adjust_overlays_for_insert (pos
, length
)
3493 /* After an insertion, the lists are still sorted properly,
3494 but we may need to update the value of the overlay center. */
3495 if (current_buffer
->overlay_center
>= pos
)
3496 current_buffer
->overlay_center
+= length
;
3500 adjust_overlays_for_delete (pos
, length
)
3504 if (current_buffer
->overlay_center
< pos
)
3505 /* The deletion was to our right. No change needed; the before- and
3506 after-lists are still consistent. */
3508 else if (current_buffer
->overlay_center
> pos
+ length
)
3509 /* The deletion was to our left. We need to adjust the center value
3510 to account for the change in position, but the lists are consistent
3511 given the new value. */
3512 current_buffer
->overlay_center
-= length
;
3514 /* We're right in the middle. There might be things on the after-list
3515 that now belong on the before-list. Recentering will move them,
3516 and also update the center point. */
3517 recenter_overlay_lists (current_buffer
, pos
);
3520 /* Fix up overlays that were garbled as a result of permuting markers
3521 in the range START through END. Any overlay with at least one
3522 endpoint in this range will need to be unlinked from the overlay
3523 list and reinserted in its proper place.
3524 Such an overlay might even have negative size at this point.
3525 If so, we'll make the overlay empty. */
3527 fix_start_end_in_overlays (start
, end
)
3528 register int start
, end
;
3530 Lisp_Object overlay
;
3531 struct Lisp_Overlay
*before_list
, *after_list
;
3532 /* These are either nil, indicating that before_list or after_list
3533 should be assigned, or the cons cell the cdr of which should be
3535 struct Lisp_Overlay
*beforep
= NULL
, *afterp
= NULL
;
3536 /* 'Parent', likewise, indicates a cons cell or
3537 current_buffer->overlays_before or overlays_after, depending
3538 which loop we're in. */
3539 struct Lisp_Overlay
*tail
, *parent
;
3540 int startpos
, endpos
;
3542 /* This algorithm shifts links around instead of consing and GCing.
3543 The loop invariant is that before_list (resp. after_list) is a
3544 well-formed list except that its last element, the CDR of beforep
3545 (resp. afterp) if beforep (afterp) isn't nil or before_list
3546 (after_list) if it is, is still uninitialized. So it's not a bug
3547 that before_list isn't initialized, although it may look
3549 for (parent
= NULL
, tail
= current_buffer
->overlays_before
; tail
;)
3551 XSETMISC (overlay
, tail
);
3553 endpos
= OVERLAY_POSITION (OVERLAY_END (overlay
));
3554 startpos
= OVERLAY_POSITION (OVERLAY_START (overlay
));
3556 /* If the overlay is backwards, make it empty. */
3557 if (endpos
< startpos
)
3560 Fset_marker (OVERLAY_START (overlay
), make_number (startpos
),
3568 || (startpos
>= start
&& startpos
< end
))
3570 /* Add it to the end of the wrong list. Later on,
3571 recenter_overlay_lists will move it to the right place. */
3572 if (endpos
< current_buffer
->overlay_center
)
3577 afterp
->next
= tail
;
3585 beforep
->next
= tail
;
3589 current_buffer
->overlays_before
= tail
->next
;
3591 parent
->next
= tail
->next
;
3595 parent
= tail
, tail
= parent
->next
;
3597 for (parent
= NULL
, tail
= current_buffer
->overlays_after
; tail
;)
3599 XSETMISC (overlay
, tail
);
3601 startpos
= OVERLAY_POSITION (OVERLAY_START (overlay
));
3602 endpos
= OVERLAY_POSITION (OVERLAY_END (overlay
));
3604 /* If the overlay is backwards, make it empty. */
3605 if (endpos
< startpos
)
3608 Fset_marker (OVERLAY_START (overlay
), make_number (startpos
),
3612 if (startpos
>= end
)
3615 if (startpos
>= start
3616 || (endpos
>= start
&& endpos
< end
))
3618 if (endpos
< current_buffer
->overlay_center
)
3623 afterp
->next
= tail
;
3631 beforep
->next
= tail
;
3635 current_buffer
->overlays_after
= tail
->next
;
3637 parent
->next
= tail
->next
;
3641 parent
= tail
, tail
= parent
->next
;
3644 /* Splice the constructed (wrong) lists into the buffer's lists,
3645 and let the recenter function make it sane again. */
3648 beforep
->next
= current_buffer
->overlays_before
;
3649 current_buffer
->overlays_before
= before_list
;
3651 recenter_overlay_lists (current_buffer
, current_buffer
->overlay_center
);
3655 afterp
->next
= current_buffer
->overlays_after
;
3656 current_buffer
->overlays_after
= after_list
;
3658 recenter_overlay_lists (current_buffer
, current_buffer
->overlay_center
);
3661 /* We have two types of overlay: the one whose ending marker is
3662 after-insertion-marker (this is the usual case) and the one whose
3663 ending marker is before-insertion-marker. When `overlays_before'
3664 contains overlays of the latter type and the former type in this
3665 order and both overlays end at inserting position, inserting a text
3666 increases only the ending marker of the latter type, which results
3667 in incorrect ordering of `overlays_before'.
3669 This function fixes ordering of overlays in the slot
3670 `overlays_before' of the buffer *BP. Before the insertion, `point'
3671 was at PREV, and now is at POS. */
3674 fix_overlays_before (bp
, prev
, pos
)
3676 EMACS_INT prev
, pos
;
3678 /* If parent is nil, replace overlays_before; otherwise, parent->next. */
3679 struct Lisp_Overlay
*tail
= bp
->overlays_before
, *parent
= NULL
, *right_pair
;
3683 /* After the insertion, the several overlays may be in incorrect
3684 order. The possibility is that, in the list `overlays_before',
3685 an overlay which ends at POS appears after an overlay which ends
3686 at PREV. Since POS is greater than PREV, we must fix the
3687 ordering of these overlays, by moving overlays ends at POS before
3688 the overlays ends at PREV. */
3690 /* At first, find a place where disordered overlays should be linked
3691 in. It is where an overlay which end before POS exists. (i.e. an
3692 overlay whose ending marker is after-insertion-marker if disorder
3695 && (XSETMISC (tem
, tail
),
3696 (end
= OVERLAY_POSITION (OVERLAY_END (tem
))) >= pos
))
3702 /* If we don't find such an overlay,
3703 or the found one ends before PREV,
3704 or the found one is the last one in the list,
3705 we don't have to fix anything. */
3706 if (!tail
|| end
< prev
|| !tail
->next
)
3709 right_pair
= parent
;
3713 /* Now, end position of overlays in the list TAIL should be before
3714 or equal to PREV. In the loop, an overlay which ends at POS is
3715 moved ahead to the place indicated by the CDR of RIGHT_PAIR. If
3716 we found an overlay which ends before PREV, the remaining
3717 overlays are in correct order. */
3720 XSETMISC (tem
, tail
);
3721 end
= OVERLAY_POSITION (OVERLAY_END (tem
));
3724 { /* This overlay is disordered. */
3725 struct Lisp_Overlay
*found
= tail
;
3727 /* Unlink the found overlay. */
3729 parent
->next
= tail
;
3730 /* Move an overlay at RIGHT_PLACE to the next of the found one,
3731 and link it into the right place. */
3734 found
->next
= bp
->overlays_before
;
3735 bp
->overlays_before
= found
;
3739 found
->next
= right_pair
->next
;
3740 right_pair
->next
= found
;
3743 else if (end
== prev
)
3748 else /* No more disordered overlay. */
3753 DEFUN ("overlayp", Foverlayp
, Soverlayp
, 1, 1, 0,
3754 doc
: /* Return t if OBJECT is an overlay. */)
3758 return (OVERLAYP (object
) ? Qt
: Qnil
);
3761 DEFUN ("make-overlay", Fmake_overlay
, Smake_overlay
, 2, 5, 0,
3762 doc
: /* Create a new overlay with range BEG to END in BUFFER.
3763 If omitted, BUFFER defaults to the current buffer.
3764 BEG and END may be integers or markers.
3765 The fourth arg FRONT-ADVANCE, if non-nil, makes the marker
3766 for the front of the overlay advance when text is inserted there
3767 \(which means the text *is not* included in the overlay).
3768 The fifth arg REAR-ADVANCE, if non-nil, makes the marker
3769 for the rear of the overlay advance when text is inserted there
3770 \(which means the text *is* included in the overlay). */)
3771 (beg
, end
, buffer
, front_advance
, rear_advance
)
3772 Lisp_Object beg
, end
, buffer
;
3773 Lisp_Object front_advance
, rear_advance
;
3775 Lisp_Object overlay
;
3779 XSETBUFFER (buffer
, current_buffer
);
3781 CHECK_BUFFER (buffer
);
3783 && ! EQ (Fmarker_buffer (beg
), buffer
))
3784 error ("Marker points into wrong buffer");
3786 && ! EQ (Fmarker_buffer (end
), buffer
))
3787 error ("Marker points into wrong buffer");
3789 CHECK_NUMBER_COERCE_MARKER (beg
);
3790 CHECK_NUMBER_COERCE_MARKER (end
);
3792 if (XINT (beg
) > XINT (end
))
3795 temp
= beg
; beg
= end
; end
= temp
;
3798 b
= XBUFFER (buffer
);
3800 beg
= Fset_marker (Fmake_marker (), beg
, buffer
);
3801 end
= Fset_marker (Fmake_marker (), end
, buffer
);
3803 if (!NILP (front_advance
))
3804 XMARKER (beg
)->insertion_type
= 1;
3805 if (!NILP (rear_advance
))
3806 XMARKER (end
)->insertion_type
= 1;
3808 overlay
= allocate_misc ();
3809 XMISCTYPE (overlay
) = Lisp_Misc_Overlay
;
3810 XOVERLAY (overlay
)->start
= beg
;
3811 XOVERLAY (overlay
)->end
= end
;
3812 XOVERLAY (overlay
)->plist
= Qnil
;
3813 XOVERLAY (overlay
)->next
= NULL
;
3815 /* Put the new overlay on the wrong list. */
3816 end
= OVERLAY_END (overlay
);
3817 if (OVERLAY_POSITION (end
) < b
->overlay_center
)
3819 if (b
->overlays_after
)
3820 XOVERLAY (overlay
)->next
= b
->overlays_after
;
3821 b
->overlays_after
= XOVERLAY (overlay
);
3825 if (b
->overlays_before
)
3826 XOVERLAY (overlay
)->next
= b
->overlays_before
;
3827 b
->overlays_before
= XOVERLAY (overlay
);
3830 /* This puts it in the right list, and in the right order. */
3831 recenter_overlay_lists (b
, b
->overlay_center
);
3833 /* We don't need to redisplay the region covered by the overlay, because
3834 the overlay has no properties at the moment. */
3839 /* Mark a section of BUF as needing redisplay because of overlays changes. */
3842 modify_overlay (buf
, start
, end
)
3844 EMACS_INT start
, end
;
3853 BUF_COMPUTE_UNCHANGED (buf
, start
, end
);
3855 /* If this is a buffer not in the selected window,
3856 we must do other windows. */
3857 if (buf
!= XBUFFER (XWINDOW (selected_window
)->buffer
))
3858 windows_or_buffers_changed
= 1;
3859 /* If multiple windows show this buffer, we must do other windows. */
3860 else if (buffer_shared
> 1)
3861 windows_or_buffers_changed
= 1;
3862 /* If we modify an overlay at the end of the buffer, we cannot
3863 be sure that window end is still valid. */
3864 else if (end
>= ZV
&& start
<= ZV
)
3865 windows_or_buffers_changed
= 1;
3867 ++BUF_OVERLAY_MODIFF (buf
);
3871 Lisp_Object
Fdelete_overlay ();
3873 static struct Lisp_Overlay
*
3874 unchain_overlay (list
, overlay
)
3875 struct Lisp_Overlay
*list
, *overlay
;
3877 struct Lisp_Overlay
*tmp
, *prev
;
3878 for (tmp
= list
, prev
= NULL
; tmp
; prev
= tmp
, tmp
= tmp
->next
)
3882 prev
->next
= tmp
->next
;
3885 overlay
->next
= NULL
;
3891 DEFUN ("move-overlay", Fmove_overlay
, Smove_overlay
, 3, 4, 0,
3892 doc
: /* Set the endpoints of OVERLAY to BEG and END in BUFFER.
3893 If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.
3894 If BUFFER is omitted, and OVERLAY is in no buffer, put it in the current
3896 (overlay
, beg
, end
, buffer
)
3897 Lisp_Object overlay
, beg
, end
, buffer
;
3899 struct buffer
*b
, *ob
;
3900 Lisp_Object obuffer
;
3901 int count
= SPECPDL_INDEX ();
3903 CHECK_OVERLAY (overlay
);
3905 buffer
= Fmarker_buffer (OVERLAY_START (overlay
));
3907 XSETBUFFER (buffer
, current_buffer
);
3908 CHECK_BUFFER (buffer
);
3911 && ! EQ (Fmarker_buffer (beg
), buffer
))
3912 error ("Marker points into wrong buffer");
3914 && ! EQ (Fmarker_buffer (end
), buffer
))
3915 error ("Marker points into wrong buffer");
3917 CHECK_NUMBER_COERCE_MARKER (beg
);
3918 CHECK_NUMBER_COERCE_MARKER (end
);
3920 if (XINT (beg
) == XINT (end
) && ! NILP (Foverlay_get (overlay
, Qevaporate
)))
3921 return Fdelete_overlay (overlay
);
3923 if (XINT (beg
) > XINT (end
))
3926 temp
= beg
; beg
= end
; end
= temp
;
3929 specbind (Qinhibit_quit
, Qt
);
3931 obuffer
= Fmarker_buffer (OVERLAY_START (overlay
));
3932 b
= XBUFFER (buffer
);
3933 ob
= BUFFERP (obuffer
) ? XBUFFER (obuffer
) : (struct buffer
*) 0;
3935 /* If the overlay has changed buffers, do a thorough redisplay. */
3936 if (!EQ (buffer
, obuffer
))
3938 /* Redisplay where the overlay was. */
3939 if (!NILP (obuffer
))
3944 o_beg
= OVERLAY_POSITION (OVERLAY_START (overlay
));
3945 o_end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
3947 modify_overlay (ob
, o_beg
, o_end
);
3950 /* Redisplay where the overlay is going to be. */
3951 modify_overlay (b
, XINT (beg
), XINT (end
));
3954 /* Redisplay the area the overlay has just left, or just enclosed. */
3958 o_beg
= OVERLAY_POSITION (OVERLAY_START (overlay
));
3959 o_end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
3961 if (o_beg
== XINT (beg
))
3962 modify_overlay (b
, o_end
, XINT (end
));
3963 else if (o_end
== XINT (end
))
3964 modify_overlay (b
, o_beg
, XINT (beg
));
3967 if (XINT (beg
) < o_beg
) o_beg
= XINT (beg
);
3968 if (XINT (end
) > o_end
) o_end
= XINT (end
);
3969 modify_overlay (b
, o_beg
, o_end
);
3973 if (!NILP (obuffer
))
3976 = unchain_overlay (ob
->overlays_before
, XOVERLAY (overlay
));
3978 = unchain_overlay (ob
->overlays_after
, XOVERLAY (overlay
));
3979 eassert (XOVERLAY (overlay
)->next
== NULL
);
3982 Fset_marker (OVERLAY_START (overlay
), beg
, buffer
);
3983 Fset_marker (OVERLAY_END (overlay
), end
, buffer
);
3985 /* Put the overlay on the wrong list. */
3986 end
= OVERLAY_END (overlay
);
3987 if (OVERLAY_POSITION (end
) < b
->overlay_center
)
3989 XOVERLAY (overlay
)->next
= b
->overlays_after
;
3990 b
->overlays_after
= XOVERLAY (overlay
);
3994 XOVERLAY (overlay
)->next
= b
->overlays_before
;
3995 b
->overlays_before
= XOVERLAY (overlay
);
3998 /* This puts it in the right list, and in the right order. */
3999 recenter_overlay_lists (b
, b
->overlay_center
);
4001 return unbind_to (count
, overlay
);
4004 DEFUN ("delete-overlay", Fdelete_overlay
, Sdelete_overlay
, 1, 1, 0,
4005 doc
: /* Delete the overlay OVERLAY from its buffer. */)
4007 Lisp_Object overlay
;
4011 int count
= SPECPDL_INDEX ();
4013 CHECK_OVERLAY (overlay
);
4015 buffer
= Fmarker_buffer (OVERLAY_START (overlay
));
4019 b
= XBUFFER (buffer
);
4020 specbind (Qinhibit_quit
, Qt
);
4022 b
->overlays_before
= unchain_overlay (b
->overlays_before
,XOVERLAY (overlay
));
4023 b
->overlays_after
= unchain_overlay (b
->overlays_after
, XOVERLAY (overlay
));
4024 eassert (XOVERLAY (overlay
)->next
== NULL
);
4026 marker_position (OVERLAY_START (overlay
)),
4027 marker_position (OVERLAY_END (overlay
)));
4028 Fset_marker (OVERLAY_START (overlay
), Qnil
, Qnil
);
4029 Fset_marker (OVERLAY_END (overlay
), Qnil
, Qnil
);
4031 /* When deleting an overlay with before or after strings, turn off
4032 display optimizations for the affected buffer, on the basis that
4033 these strings may contain newlines. This is easier to do than to
4034 check for that situation during redisplay. */
4035 if (!windows_or_buffers_changed
4036 && (!NILP (Foverlay_get (overlay
, Qbefore_string
))
4037 || !NILP (Foverlay_get (overlay
, Qafter_string
))))
4038 b
->prevent_redisplay_optimizations_p
= 1;
4040 return unbind_to (count
, Qnil
);
4043 /* Overlay dissection functions. */
4045 DEFUN ("overlay-start", Foverlay_start
, Soverlay_start
, 1, 1, 0,
4046 doc
: /* Return the position at which OVERLAY starts. */)
4048 Lisp_Object overlay
;
4050 CHECK_OVERLAY (overlay
);
4052 return (Fmarker_position (OVERLAY_START (overlay
)));
4055 DEFUN ("overlay-end", Foverlay_end
, Soverlay_end
, 1, 1, 0,
4056 doc
: /* Return the position at which OVERLAY ends. */)
4058 Lisp_Object overlay
;
4060 CHECK_OVERLAY (overlay
);
4062 return (Fmarker_position (OVERLAY_END (overlay
)));
4065 DEFUN ("overlay-buffer", Foverlay_buffer
, Soverlay_buffer
, 1, 1, 0,
4066 doc
: /* Return the buffer OVERLAY belongs to.
4067 Return nil if OVERLAY has been deleted. */)
4069 Lisp_Object overlay
;
4071 CHECK_OVERLAY (overlay
);
4073 return Fmarker_buffer (OVERLAY_START (overlay
));
4076 DEFUN ("overlay-properties", Foverlay_properties
, Soverlay_properties
, 1, 1, 0,
4077 doc
: /* Return a list of the properties on OVERLAY.
4078 This is a copy of OVERLAY's plist; modifying its conses has no effect on
4081 Lisp_Object overlay
;
4083 CHECK_OVERLAY (overlay
);
4085 return Fcopy_sequence (XOVERLAY (overlay
)->plist
);
4089 DEFUN ("overlays-at", Foverlays_at
, Soverlays_at
, 1, 1, 0,
4090 doc
: /* Return a list of the overlays that contain the character at POS. */)
4095 Lisp_Object
*overlay_vec
;
4099 CHECK_NUMBER_COERCE_MARKER (pos
);
4102 /* We can't use alloca here because overlays_at can call xrealloc. */
4103 overlay_vec
= (Lisp_Object
*) xmalloc (len
* sizeof (Lisp_Object
));
4105 /* Put all the overlays we want in a vector in overlay_vec.
4106 Store the length in len. */
4107 noverlays
= overlays_at (XINT (pos
), 1, &overlay_vec
, &len
,
4108 (EMACS_INT
*) 0, (EMACS_INT
*) 0, 0);
4110 /* Make a list of them all. */
4111 result
= Flist (noverlays
, overlay_vec
);
4113 xfree (overlay_vec
);
4117 DEFUN ("overlays-in", Foverlays_in
, Soverlays_in
, 2, 2, 0,
4118 doc
: /* Return a list of the overlays that overlap the region BEG ... END.
4119 Overlap means that at least one character is contained within the overlay
4120 and also contained within the specified region.
4121 Empty overlays are included in the result if they are located at BEG,
4122 between BEG and END, or at END provided END denotes the position at the
4123 end of the buffer. */)
4125 Lisp_Object beg
, end
;
4128 Lisp_Object
*overlay_vec
;
4132 CHECK_NUMBER_COERCE_MARKER (beg
);
4133 CHECK_NUMBER_COERCE_MARKER (end
);
4136 overlay_vec
= (Lisp_Object
*) xmalloc (len
* sizeof (Lisp_Object
));
4138 /* Put all the overlays we want in a vector in overlay_vec.
4139 Store the length in len. */
4140 noverlays
= overlays_in (XINT (beg
), XINT (end
), 1, &overlay_vec
, &len
,
4141 (int *) 0, (int *) 0);
4143 /* Make a list of them all. */
4144 result
= Flist (noverlays
, overlay_vec
);
4146 xfree (overlay_vec
);
4150 DEFUN ("next-overlay-change", Fnext_overlay_change
, Snext_overlay_change
,
4152 doc
: /* Return the next position after POS where an overlay starts or ends.
4153 If there are no overlay boundaries from POS to (point-max),
4154 the value is (point-max). */)
4160 Lisp_Object
*overlay_vec
;
4164 CHECK_NUMBER_COERCE_MARKER (pos
);
4167 overlay_vec
= (Lisp_Object
*) xmalloc (len
* sizeof (Lisp_Object
));
4169 /* Put all the overlays we want in a vector in overlay_vec.
4170 Store the length in len.
4171 endpos gets the position where the next overlay starts. */
4172 noverlays
= overlays_at (XINT (pos
), 1, &overlay_vec
, &len
,
4173 &endpos
, (EMACS_INT
*) 0, 1);
4175 /* If any of these overlays ends before endpos,
4176 use its ending point instead. */
4177 for (i
= 0; i
< noverlays
; i
++)
4182 oend
= OVERLAY_END (overlay_vec
[i
]);
4183 oendpos
= OVERLAY_POSITION (oend
);
4184 if (oendpos
< endpos
)
4188 xfree (overlay_vec
);
4189 return make_number (endpos
);
4192 DEFUN ("previous-overlay-change", Fprevious_overlay_change
,
4193 Sprevious_overlay_change
, 1, 1, 0,
4194 doc
: /* Return the previous position before POS where an overlay starts or ends.
4195 If there are no overlay boundaries from (point-min) to POS,
4196 the value is (point-min). */)
4202 Lisp_Object
*overlay_vec
;
4205 CHECK_NUMBER_COERCE_MARKER (pos
);
4207 /* At beginning of buffer, we know the answer;
4208 avoid bug subtracting 1 below. */
4209 if (XINT (pos
) == BEGV
)
4213 overlay_vec
= (Lisp_Object
*) xmalloc (len
* sizeof (Lisp_Object
));
4215 /* Put all the overlays we want in a vector in overlay_vec.
4216 Store the length in len.
4217 prevpos gets the position of the previous change. */
4218 noverlays
= overlays_at (XINT (pos
), 1, &overlay_vec
, &len
,
4219 (EMACS_INT
*) 0, &prevpos
, 1);
4221 xfree (overlay_vec
);
4222 return make_number (prevpos
);
4225 /* These functions are for debugging overlays. */
4227 DEFUN ("overlay-lists", Foverlay_lists
, Soverlay_lists
, 0, 0, 0,
4228 doc
: /* Return a pair of lists giving all the overlays of the current buffer.
4229 The car has all the overlays before the overlay center;
4230 the cdr has all the overlays after the overlay center.
4231 Recentering overlays moves overlays between these lists.
4232 The lists you get are copies, so that changing them has no effect.
4233 However, the overlays you get are the real objects that the buffer uses. */)
4236 struct Lisp_Overlay
*ol
;
4237 Lisp_Object before
= Qnil
, after
= Qnil
, tmp
;
4238 for (ol
= current_buffer
->overlays_before
; ol
; ol
= ol
->next
)
4241 before
= Fcons (tmp
, before
);
4243 for (ol
= current_buffer
->overlays_after
; ol
; ol
= ol
->next
)
4246 after
= Fcons (tmp
, after
);
4248 return Fcons (Fnreverse (before
), Fnreverse (after
));
4251 DEFUN ("overlay-recenter", Foverlay_recenter
, Soverlay_recenter
, 1, 1, 0,
4252 doc
: /* Recenter the overlays of the current buffer around position POS.
4253 That makes overlay lookup faster for positions near POS (but perhaps slower
4254 for positions far away from POS). */)
4258 CHECK_NUMBER_COERCE_MARKER (pos
);
4260 recenter_overlay_lists (current_buffer
, XINT (pos
));
4264 DEFUN ("overlay-get", Foverlay_get
, Soverlay_get
, 2, 2, 0,
4265 doc
: /* Get the property of overlay OVERLAY with property name PROP. */)
4267 Lisp_Object overlay
, prop
;
4269 CHECK_OVERLAY (overlay
);
4270 return lookup_char_property (XOVERLAY (overlay
)->plist
, prop
, 0);
4273 DEFUN ("overlay-put", Foverlay_put
, Soverlay_put
, 3, 3, 0,
4274 doc
: /* Set one property of overlay OVERLAY: give property PROP value VALUE. */)
4275 (overlay
, prop
, value
)
4276 Lisp_Object overlay
, prop
, value
;
4278 Lisp_Object tail
, buffer
;
4281 CHECK_OVERLAY (overlay
);
4283 buffer
= Fmarker_buffer (OVERLAY_START (overlay
));
4285 for (tail
= XOVERLAY (overlay
)->plist
;
4286 CONSP (tail
) && CONSP (XCDR (tail
));
4287 tail
= XCDR (XCDR (tail
)))
4288 if (EQ (XCAR (tail
), prop
))
4290 changed
= !EQ (XCAR (XCDR (tail
)), value
);
4291 XSETCAR (XCDR (tail
), value
);
4294 /* It wasn't in the list, so add it to the front. */
4295 changed
= !NILP (value
);
4296 XOVERLAY (overlay
)->plist
4297 = Fcons (prop
, Fcons (value
, XOVERLAY (overlay
)->plist
));
4299 if (! NILP (buffer
))
4302 modify_overlay (XBUFFER (buffer
),
4303 marker_position (OVERLAY_START (overlay
)),
4304 marker_position (OVERLAY_END (overlay
)));
4305 if (EQ (prop
, Qevaporate
) && ! NILP (value
)
4306 && (OVERLAY_POSITION (OVERLAY_START (overlay
))
4307 == OVERLAY_POSITION (OVERLAY_END (overlay
))))
4308 Fdelete_overlay (overlay
);
4314 /* Subroutine of report_overlay_modification. */
4316 /* Lisp vector holding overlay hook functions to call.
4317 Vector elements come in pairs.
4318 Each even-index element is a list of hook functions.
4319 The following odd-index element is the overlay they came from.
4321 Before the buffer change, we fill in this vector
4322 as we call overlay hook functions.
4323 After the buffer change, we get the functions to call from this vector.
4324 This way we always call the same functions before and after the change. */
4325 static Lisp_Object last_overlay_modification_hooks
;
4327 /* Number of elements actually used in last_overlay_modification_hooks. */
4328 static int last_overlay_modification_hooks_used
;
4330 /* Add one functionlist/overlay pair
4331 to the end of last_overlay_modification_hooks. */
4334 add_overlay_mod_hooklist (functionlist
, overlay
)
4335 Lisp_Object functionlist
, overlay
;
4337 int oldsize
= XVECTOR (last_overlay_modification_hooks
)->size
;
4339 if (last_overlay_modification_hooks_used
== oldsize
)
4340 last_overlay_modification_hooks
= larger_vector
4341 (last_overlay_modification_hooks
, oldsize
* 2, Qnil
);
4342 ASET (last_overlay_modification_hooks
, last_overlay_modification_hooks_used
,
4343 functionlist
); last_overlay_modification_hooks_used
++;
4344 ASET (last_overlay_modification_hooks
, last_overlay_modification_hooks_used
,
4345 overlay
); last_overlay_modification_hooks_used
++;
4348 /* Run the modification-hooks of overlays that include
4349 any part of the text in START to END.
4350 If this change is an insertion, also
4351 run the insert-before-hooks of overlay starting at END,
4352 and the insert-after-hooks of overlay ending at START.
4354 This is called both before and after the modification.
4355 AFTER is nonzero when we call after the modification.
4357 ARG1, ARG2, ARG3 are arguments to pass to the hook functions.
4358 When AFTER is nonzero, they are the start position,
4359 the position after the inserted new text,
4360 and the length of deleted or replaced old text. */
4363 report_overlay_modification (start
, end
, after
, arg1
, arg2
, arg3
)
4364 Lisp_Object start
, end
;
4366 Lisp_Object arg1
, arg2
, arg3
;
4368 Lisp_Object prop
, overlay
;
4369 struct Lisp_Overlay
*tail
;
4370 /* 1 if this change is an insertion. */
4371 int insertion
= (after
? XFASTINT (arg3
) == 0 : EQ (start
, end
));
4372 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
4377 /* We used to run the functions as soon as we found them and only register
4378 them in last_overlay_modification_hooks for the purpose of the `after'
4379 case. But running elisp code as we traverse the list of overlays is
4380 painful because the list can be modified by the elisp code so we had to
4381 copy at several places. We now simply do a read-only traversal that
4382 only collects the functions to run and we run them afterwards. It's
4383 simpler, especially since all the code was already there. -stef */
4387 /* We are being called before a change.
4388 Scan the overlays to find the functions to call. */
4389 last_overlay_modification_hooks_used
= 0;
4390 for (tail
= current_buffer
->overlays_before
; tail
; tail
= tail
->next
)
4392 int startpos
, endpos
;
4393 Lisp_Object ostart
, oend
;
4395 XSETMISC (overlay
, tail
);
4397 ostart
= OVERLAY_START (overlay
);
4398 oend
= OVERLAY_END (overlay
);
4399 endpos
= OVERLAY_POSITION (oend
);
4400 if (XFASTINT (start
) > endpos
)
4402 startpos
= OVERLAY_POSITION (ostart
);
4403 if (insertion
&& (XFASTINT (start
) == startpos
4404 || XFASTINT (end
) == startpos
))
4406 prop
= Foverlay_get (overlay
, Qinsert_in_front_hooks
);
4408 add_overlay_mod_hooklist (prop
, overlay
);
4410 if (insertion
&& (XFASTINT (start
) == endpos
4411 || XFASTINT (end
) == endpos
))
4413 prop
= Foverlay_get (overlay
, Qinsert_behind_hooks
);
4415 add_overlay_mod_hooklist (prop
, overlay
);
4417 /* Test for intersecting intervals. This does the right thing
4418 for both insertion and deletion. */
4419 if (XFASTINT (end
) > startpos
&& XFASTINT (start
) < endpos
)
4421 prop
= Foverlay_get (overlay
, Qmodification_hooks
);
4423 add_overlay_mod_hooklist (prop
, overlay
);
4427 for (tail
= current_buffer
->overlays_after
; tail
; tail
= tail
->next
)
4429 int startpos
, endpos
;
4430 Lisp_Object ostart
, oend
;
4432 XSETMISC (overlay
, tail
);
4434 ostart
= OVERLAY_START (overlay
);
4435 oend
= OVERLAY_END (overlay
);
4436 startpos
= OVERLAY_POSITION (ostart
);
4437 endpos
= OVERLAY_POSITION (oend
);
4438 if (XFASTINT (end
) < startpos
)
4440 if (insertion
&& (XFASTINT (start
) == startpos
4441 || XFASTINT (end
) == startpos
))
4443 prop
= Foverlay_get (overlay
, Qinsert_in_front_hooks
);
4445 add_overlay_mod_hooklist (prop
, overlay
);
4447 if (insertion
&& (XFASTINT (start
) == endpos
4448 || XFASTINT (end
) == endpos
))
4450 prop
= Foverlay_get (overlay
, Qinsert_behind_hooks
);
4452 add_overlay_mod_hooklist (prop
, overlay
);
4454 /* Test for intersecting intervals. This does the right thing
4455 for both insertion and deletion. */
4456 if (XFASTINT (end
) > startpos
&& XFASTINT (start
) < endpos
)
4458 prop
= Foverlay_get (overlay
, Qmodification_hooks
);
4460 add_overlay_mod_hooklist (prop
, overlay
);
4465 GCPRO4 (overlay
, arg1
, arg2
, arg3
);
4467 /* Call the functions recorded in last_overlay_modification_hooks.
4468 First copy the vector contents, in case some of these hooks
4469 do subsequent modification of the buffer. */
4470 int size
= last_overlay_modification_hooks_used
;
4471 Lisp_Object
*copy
= (Lisp_Object
*) alloca (size
* sizeof (Lisp_Object
));
4474 bcopy (XVECTOR (last_overlay_modification_hooks
)->contents
,
4475 copy
, size
* sizeof (Lisp_Object
));
4477 gcpro1
.nvars
= size
;
4479 for (i
= 0; i
< size
;)
4481 Lisp_Object prop
, overlay
;
4483 overlay
= copy
[i
++];
4484 call_overlay_mod_hooks (prop
, overlay
, after
, arg1
, arg2
, arg3
);
4491 call_overlay_mod_hooks (list
, overlay
, after
, arg1
, arg2
, arg3
)
4492 Lisp_Object list
, overlay
;
4494 Lisp_Object arg1
, arg2
, arg3
;
4496 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
4498 GCPRO4 (list
, arg1
, arg2
, arg3
);
4500 while (CONSP (list
))
4503 call4 (XCAR (list
), overlay
, after
? Qt
: Qnil
, arg1
, arg2
);
4505 call5 (XCAR (list
), overlay
, after
? Qt
: Qnil
, arg1
, arg2
, arg3
);
4511 /* Delete any zero-sized overlays at position POS, if the `evaporate'
4514 evaporate_overlays (pos
)
4517 Lisp_Object overlay
, hit_list
;
4518 struct Lisp_Overlay
*tail
;
4521 if (pos
<= current_buffer
->overlay_center
)
4522 for (tail
= current_buffer
->overlays_before
; tail
; tail
= tail
->next
)
4525 XSETMISC (overlay
, tail
);
4526 endpos
= OVERLAY_POSITION (OVERLAY_END (overlay
));
4529 if (endpos
== pos
&& OVERLAY_POSITION (OVERLAY_START (overlay
)) == pos
4530 && ! NILP (Foverlay_get (overlay
, Qevaporate
)))
4531 hit_list
= Fcons (overlay
, hit_list
);
4534 for (tail
= current_buffer
->overlays_after
; tail
; tail
= tail
->next
)
4537 XSETMISC (overlay
, tail
);
4538 startpos
= OVERLAY_POSITION (OVERLAY_START (overlay
));
4541 if (startpos
== pos
&& OVERLAY_POSITION (OVERLAY_END (overlay
)) == pos
4542 && ! NILP (Foverlay_get (overlay
, Qevaporate
)))
4543 hit_list
= Fcons (overlay
, hit_list
);
4545 for (; CONSP (hit_list
); hit_list
= XCDR (hit_list
))
4546 Fdelete_overlay (XCAR (hit_list
));
4549 /* Somebody has tried to store a value with an unacceptable type
4550 in the slot with offset OFFSET. */
4553 buffer_slot_type_mismatch (sym
, type
)
4562 type_name
= "integers";
4566 type_name
= "strings";
4570 type_name
= "symbols";
4577 error ("Only %s should be stored in the buffer-local variable %s",
4578 type_name
, SDATA (SYMBOL_NAME (sym
)));
4582 /***********************************************************************
4583 Allocation with mmap
4584 ***********************************************************************/
4586 #ifdef USE_MMAP_FOR_BUFFERS
4588 #include <sys/types.h>
4589 #include <sys/mman.h>
4592 #ifdef MAP_ANONYMOUS
4593 #define MAP_ANON MAP_ANONYMOUS
4600 #define MAP_FAILED ((void *) -1)
4613 /* Memory is allocated in regions which are mapped using mmap(2).
4614 The current implementation lets the system select mapped
4615 addresses; we're not using MAP_FIXED in general, except when
4616 trying to enlarge regions.
4618 Each mapped region starts with a mmap_region structure, the user
4619 area starts after that structure, aligned to MEM_ALIGN.
4621 +-----------------------+
4622 | struct mmap_info + |
4624 +-----------------------+
4628 +-----------------------+ */
4632 /* User-specified size. */
4633 size_t nbytes_specified
;
4635 /* Number of bytes mapped */
4636 size_t nbytes_mapped
;
4638 /* Pointer to the location holding the address of the memory
4639 allocated with the mmap'd block. The variable actually points
4640 after this structure. */
4643 /* Next and previous in list of all mmap'd regions. */
4644 struct mmap_region
*next
, *prev
;
4647 /* Doubly-linked list of mmap'd regions. */
4649 static struct mmap_region
*mmap_regions
;
4651 /* File descriptor for mmap. If we don't have anonymous mapping,
4652 /dev/zero will be opened on it. */
4656 /* Temporary storage for mmap_set_vars, see there. */
4658 static struct mmap_region
*mmap_regions_1
;
4659 static int mmap_fd_1
;
4661 /* Page size on this system. */
4663 static int mmap_page_size
;
4665 /* 1 means mmap has been intialized. */
4667 static int mmap_initialized_p
;
4669 /* Value is X rounded up to the next multiple of N. */
4671 #define ROUND(X, N) (((X) + (N) - 1) / (N) * (N))
4673 /* Size of mmap_region structure plus padding. */
4675 #define MMAP_REGION_STRUCT_SIZE \
4676 ROUND (sizeof (struct mmap_region), MEM_ALIGN)
4678 /* Given a pointer P to the start of the user-visible part of a mapped
4679 region, return a pointer to the start of the region. */
4681 #define MMAP_REGION(P) \
4682 ((struct mmap_region *) ((char *) (P) - MMAP_REGION_STRUCT_SIZE))
4684 /* Given a pointer P to the start of a mapped region, return a pointer
4685 to the start of the user-visible part of the region. */
4687 #define MMAP_USER_AREA(P) \
4688 ((POINTER_TYPE *) ((char *) (P) + MMAP_REGION_STRUCT_SIZE))
4690 #define MEM_ALIGN sizeof (double)
4692 /* Predicate returning true if part of the address range [START .. END]
4693 is currently mapped. Used to prevent overwriting an existing
4696 Default is to conservativly assume the address range is occupied by
4697 something else. This can be overridden by system configuration
4698 files if system-specific means to determine this exists. */
4700 #ifndef MMAP_ALLOCATED_P
4701 #define MMAP_ALLOCATED_P(start, end) 1
4704 /* Function prototypes. */
4706 static int mmap_free_1
P_ ((struct mmap_region
*));
4707 static int mmap_enlarge
P_ ((struct mmap_region
*, int));
4708 static struct mmap_region
*mmap_find
P_ ((POINTER_TYPE
*, POINTER_TYPE
*));
4709 static POINTER_TYPE
*mmap_alloc
P_ ((POINTER_TYPE
**, size_t));
4710 static POINTER_TYPE
*mmap_realloc
P_ ((POINTER_TYPE
**, size_t));
4711 static void mmap_free
P_ ((POINTER_TYPE
**ptr
));
4712 static void mmap_init
P_ ((void));
4715 /* Return a region overlapping address range START...END, or null if
4716 none. END is not including, i.e. the last byte in the range
4719 static struct mmap_region
*
4720 mmap_find (start
, end
)
4721 POINTER_TYPE
*start
, *end
;
4723 struct mmap_region
*r
;
4724 char *s
= (char *) start
, *e
= (char *) end
;
4726 for (r
= mmap_regions
; r
; r
= r
->next
)
4728 char *rstart
= (char *) r
;
4729 char *rend
= rstart
+ r
->nbytes_mapped
;
4731 if (/* First byte of range, i.e. START, in this region? */
4732 (s
>= rstart
&& s
< rend
)
4733 /* Last byte of range, i.e. END - 1, in this region? */
4734 || (e
> rstart
&& e
<= rend
)
4735 /* First byte of this region in the range? */
4736 || (rstart
>= s
&& rstart
< e
)
4737 /* Last byte of this region in the range? */
4738 || (rend
> s
&& rend
<= e
))
4746 /* Unmap a region. P is a pointer to the start of the user-araa of
4747 the region. Value is non-zero if successful. */
4751 struct mmap_region
*r
;
4754 r
->next
->prev
= r
->prev
;
4756 r
->prev
->next
= r
->next
;
4758 mmap_regions
= r
->next
;
4760 if (munmap ((POINTER_TYPE
*) r
, r
->nbytes_mapped
) == -1)
4762 fprintf (stderr
, "munmap: %s\n", emacs_strerror (errno
));
4770 /* Enlarge region R by NPAGES pages. NPAGES < 0 means shrink R.
4771 Value is non-zero if successful. */
4774 mmap_enlarge (r
, npages
)
4775 struct mmap_region
*r
;
4778 char *region_end
= (char *) r
+ r
->nbytes_mapped
;
4784 /* Unmap pages at the end of the region. */
4785 nbytes
= - npages
* mmap_page_size
;
4786 if (munmap (region_end
- nbytes
, nbytes
) == -1)
4787 fprintf (stderr
, "munmap: %s\n", emacs_strerror (errno
));
4790 r
->nbytes_mapped
-= nbytes
;
4794 else if (npages
> 0)
4796 nbytes
= npages
* mmap_page_size
;
4798 /* Try to map additional pages at the end of the region. We
4799 cannot do this if the address range is already occupied by
4800 something else because mmap deletes any previous mapping.
4801 I'm not sure this is worth doing, let's see. */
4802 if (!MMAP_ALLOCATED_P (region_end
, region_end
+ nbytes
))
4806 p
= mmap (region_end
, nbytes
, PROT_READ
| PROT_WRITE
,
4807 MAP_ANON
| MAP_PRIVATE
| MAP_FIXED
, mmap_fd
, 0);
4808 if (p
== MAP_FAILED
)
4809 ; /* fprintf (stderr, "mmap: %s\n", emacs_strerror (errno)); */
4810 else if (p
!= (POINTER_TYPE
*) region_end
)
4812 /* Kernels are free to choose a different address. In
4813 that case, unmap what we've mapped above; we have
4815 if (munmap (p
, nbytes
) == -1)
4816 fprintf (stderr
, "munmap: %s\n", emacs_strerror (errno
));
4820 r
->nbytes_mapped
+= nbytes
;
4830 /* Set or reset variables holding references to mapped regions. If
4831 RESTORE_P is zero, set all variables to null. If RESTORE_P is
4832 non-zero, set all variables to the start of the user-areas
4835 This function is called from Fdump_emacs to ensure that the dumped
4836 Emacs doesn't contain references to memory that won't be mapped
4837 when Emacs starts. */
4840 mmap_set_vars (restore_p
)
4843 struct mmap_region
*r
;
4847 mmap_regions
= mmap_regions_1
;
4848 mmap_fd
= mmap_fd_1
;
4849 for (r
= mmap_regions
; r
; r
= r
->next
)
4850 *r
->var
= MMAP_USER_AREA (r
);
4854 for (r
= mmap_regions
; r
; r
= r
->next
)
4856 mmap_regions_1
= mmap_regions
;
4857 mmap_regions
= NULL
;
4858 mmap_fd_1
= mmap_fd
;
4864 /* Allocate a block of storage large enough to hold NBYTES bytes of
4865 data. A pointer to the data is returned in *VAR. VAR is thus the
4866 address of some variable which will use the data area.
4868 The allocation of 0 bytes is valid.
4870 If we can't allocate the necessary memory, set *VAR to null, and
4873 static POINTER_TYPE
*
4874 mmap_alloc (var
, nbytes
)
4883 map
= ROUND (nbytes
+ MMAP_REGION_STRUCT_SIZE
, mmap_page_size
);
4884 p
= mmap (NULL
, map
, PROT_READ
| PROT_WRITE
, MAP_ANON
| MAP_PRIVATE
,
4887 if (p
== MAP_FAILED
)
4889 if (errno
!= ENOMEM
)
4890 fprintf (stderr
, "mmap: %s\n", emacs_strerror (errno
));
4895 struct mmap_region
*r
= (struct mmap_region
*) p
;
4897 r
->nbytes_specified
= nbytes
;
4898 r
->nbytes_mapped
= map
;
4901 r
->next
= mmap_regions
;
4906 p
= MMAP_USER_AREA (p
);
4913 /* Given a pointer at address VAR to data allocated with mmap_alloc,
4914 resize it to size NBYTES. Change *VAR to reflect the new block,
4915 and return this value. If more memory cannot be allocated, then
4916 leave *VAR unchanged, and return null. */
4918 static POINTER_TYPE
*
4919 mmap_realloc (var
, nbytes
)
4923 POINTER_TYPE
*result
;
4928 result
= mmap_alloc (var
, nbytes
);
4929 else if (nbytes
== 0)
4932 result
= mmap_alloc (var
, nbytes
);
4936 struct mmap_region
*r
= MMAP_REGION (*var
);
4937 size_t room
= r
->nbytes_mapped
- MMAP_REGION_STRUCT_SIZE
;
4942 POINTER_TYPE
*old_ptr
= *var
;
4944 /* Try to map additional pages at the end of the region.
4945 If that fails, allocate a new region, copy data
4946 from the old region, then free it. */
4947 if (mmap_enlarge (r
, (ROUND (nbytes
- room
, mmap_page_size
)
4950 r
->nbytes_specified
= nbytes
;
4951 *var
= result
= old_ptr
;
4953 else if (mmap_alloc (var
, nbytes
))
4955 bcopy (old_ptr
, *var
, r
->nbytes_specified
);
4956 mmap_free_1 (MMAP_REGION (old_ptr
));
4958 r
= MMAP_REGION (result
);
4959 r
->nbytes_specified
= nbytes
;
4967 else if (room
- nbytes
>= mmap_page_size
)
4969 /* Shrinking by at least a page. Let's give some
4970 memory back to the system.
4972 The extra parens are to make the division happens first,
4973 on positive values, so we know it will round towards
4975 mmap_enlarge (r
, - ((room
- nbytes
) / mmap_page_size
));
4977 r
->nbytes_specified
= nbytes
;
4981 /* Leave it alone. */
4983 r
->nbytes_specified
= nbytes
;
4991 /* Free a block of relocatable storage whose data is pointed to by
4992 PTR. Store 0 in *PTR to show there's no block allocated. */
5002 mmap_free_1 (MMAP_REGION (*var
));
5008 /* Perform necessary intializations for the use of mmap. */
5014 /* The value of mmap_fd is initially 0 in temacs, and -1
5015 in a dumped Emacs. */
5018 /* No anonymous mmap -- we need the file descriptor. */
5019 mmap_fd
= open ("/dev/zero", O_RDONLY
);
5021 fatal ("Cannot open /dev/zero: %s", emacs_strerror (errno
));
5023 #endif /* MAP_ANON == 0 */
5025 if (mmap_initialized_p
)
5027 mmap_initialized_p
= 1;
5033 mmap_page_size
= getpagesize ();
5036 #endif /* USE_MMAP_FOR_BUFFERS */
5040 /***********************************************************************
5041 Buffer-text Allocation
5042 ***********************************************************************/
5045 extern POINTER_TYPE
*r_alloc
P_ ((POINTER_TYPE
**, size_t));
5046 extern POINTER_TYPE
*r_re_alloc
P_ ((POINTER_TYPE
**, size_t));
5047 extern void r_alloc_free
P_ ((POINTER_TYPE
**ptr
));
5048 #endif /* REL_ALLOC */
5051 /* Allocate NBYTES bytes for buffer B's text buffer. */
5054 alloc_buffer_text (b
, nbytes
)
5061 #if defined USE_MMAP_FOR_BUFFERS
5062 p
= mmap_alloc ((POINTER_TYPE
**) &b
->text
->beg
, nbytes
);
5063 #elif defined REL_ALLOC
5064 p
= r_alloc ((POINTER_TYPE
**) &b
->text
->beg
, nbytes
);
5066 p
= xmalloc (nbytes
);
5075 b
->text
->beg
= (unsigned char *) p
;
5079 /* Enlarge buffer B's text buffer by DELTA bytes. DELTA < 0 means
5083 enlarge_buffer_text (struct buffer
*b
, EMACS_INT delta
)
5086 size_t nbytes
= (BUF_Z_BYTE (b
) - BUF_BEG_BYTE (b
) + BUF_GAP_SIZE (b
) + 1
5089 #if defined USE_MMAP_FOR_BUFFERS
5090 p
= mmap_realloc ((POINTER_TYPE
**) &b
->text
->beg
, nbytes
);
5091 #elif defined REL_ALLOC
5092 p
= r_re_alloc ((POINTER_TYPE
**) &b
->text
->beg
, nbytes
);
5094 p
= xrealloc (b
->text
->beg
, nbytes
);
5103 BUF_BEG_ADDR (b
) = (unsigned char *) p
;
5108 /* Free buffer B's text buffer. */
5111 free_buffer_text (b
)
5116 #if defined USE_MMAP_FOR_BUFFERS
5117 mmap_free ((POINTER_TYPE
**) &b
->text
->beg
);
5118 #elif defined REL_ALLOC
5119 r_alloc_free ((POINTER_TYPE
**) &b
->text
->beg
);
5121 xfree (b
->text
->beg
);
5124 BUF_BEG_ADDR (b
) = NULL
;
5130 /***********************************************************************
5132 ***********************************************************************/
5139 bzero (buffer_permanent_local_flags
, sizeof buffer_permanent_local_flags
);
5141 /* Make sure all markable slots in buffer_defaults
5142 are initialized reasonably, so mark_buffer won't choke. */
5143 reset_buffer (&buffer_defaults
);
5144 reset_buffer_local_variables (&buffer_defaults
, 1);
5145 reset_buffer (&buffer_local_symbols
);
5146 reset_buffer_local_variables (&buffer_local_symbols
, 1);
5147 /* Prevent GC from getting confused. */
5148 buffer_defaults
.text
= &buffer_defaults
.own_text
;
5149 buffer_local_symbols
.text
= &buffer_local_symbols
.own_text
;
5150 BUF_INTERVALS (&buffer_defaults
) = 0;
5151 BUF_INTERVALS (&buffer_local_symbols
) = 0;
5152 XSETPVECTYPE (&buffer_defaults
, PVEC_BUFFER
);
5153 XSETBUFFER (Vbuffer_defaults
, &buffer_defaults
);
5154 XSETPVECTYPE (&buffer_local_symbols
, PVEC_BUFFER
);
5155 XSETBUFFER (Vbuffer_local_symbols
, &buffer_local_symbols
);
5157 /* Set up the default values of various buffer slots. */
5158 /* Must do these before making the first buffer! */
5160 /* real setup is done in bindings.el */
5161 buffer_defaults
.mode_line_format
= build_string ("%-");
5162 buffer_defaults
.header_line_format
= Qnil
;
5163 buffer_defaults
.abbrev_mode
= Qnil
;
5164 buffer_defaults
.overwrite_mode
= Qnil
;
5165 buffer_defaults
.case_fold_search
= Qt
;
5166 buffer_defaults
.auto_fill_function
= Qnil
;
5167 buffer_defaults
.selective_display
= Qnil
;
5169 buffer_defaults
.selective_display_ellipses
= Qt
;
5171 buffer_defaults
.abbrev_table
= Qnil
;
5172 buffer_defaults
.display_table
= Qnil
;
5173 buffer_defaults
.undo_list
= Qnil
;
5174 buffer_defaults
.mark_active
= Qnil
;
5175 buffer_defaults
.file_format
= Qnil
;
5176 buffer_defaults
.auto_save_file_format
= Qt
;
5177 buffer_defaults
.overlays_before
= NULL
;
5178 buffer_defaults
.overlays_after
= NULL
;
5179 buffer_defaults
.overlay_center
= BEG
;
5181 XSETFASTINT (buffer_defaults
.tab_width
, 8);
5182 buffer_defaults
.truncate_lines
= Qnil
;
5183 buffer_defaults
.ctl_arrow
= Qt
;
5184 buffer_defaults
.direction_reversed
= Qnil
;
5185 buffer_defaults
.cursor_type
= Qt
;
5186 buffer_defaults
.extra_line_spacing
= Qnil
;
5187 buffer_defaults
.cursor_in_non_selected_windows
= Qt
;
5190 buffer_defaults
.buffer_file_type
= Qnil
; /* TEXT */
5192 buffer_defaults
.enable_multibyte_characters
= Qt
;
5193 buffer_defaults
.buffer_file_coding_system
= Qnil
;
5194 XSETFASTINT (buffer_defaults
.fill_column
, 70);
5195 XSETFASTINT (buffer_defaults
.left_margin
, 0);
5196 buffer_defaults
.cache_long_line_scans
= Qnil
;
5197 buffer_defaults
.file_truename
= Qnil
;
5198 XSETFASTINT (buffer_defaults
.display_count
, 0);
5199 XSETFASTINT (buffer_defaults
.left_margin_cols
, 0);
5200 XSETFASTINT (buffer_defaults
.right_margin_cols
, 0);
5201 buffer_defaults
.left_fringe_width
= Qnil
;
5202 buffer_defaults
.right_fringe_width
= Qnil
;
5203 buffer_defaults
.fringes_outside_margins
= Qnil
;
5204 buffer_defaults
.scroll_bar_width
= Qnil
;
5205 buffer_defaults
.vertical_scroll_bar_type
= Qt
;
5206 buffer_defaults
.indicate_empty_lines
= Qnil
;
5207 buffer_defaults
.indicate_buffer_boundaries
= Qnil
;
5208 buffer_defaults
.fringe_indicator_alist
= Qnil
;
5209 buffer_defaults
.fringe_cursor_alist
= Qnil
;
5210 buffer_defaults
.scroll_up_aggressively
= Qnil
;
5211 buffer_defaults
.scroll_down_aggressively
= Qnil
;
5212 buffer_defaults
.display_time
= Qnil
;
5214 /* Assign the local-flags to the slots that have default values.
5215 The local flag is a bit that is used in the buffer
5216 to say that it has its own local value for the slot.
5217 The local flag bits are in the local_var_flags slot of the buffer. */
5219 /* Nothing can work if this isn't true */
5220 if (sizeof (EMACS_INT
) != sizeof (Lisp_Object
)) abort ();
5222 /* 0 means not a lisp var, -1 means always local, else mask */
5223 bzero (&buffer_local_flags
, sizeof buffer_local_flags
);
5224 XSETINT (buffer_local_flags
.filename
, -1);
5225 XSETINT (buffer_local_flags
.directory
, -1);
5226 XSETINT (buffer_local_flags
.backed_up
, -1);
5227 XSETINT (buffer_local_flags
.save_length
, -1);
5228 XSETINT (buffer_local_flags
.auto_save_file_name
, -1);
5229 XSETINT (buffer_local_flags
.read_only
, -1);
5230 XSETINT (buffer_local_flags
.major_mode
, -1);
5231 XSETINT (buffer_local_flags
.mode_name
, -1);
5232 XSETINT (buffer_local_flags
.undo_list
, -1);
5233 XSETINT (buffer_local_flags
.mark_active
, -1);
5234 XSETINT (buffer_local_flags
.point_before_scroll
, -1);
5235 XSETINT (buffer_local_flags
.file_truename
, -1);
5236 XSETINT (buffer_local_flags
.invisibility_spec
, -1);
5237 XSETINT (buffer_local_flags
.file_format
, -1);
5238 XSETINT (buffer_local_flags
.auto_save_file_format
, -1);
5239 XSETINT (buffer_local_flags
.display_count
, -1);
5240 XSETINT (buffer_local_flags
.display_time
, -1);
5241 XSETINT (buffer_local_flags
.enable_multibyte_characters
, -1);
5244 XSETFASTINT (buffer_local_flags
.mode_line_format
, idx
); ++idx
;
5245 XSETFASTINT (buffer_local_flags
.abbrev_mode
, idx
); ++idx
;
5246 XSETFASTINT (buffer_local_flags
.overwrite_mode
, idx
); ++idx
;
5247 XSETFASTINT (buffer_local_flags
.case_fold_search
, idx
); ++idx
;
5248 XSETFASTINT (buffer_local_flags
.auto_fill_function
, idx
); ++idx
;
5249 XSETFASTINT (buffer_local_flags
.selective_display
, idx
); ++idx
;
5251 XSETFASTINT (buffer_local_flags
.selective_display_ellipses
, idx
); ++idx
;
5253 XSETFASTINT (buffer_local_flags
.tab_width
, idx
); ++idx
;
5254 XSETFASTINT (buffer_local_flags
.truncate_lines
, idx
); ++idx
;
5255 XSETFASTINT (buffer_local_flags
.ctl_arrow
, idx
); ++idx
;
5256 XSETFASTINT (buffer_local_flags
.fill_column
, idx
); ++idx
;
5257 XSETFASTINT (buffer_local_flags
.left_margin
, idx
); ++idx
;
5258 XSETFASTINT (buffer_local_flags
.abbrev_table
, idx
); ++idx
;
5259 XSETFASTINT (buffer_local_flags
.display_table
, idx
); ++idx
;
5261 XSETFASTINT (buffer_local_flags
.buffer_file_type
, idx
);
5262 /* Make this one a permanent local. */
5263 buffer_permanent_local_flags
[idx
++] = 1;
5265 XSETFASTINT (buffer_local_flags
.syntax_table
, idx
); ++idx
;
5266 XSETFASTINT (buffer_local_flags
.cache_long_line_scans
, idx
); ++idx
;
5267 XSETFASTINT (buffer_local_flags
.category_table
, idx
); ++idx
;
5268 XSETFASTINT (buffer_local_flags
.direction_reversed
, idx
); ++idx
;
5269 XSETFASTINT (buffer_local_flags
.buffer_file_coding_system
, idx
);
5270 /* Make this one a permanent local. */
5271 buffer_permanent_local_flags
[idx
++] = 1;
5272 XSETFASTINT (buffer_local_flags
.left_margin_cols
, idx
); ++idx
;
5273 XSETFASTINT (buffer_local_flags
.right_margin_cols
, idx
); ++idx
;
5274 XSETFASTINT (buffer_local_flags
.left_fringe_width
, idx
); ++idx
;
5275 XSETFASTINT (buffer_local_flags
.right_fringe_width
, idx
); ++idx
;
5276 XSETFASTINT (buffer_local_flags
.fringes_outside_margins
, idx
); ++idx
;
5277 XSETFASTINT (buffer_local_flags
.scroll_bar_width
, idx
); ++idx
;
5278 XSETFASTINT (buffer_local_flags
.vertical_scroll_bar_type
, idx
); ++idx
;
5279 XSETFASTINT (buffer_local_flags
.indicate_empty_lines
, idx
); ++idx
;
5280 XSETFASTINT (buffer_local_flags
.indicate_buffer_boundaries
, idx
); ++idx
;
5281 XSETFASTINT (buffer_local_flags
.fringe_indicator_alist
, idx
); ++idx
;
5282 XSETFASTINT (buffer_local_flags
.fringe_cursor_alist
, idx
); ++idx
;
5283 XSETFASTINT (buffer_local_flags
.scroll_up_aggressively
, idx
); ++idx
;
5284 XSETFASTINT (buffer_local_flags
.scroll_down_aggressively
, idx
); ++idx
;
5285 XSETFASTINT (buffer_local_flags
.header_line_format
, idx
); ++idx
;
5286 XSETFASTINT (buffer_local_flags
.cursor_type
, idx
); ++idx
;
5287 XSETFASTINT (buffer_local_flags
.extra_line_spacing
, idx
); ++idx
;
5288 XSETFASTINT (buffer_local_flags
.cursor_in_non_selected_windows
, idx
); ++idx
;
5290 /* Need more room? */
5291 if (idx
>= MAX_PER_BUFFER_VARS
)
5293 last_per_buffer_idx
= idx
;
5295 Vbuffer_alist
= Qnil
;
5299 QSFundamental
= build_string ("Fundamental");
5301 Qfundamental_mode
= intern ("fundamental-mode");
5302 buffer_defaults
.major_mode
= Qfundamental_mode
;
5304 Qmode_class
= intern ("mode-class");
5306 Qprotected_field
= intern ("protected-field");
5308 Qpermanent_local
= intern ("permanent-local");
5310 Qkill_buffer_hook
= intern ("kill-buffer-hook");
5311 Fput (Qkill_buffer_hook
, Qpermanent_local
, Qt
);
5313 Qucs_set_table_for_input
= intern ("ucs-set-table-for-input");
5315 Vprin1_to_string_buffer
= Fget_buffer_create (build_string (" prin1"));
5317 /* super-magic invisible buffer */
5318 Vbuffer_alist
= Qnil
;
5320 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
5322 inhibit_modification_hooks
= 0;
5332 #ifdef USE_MMAP_FOR_BUFFERS
5334 /* When using the ralloc implementation based on mmap(2), buffer
5335 text pointers will have been set to null in the dumped Emacs.
5339 for (b
= all_buffers
; b
; b
= b
->next
)
5340 if (b
->text
->beg
== NULL
)
5341 enlarge_buffer_text (b
, 0);
5343 #endif /* USE_MMAP_FOR_BUFFERS */
5345 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
5346 if (NILP (buffer_defaults
.enable_multibyte_characters
))
5347 Fset_buffer_multibyte (Qnil
);
5349 pwd
= get_current_dir_name ();
5352 fatal ("`get_current_dir_name' failed: %s\n", strerror (errno
));
5355 /* Maybe this should really use some standard subroutine
5356 whose definition is filename syntax dependent. */
5358 if (!(IS_DIRECTORY_SEP (pwd
[len
- 1])))
5360 /* Grow buffer to add directory separator and '\0'. */
5361 pwd
= (char *) xrealloc (pwd
, len
+ 2);
5362 pwd
[len
] = DIRECTORY_SEP
;
5363 pwd
[len
+ 1] = '\0';
5365 #endif /* not VMS */
5367 current_buffer
->directory
= make_unibyte_string (pwd
, strlen (pwd
));
5368 if (! NILP (buffer_defaults
.enable_multibyte_characters
))
5369 /* At this moment, we still don't know how to decode the
5370 directory name. So, we keep the bytes in multibyte form so
5371 that ENCODE_FILE correctly gets the original bytes. */
5372 current_buffer
->directory
5373 = string_to_multibyte (current_buffer
->directory
);
5375 /* Add /: to the front of the name
5376 if it would otherwise be treated as magic. */
5377 temp
= Ffind_file_name_handler (current_buffer
->directory
, Qt
);
5379 /* If the default dir is just /, TEMP is non-nil
5380 because of the ange-ftp completion handler.
5381 However, it is not necessary to turn / into /:/.
5382 So avoid doing that. */
5383 && strcmp ("/", SDATA (current_buffer
->directory
)))
5384 current_buffer
->directory
5385 = concat2 (build_string ("/:"), current_buffer
->directory
);
5387 temp
= get_minibuffer (0);
5388 XBUFFER (temp
)->directory
= current_buffer
->directory
;
5393 /* Similar to defvar_lisp but define a variable whose value is the Lisp
5394 Object stored in the current buffer. address is the address of the slot
5395 in the buffer that is current now. */
5397 /* TYPE is nil for a general Lisp variable.
5398 An integer specifies a type; then only LIsp values
5399 with that type code are allowed (except that nil is allowed too).
5400 LNAME is the LIsp-level variable name.
5401 VNAME is the name of the buffer slot.
5402 DOC is a dummy where you write the doc string as a comment. */
5403 #define DEFVAR_PER_BUFFER(lname, vname, type, doc) \
5404 defvar_per_buffer (lname, vname, type, 0)
5407 defvar_per_buffer (namestring
, address
, type
, doc
)
5409 Lisp_Object
*address
;
5413 Lisp_Object sym
, val
;
5416 sym
= intern (namestring
);
5417 val
= allocate_misc ();
5418 offset
= (char *)address
- (char *)current_buffer
;
5420 XMISCTYPE (val
) = Lisp_Misc_Buffer_Objfwd
;
5421 XBUFFER_OBJFWD (val
)->offset
= offset
;
5422 XBUFFER_OBJFWD (val
)->slottype
= type
;
5423 SET_SYMBOL_VALUE (sym
, val
);
5424 PER_BUFFER_SYMBOL (offset
) = sym
;
5426 if (PER_BUFFER_IDX (offset
) == 0)
5427 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding
5428 slot of buffer_local_flags */
5433 /* initialize the buffer routines */
5437 staticpro (&last_overlay_modification_hooks
);
5438 last_overlay_modification_hooks
5439 = Fmake_vector (make_number (10), Qnil
);
5441 staticpro (&Vbuffer_defaults
);
5442 staticpro (&Vbuffer_local_symbols
);
5443 staticpro (&Qfundamental_mode
);
5444 staticpro (&Qmode_class
);
5445 staticpro (&QSFundamental
);
5446 staticpro (&Vbuffer_alist
);
5447 staticpro (&Qprotected_field
);
5448 staticpro (&Qpermanent_local
);
5449 Qpermanent_local_hook
= intern ("permanent-local-hook");
5450 staticpro (&Qpermanent_local_hook
);
5451 staticpro (&Qkill_buffer_hook
);
5452 Qoverlayp
= intern ("overlayp");
5453 staticpro (&Qoverlayp
);
5454 Qevaporate
= intern ("evaporate");
5455 staticpro (&Qevaporate
);
5456 Qmodification_hooks
= intern ("modification-hooks");
5457 staticpro (&Qmodification_hooks
);
5458 Qinsert_in_front_hooks
= intern ("insert-in-front-hooks");
5459 staticpro (&Qinsert_in_front_hooks
);
5460 Qinsert_behind_hooks
= intern ("insert-behind-hooks");
5461 staticpro (&Qinsert_behind_hooks
);
5462 Qget_file_buffer
= intern ("get-file-buffer");
5463 staticpro (&Qget_file_buffer
);
5464 Qpriority
= intern ("priority");
5465 staticpro (&Qpriority
);
5466 Qwindow
= intern ("window");
5467 staticpro (&Qwindow
);
5468 Qbefore_string
= intern ("before-string");
5469 staticpro (&Qbefore_string
);
5470 Qafter_string
= intern ("after-string");
5471 staticpro (&Qafter_string
);
5472 Qfirst_change_hook
= intern ("first-change-hook");
5473 staticpro (&Qfirst_change_hook
);
5474 Qbefore_change_functions
= intern ("before-change-functions");
5475 staticpro (&Qbefore_change_functions
);
5476 Qafter_change_functions
= intern ("after-change-functions");
5477 staticpro (&Qafter_change_functions
);
5478 /* The next one is initialized in init_buffer_once. */
5479 staticpro (&Qucs_set_table_for_input
);
5481 Qkill_buffer_query_functions
= intern ("kill-buffer-query-functions");
5482 staticpro (&Qkill_buffer_query_functions
);
5484 Fput (Qprotected_field
, Qerror_conditions
,
5485 Fcons (Qprotected_field
, Fcons (Qerror
, Qnil
)));
5486 Fput (Qprotected_field
, Qerror_message
,
5487 build_string ("Attempt to modify a protected field"));
5489 /* All these use DEFVAR_LISP_NOPRO because the slots in
5490 buffer_defaults will all be marked via Vbuffer_defaults. */
5492 DEFVAR_LISP_NOPRO ("default-mode-line-format",
5493 &buffer_defaults
.mode_line_format
,
5494 doc
: /* Default value of `mode-line-format' for buffers that don't override it.
5495 This is the same as (default-value 'mode-line-format). */);
5497 DEFVAR_LISP_NOPRO ("default-header-line-format",
5498 &buffer_defaults
.header_line_format
,
5499 doc
: /* Default value of `header-line-format' for buffers that don't override it.
5500 This is the same as (default-value 'header-line-format). */);
5502 DEFVAR_LISP_NOPRO ("default-cursor-type", &buffer_defaults
.cursor_type
,
5503 doc
: /* Default value of `cursor-type' for buffers that don't override it.
5504 This is the same as (default-value 'cursor-type). */);
5506 DEFVAR_LISP_NOPRO ("default-line-spacing",
5507 &buffer_defaults
.extra_line_spacing
,
5508 doc
: /* Default value of `line-spacing' for buffers that don't override it.
5509 This is the same as (default-value 'line-spacing). */);
5511 DEFVAR_LISP_NOPRO ("default-cursor-in-non-selected-windows",
5512 &buffer_defaults
.cursor_in_non_selected_windows
,
5513 doc
: /* Default value of `cursor-in-non-selected-windows'.
5514 This is the same as (default-value 'cursor-in-non-selected-windows). */);
5516 DEFVAR_LISP_NOPRO ("default-abbrev-mode",
5517 &buffer_defaults
.abbrev_mode
,
5518 doc
: /* Default value of `abbrev-mode' for buffers that do not override it.
5519 This is the same as (default-value 'abbrev-mode). */);
5521 DEFVAR_LISP_NOPRO ("default-ctl-arrow",
5522 &buffer_defaults
.ctl_arrow
,
5523 doc
: /* Default value of `ctl-arrow' for buffers that do not override it.
5524 This is the same as (default-value 'ctl-arrow). */);
5526 DEFVAR_LISP_NOPRO ("default-direction-reversed",
5527 &buffer_defaults
.direction_reversed
,
5528 doc
: /* Default value of `direction-reversed' for buffers that do not override it.
5529 This is the same as (default-value 'direction-reversed). */);
5531 DEFVAR_LISP_NOPRO ("default-enable-multibyte-characters",
5532 &buffer_defaults
.enable_multibyte_characters
,
5533 doc
: /* *Default value of `enable-multibyte-characters' for buffers not overriding it.
5534 This is the same as (default-value 'enable-multibyte-characters). */);
5536 DEFVAR_LISP_NOPRO ("default-buffer-file-coding-system",
5537 &buffer_defaults
.buffer_file_coding_system
,
5538 doc
: /* Default value of `buffer-file-coding-system' for buffers not overriding it.
5539 This is the same as (default-value 'buffer-file-coding-system). */);
5541 DEFVAR_LISP_NOPRO ("default-truncate-lines",
5542 &buffer_defaults
.truncate_lines
,
5543 doc
: /* Default value of `truncate-lines' for buffers that do not override it.
5544 This is the same as (default-value 'truncate-lines). */);
5546 DEFVAR_LISP_NOPRO ("default-fill-column",
5547 &buffer_defaults
.fill_column
,
5548 doc
: /* Default value of `fill-column' for buffers that do not override it.
5549 This is the same as (default-value 'fill-column). */);
5551 DEFVAR_LISP_NOPRO ("default-left-margin",
5552 &buffer_defaults
.left_margin
,
5553 doc
: /* Default value of `left-margin' for buffers that do not override it.
5554 This is the same as (default-value 'left-margin). */);
5556 DEFVAR_LISP_NOPRO ("default-tab-width",
5557 &buffer_defaults
.tab_width
,
5558 doc
: /* Default value of `tab-width' for buffers that do not override it.
5559 This is the same as (default-value 'tab-width). */);
5561 DEFVAR_LISP_NOPRO ("default-case-fold-search",
5562 &buffer_defaults
.case_fold_search
,
5563 doc
: /* Default value of `case-fold-search' for buffers that don't override it.
5564 This is the same as (default-value 'case-fold-search). */);
5567 DEFVAR_LISP_NOPRO ("default-buffer-file-type",
5568 &buffer_defaults
.buffer_file_type
,
5569 doc
: /* Default file type for buffers that do not override it.
5570 This is the same as (default-value 'buffer-file-type).
5571 The file type is nil for text, t for binary. */);
5574 DEFVAR_LISP_NOPRO ("default-left-margin-width",
5575 &buffer_defaults
.left_margin_cols
,
5576 doc
: /* Default value of `left-margin-width' for buffers that don't override it.
5577 This is the same as (default-value 'left-margin-width). */);
5579 DEFVAR_LISP_NOPRO ("default-right-margin-width",
5580 &buffer_defaults
.right_margin_cols
,
5581 doc
: /* Default value of `right-margin-width' for buffers that don't override it.
5582 This is the same as (default-value 'right-margin-width). */);
5584 DEFVAR_LISP_NOPRO ("default-left-fringe-width",
5585 &buffer_defaults
.left_fringe_width
,
5586 doc
: /* Default value of `left-fringe-width' for buffers that don't override it.
5587 This is the same as (default-value 'left-fringe-width). */);
5589 DEFVAR_LISP_NOPRO ("default-right-fringe-width",
5590 &buffer_defaults
.right_fringe_width
,
5591 doc
: /* Default value of `right-fringe-width' for buffers that don't override it.
5592 This is the same as (default-value 'right-fringe-width). */);
5594 DEFVAR_LISP_NOPRO ("default-fringes-outside-margins",
5595 &buffer_defaults
.fringes_outside_margins
,
5596 doc
: /* Default value of `fringes-outside-margins' for buffers that don't override it.
5597 This is the same as (default-value 'fringes-outside-margins). */);
5599 DEFVAR_LISP_NOPRO ("default-scroll-bar-width",
5600 &buffer_defaults
.scroll_bar_width
,
5601 doc
: /* Default value of `scroll-bar-width' for buffers that don't override it.
5602 This is the same as (default-value 'scroll-bar-width). */);
5604 DEFVAR_LISP_NOPRO ("default-vertical-scroll-bar",
5605 &buffer_defaults
.vertical_scroll_bar_type
,
5606 doc
: /* Default value of `vertical-scroll-bar' for buffers that don't override it.
5607 This is the same as (default-value 'vertical-scroll-bar). */);
5609 DEFVAR_LISP_NOPRO ("default-indicate-empty-lines",
5610 &buffer_defaults
.indicate_empty_lines
,
5611 doc
: /* Default value of `indicate-empty-lines' for buffers that don't override it.
5612 This is the same as (default-value 'indicate-empty-lines). */);
5614 DEFVAR_LISP_NOPRO ("default-indicate-buffer-boundaries",
5615 &buffer_defaults
.indicate_buffer_boundaries
,
5616 doc
: /* Default value of `indicate-buffer-boundaries' for buffers that don't override it.
5617 This is the same as (default-value 'indicate-buffer-boundaries). */);
5619 DEFVAR_LISP_NOPRO ("default-fringe-indicator-alist",
5620 &buffer_defaults
.fringe_indicator_alist
,
5621 doc
: /* Default value of `fringe-indicator-alist' for buffers that don't override it.
5622 This is the same as (default-value 'fringe-indicator-alist'). */);
5624 DEFVAR_LISP_NOPRO ("default-fringe-cursor-alist",
5625 &buffer_defaults
.fringe_cursor_alist
,
5626 doc
: /* Default value of `fringe-cursor-alist' for buffers that don't override it.
5627 This is the same as (default-value 'fringe-cursor-alist'). */);
5629 DEFVAR_LISP_NOPRO ("default-scroll-up-aggressively",
5630 &buffer_defaults
.scroll_up_aggressively
,
5631 doc
: /* Default value of `scroll-up-aggressively'.
5632 This value applies in buffers that don't have their own local values.
5633 This is the same as (default-value 'scroll-up-aggressively). */);
5635 DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively",
5636 &buffer_defaults
.scroll_down_aggressively
,
5637 doc
: /* Default value of `scroll-down-aggressively'.
5638 This value applies in buffers that don't have their own local values.
5639 This is the same as (default-value 'scroll-down-aggressively). */);
5641 DEFVAR_PER_BUFFER ("header-line-format",
5642 ¤t_buffer
->header_line_format
,
5644 doc
: /* Analogous to `mode-line-format', but controls the header line.
5645 The header line appears, optionally, at the top of a window;
5646 the mode line appears at the bottom. */);
5648 DEFVAR_PER_BUFFER ("mode-line-format", ¤t_buffer
->mode_line_format
,
5650 doc
: /* Template for displaying mode line for current buffer.
5651 Each buffer has its own value of this variable.
5652 Value may be nil, a string, a symbol or a list or cons cell.
5653 A value of nil means don't display a mode line.
5654 For a symbol, its value is used (but it is ignored if t or nil).
5655 A string appearing directly as the value of a symbol is processed verbatim
5656 in that the %-constructs below are not recognized.
5657 Note that unless the symbol is marked as a `risky-local-variable', all
5658 properties in any strings, as well as all :eval and :propertize forms
5659 in the value of that symbol will be ignored.
5660 For a list of the form `(:eval FORM)', FORM is evaluated and the result
5661 is used as a mode line element. Be careful--FORM should not load any files,
5662 because that can cause an infinite recursion.
5663 For a list of the form `(:propertize ELT PROPS...)', ELT is displayed
5664 with the specified properties PROPS applied.
5665 For a list whose car is a symbol, the symbol's value is taken,
5666 and if that is non-nil, the cadr of the list is processed recursively.
5667 Otherwise, the caddr of the list (if there is one) is processed.
5668 For a list whose car is a string or list, each element is processed
5669 recursively and the results are effectively concatenated.
5670 For a list whose car is an integer, the cdr of the list is processed
5671 and padded (if the number is positive) or truncated (if negative)
5672 to the width specified by that number.
5673 A string is printed verbatim in the mode line except for %-constructs:
5674 (%-constructs are allowed when the string is the entire mode-line-format
5675 or when it is found in a cons-cell or a list)
5676 %b -- print buffer name. %f -- print visited file name.
5677 %F -- print frame name.
5678 %* -- print %, * or hyphen. %+ -- print *, % or hyphen.
5679 %& is like %*, but ignore read-only-ness.
5680 % means buffer is read-only and * means it is modified.
5681 For a modified read-only buffer, %* gives % and %+ gives *.
5682 %s -- print process status. %l -- print the current line number.
5683 %c -- print the current column number (this makes editing slower).
5684 To make the column number update correctly in all cases,
5685 `column-number-mode' must be non-nil.
5686 %i -- print the size of the buffer.
5687 %I -- like %i, but use k, M, G, etc., to abbreviate.
5688 %p -- print percent of buffer above top of window, or Top, Bot or All.
5689 %P -- print percent of buffer above bottom of window, perhaps plus Top,
5690 or print Bottom or All.
5691 %n -- print Narrow if appropriate.
5692 %t -- visited file is text or binary (if OS supports this distinction).
5693 %z -- print mnemonics of keyboard, terminal, and buffer coding systems.
5694 %Z -- like %z, but including the end-of-line format.
5695 %e -- print error message about full memory.
5696 %@ -- print @ or hyphen. @ means that default-directory is on a
5698 %[ -- print one [ for each recursive editing level. %] similar.
5699 %% -- print %. %- -- print infinitely many dashes.
5700 Decimal digits after the % specify field width to which to pad. */);
5702 DEFVAR_LISP_NOPRO ("default-major-mode", &buffer_defaults
.major_mode
,
5703 doc
: /* *Major mode for new buffers. Defaults to `fundamental-mode'.
5704 A value of nil means use current buffer's major mode,
5705 provided it is not marked as "special".
5707 When a mode is used by default, `find-file' switches to it
5708 before it reads the contents into the buffer and before
5709 it finishes setting up the buffer. Thus, the mode and
5710 its hooks should not expect certain variables such as
5711 `buffer-read-only' and `buffer-file-coding-system' to be set up. */);
5713 DEFVAR_PER_BUFFER ("major-mode", ¤t_buffer
->major_mode
,
5714 make_number (Lisp_Symbol
),
5715 doc
: /* Symbol for current buffer's major mode. */);
5717 DEFVAR_PER_BUFFER ("mode-name", ¤t_buffer
->mode_name
,
5719 doc
: /* Pretty name of current buffer's major mode.
5720 Usually a string. See `mode-line-format' for other possible forms.
5721 Use the function `format-mode-line' to get the value as a string. */);
5723 DEFVAR_PER_BUFFER ("local-abbrev-table", ¤t_buffer
->abbrev_table
, Qnil
,
5724 doc
: /* Local (mode-specific) abbrev table of current buffer. */);
5726 DEFVAR_PER_BUFFER ("abbrev-mode", ¤t_buffer
->abbrev_mode
, Qnil
,
5727 doc
: /* Non-nil turns on automatic expansion of abbrevs as they are inserted. */);
5729 DEFVAR_PER_BUFFER ("case-fold-search", ¤t_buffer
->case_fold_search
,
5731 doc
: /* *Non-nil if searches and matches should ignore case. */);
5733 DEFVAR_PER_BUFFER ("fill-column", ¤t_buffer
->fill_column
,
5734 make_number (Lisp_Int
),
5735 doc
: /* *Column beyond which automatic line-wrapping should happen.
5736 Interactively, you can set the buffer local value using \\[set-fill-column]. */);
5738 DEFVAR_PER_BUFFER ("left-margin", ¤t_buffer
->left_margin
,
5739 make_number (Lisp_Int
),
5740 doc
: /* *Column for the default `indent-line-function' to indent to.
5741 Linefeed indents to this column in Fundamental mode. */);
5743 DEFVAR_PER_BUFFER ("tab-width", ¤t_buffer
->tab_width
,
5744 make_number (Lisp_Int
),
5745 doc
: /* *Distance between tab stops (for display of tab characters), in columns. */);
5747 DEFVAR_PER_BUFFER ("ctl-arrow", ¤t_buffer
->ctl_arrow
, Qnil
,
5748 doc
: /* *Non-nil means display control chars with uparrow.
5749 A value of nil means use backslash and octal digits.
5750 This variable does not apply to characters whose display is specified
5751 in the current display table (if there is one). */);
5753 DEFVAR_PER_BUFFER ("enable-multibyte-characters",
5754 ¤t_buffer
->enable_multibyte_characters
,
5756 doc
: /* Non-nil means the buffer contents are regarded as multi-byte characters.
5757 Otherwise they are regarded as unibyte. This affects the display,
5758 file I/O and the behavior of various editing commands.
5760 This variable is buffer-local but you cannot set it directly;
5761 use the function `set-buffer-multibyte' to change a buffer's representation.
5762 Changing its default value with `setq-default' is supported.
5763 See also variable `default-enable-multibyte-characters' and Info node
5764 `(elisp)Text Representations'. */);
5765 XSYMBOL (intern ("enable-multibyte-characters"))->constant
= 1;
5767 DEFVAR_PER_BUFFER ("buffer-file-coding-system",
5768 ¤t_buffer
->buffer_file_coding_system
, Qnil
,
5769 doc
: /* Coding system to be used for encoding the buffer contents on saving.
5770 This variable applies to saving the buffer, and also to `write-region'
5771 and other functions that use `write-region'.
5772 It does not apply to sending output to subprocesses, however.
5774 If this is nil, the buffer is saved without any code conversion
5775 unless some coding system is specified in `file-coding-system-alist'
5776 for the buffer file.
5778 If the text to be saved cannot be encoded as specified by this variable,
5779 an alternative encoding is selected by `select-safe-coding-system', which see.
5781 The variable `coding-system-for-write', if non-nil, overrides this variable.
5783 This variable is never applied to a way of decoding a file while reading it. */);
5785 DEFVAR_PER_BUFFER ("direction-reversed", ¤t_buffer
->direction_reversed
,
5787 doc
: /* *Non-nil means lines in the buffer are displayed right to left. */);
5789 DEFVAR_PER_BUFFER ("truncate-lines", ¤t_buffer
->truncate_lines
, Qnil
,
5790 doc
: /* *Non-nil means do not display continuation lines.
5791 Instead, give each line of text just one screen line.
5793 Note that this is overridden by the variable
5794 `truncate-partial-width-windows' if that variable is non-nil
5795 and this buffer is not full-frame width. */);
5798 DEFVAR_PER_BUFFER ("buffer-file-type", ¤t_buffer
->buffer_file_type
,
5800 doc
: /* Non-nil if the visited file is a binary file.
5801 This variable is meaningful on MS-DOG and Windows NT.
5802 On those systems, it is automatically local in every buffer.
5803 On other systems, this variable is normally always nil. */);
5806 DEFVAR_PER_BUFFER ("default-directory", ¤t_buffer
->directory
,
5807 make_number (Lisp_String
),
5808 doc
: /* Name of default directory of current buffer. Should end with slash.
5809 To interactively change the default directory, use command `cd'. */);
5811 DEFVAR_PER_BUFFER ("auto-fill-function", ¤t_buffer
->auto_fill_function
,
5813 doc
: /* Function called (if non-nil) to perform auto-fill.
5814 It is called after self-inserting any character specified in
5815 the `auto-fill-chars' table.
5816 NOTE: This variable is not a hook;
5817 its value may not be a list of functions. */);
5819 DEFVAR_PER_BUFFER ("buffer-file-name", ¤t_buffer
->filename
,
5820 make_number (Lisp_String
),
5821 doc
: /* Name of file visited in current buffer, or nil if not visiting a file. */);
5823 DEFVAR_PER_BUFFER ("buffer-file-truename", ¤t_buffer
->file_truename
,
5824 make_number (Lisp_String
),
5825 doc
: /* Abbreviated truename of file visited in current buffer, or nil if none.
5826 The truename of a file is calculated by `file-truename'
5827 and then abbreviated with `abbreviate-file-name'. */);
5829 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
5830 ¤t_buffer
->auto_save_file_name
,
5831 make_number (Lisp_String
),
5832 doc
: /* Name of file for auto-saving current buffer.
5833 If it is nil, that means don't auto-save this buffer. */);
5835 DEFVAR_PER_BUFFER ("buffer-read-only", ¤t_buffer
->read_only
, Qnil
,
5836 doc
: /* Non-nil if this buffer is read-only. */);
5838 DEFVAR_PER_BUFFER ("buffer-backed-up", ¤t_buffer
->backed_up
, Qnil
,
5839 doc
: /* Non-nil if this buffer's file has been backed up.
5840 Backing up is done before the first time the file is saved. */);
5842 DEFVAR_PER_BUFFER ("buffer-saved-size", ¤t_buffer
->save_length
,
5843 make_number (Lisp_Int
),
5844 doc
: /* Length of current buffer when last read in, saved or auto-saved.
5847 DEFVAR_PER_BUFFER ("selective-display", ¤t_buffer
->selective_display
,
5849 doc
: /* Non-nil enables selective display.
5850 An integer N as value means display only lines
5851 that start with less than N columns of space.
5852 A value of t means that the character ^M makes itself and
5853 all the rest of the line invisible; also, when saving the buffer
5854 in a file, save the ^M as a newline. */);
5857 DEFVAR_PER_BUFFER ("selective-display-ellipses",
5858 ¤t_buffer
->selective_display_ellipses
,
5860 doc
: /* Non-nil means display ... on previous line when a line is invisible. */);
5863 DEFVAR_PER_BUFFER ("overwrite-mode", ¤t_buffer
->overwrite_mode
, Qnil
,
5864 doc
: /* Non-nil if self-insertion should replace existing text.
5865 The value should be one of `overwrite-mode-textual',
5866 `overwrite-mode-binary', or nil.
5867 If it is `overwrite-mode-textual', self-insertion still
5868 inserts at the end of a line, and inserts when point is before a tab,
5869 until the tab is filled in.
5870 If `overwrite-mode-binary', self-insertion replaces newlines and tabs too. */);
5872 DEFVAR_PER_BUFFER ("buffer-display-table", ¤t_buffer
->display_table
,
5874 doc
: /* Display table that controls display of the contents of current buffer.
5876 If this variable is nil, the value of `standard-display-table' is used.
5877 Each window can have its own, overriding display table, see
5878 `set-window-display-table' and `window-display-table'.
5880 The display table is a char-table created with `make-display-table'.
5881 A char-table is an array indexed by character codes. Normal array
5882 primitives `aref' and `aset' can be used to access elements of a char-table.
5884 Each of the char-table elements control how to display the corresponding
5885 text character: the element at index C in the table says how to display
5886 the character whose code is C. Each element should be a vector of
5887 characters or nil. The value nil means display the character in the
5888 default fashion; otherwise, the characters from the vector are delivered
5889 to the screen instead of the original character.
5891 For example, (aset buffer-display-table ?X [?Y]) tells Emacs
5892 to display a capital Y instead of each X character.
5894 In addition, a char-table has six extra slots to control the display of:
5896 the end of a truncated screen line (extra-slot 0, a single character);
5897 the end of a continued line (extra-slot 1, a single character);
5898 the escape character used to display character codes in octal
5899 (extra-slot 2, a single character);
5900 the character used as an arrow for control characters (extra-slot 3,
5901 a single character);
5902 the decoration indicating the presence of invisible lines (extra-slot 4,
5903 a vector of characters);
5904 the character used to draw the border between side-by-side windows
5905 (extra-slot 5, a single character).
5907 See also the functions `display-table-slot' and `set-display-table-slot'. */);
5909 DEFVAR_PER_BUFFER ("left-margin-width", ¤t_buffer
->left_margin_cols
,
5911 doc
: /* *Width of left marginal area for display of a buffer.
5912 A value of nil means no marginal area. */);
5914 DEFVAR_PER_BUFFER ("right-margin-width", ¤t_buffer
->right_margin_cols
,
5916 doc
: /* *Width of right marginal area for display of a buffer.
5917 A value of nil means no marginal area. */);
5919 DEFVAR_PER_BUFFER ("left-fringe-width", ¤t_buffer
->left_fringe_width
,
5921 doc
: /* *Width of this buffer's left fringe (in pixels).
5922 A value of 0 means no left fringe is shown in this buffer's window.
5923 A value of nil means to use the left fringe width from the window's frame. */);
5925 DEFVAR_PER_BUFFER ("right-fringe-width", ¤t_buffer
->right_fringe_width
,
5927 doc
: /* *Width of this buffer's right fringe (in pixels).
5928 A value of 0 means no right fringe is shown in this buffer's window.
5929 A value of nil means to use the right fringe width from the window's frame. */);
5931 DEFVAR_PER_BUFFER ("fringes-outside-margins", ¤t_buffer
->fringes_outside_margins
,
5933 doc
: /* *Non-nil means to display fringes outside display margins.
5934 A value of nil means to display fringes between margins and buffer text. */);
5936 DEFVAR_PER_BUFFER ("scroll-bar-width", ¤t_buffer
->scroll_bar_width
,
5938 doc
: /* *Width of this buffer's scroll bars in pixels.
5939 A value of nil means to use the scroll bar width from the window's frame. */);
5941 DEFVAR_PER_BUFFER ("vertical-scroll-bar", ¤t_buffer
->vertical_scroll_bar_type
,
5943 doc
: /* *Position of this buffer's vertical scroll bar.
5944 The value takes effect whenever you tell a window to display this buffer;
5945 for instance, with `set-window-buffer' or when `display-buffer' displays it.
5947 A value of `left' or `right' means put the vertical scroll bar at that side
5948 of the window; a value of nil means don't show any vertical scroll bars.
5949 A value of t (the default) means do whatever the window's frame specifies. */);
5951 DEFVAR_PER_BUFFER ("indicate-empty-lines",
5952 ¤t_buffer
->indicate_empty_lines
, Qnil
,
5953 doc
: /* *Visually indicate empty lines after the buffer end.
5954 If non-nil, a bitmap is displayed in the left fringe of a window on
5955 window-systems. */);
5957 DEFVAR_PER_BUFFER ("indicate-buffer-boundaries",
5958 ¤t_buffer
->indicate_buffer_boundaries
, Qnil
,
5959 doc
: /* *Visually indicate buffer boundaries and scrolling.
5960 If non-nil, the first and last line of the buffer are marked in the fringe
5961 of a window on window-systems with angle bitmaps, or if the window can be
5962 scrolled, the top and bottom line of the window are marked with up and down
5965 If value is a symbol `left' or `right', both angle and arrow bitmaps
5966 are displayed in the left or right fringe, resp. Any other value
5967 that doesn't look like an alist means display the angle bitmaps in
5968 the left fringe but no arrows.
5970 You can exercise more precise control by using an alist as the
5971 value. Each alist element (INDICATOR . POSITION) specifies
5972 where to show one of the indicators. INDICATOR is one of `top',
5973 `bottom', `up', `down', or t, which specifies the default position,
5974 and POSITION is one of `left', `right', or nil, meaning do not show
5977 For example, ((top . left) (t . right)) places the top angle bitmap in
5978 left fringe, the bottom angle bitmap in right fringe, and both arrow
5979 bitmaps in right fringe. To show just the angle bitmaps in the left
5980 fringe, but no arrow bitmaps, use ((top . left) (bottom . left)). */);
5982 DEFVAR_PER_BUFFER ("fringe-indicator-alist",
5983 ¤t_buffer
->fringe_indicator_alist
, Qnil
,
5984 doc
: /* *Mapping from logical to physical fringe indicator bitmaps.
5985 The value is an alist where each element (INDICATOR . BITMAPS)
5986 specifies the fringe bitmaps used to display a specific logical
5989 INDICATOR specifies the logical indicator type which is one of the
5990 following symbols: `truncation' , `continuation', `overlay-arrow',
5991 `top', `bottom', `up', `down', `one-line', `empty-line', or `unknown'.
5993 BITMAPS is list of symbols (LEFT RIGHT [LEFT1 RIGHT1]) which specifies
5994 the actual bitmap shown in the left or right fringe for the logical
5995 indicator. LEFT and RIGHT are the bitmaps shown in the left and/or
5996 right fringe for the specific indicator. The LEFT1 or RIGHT1 bitmaps
5997 are used only for the `bottom' and `one-line' indicators when the last
5998 \(only) line in has no final newline. BITMAPS may also be a single
5999 symbol which is used in both left and right fringes. */);
6001 DEFVAR_PER_BUFFER ("fringe-cursor-alist",
6002 ¤t_buffer
->fringe_cursor_alist
, Qnil
,
6003 doc
: /* *Mapping from logical to physical fringe cursor bitmaps.
6004 The value is an alist where each element (CURSOR . BITMAP)
6005 specifies the fringe bitmaps used to display a specific logical
6006 cursor type in the fringe.
6008 CURSOR specifies the logical cursor type which is one of the following
6009 symbols: `box' , `hollow', `bar', `hbar', or `hollow-small'. The last
6010 one is used to show a hollow cursor on narrow lines display lines
6011 where the normal hollow cursor will not fit.
6013 BITMAP is the corresponding fringe bitmap shown for the logical
6016 DEFVAR_PER_BUFFER ("scroll-up-aggressively",
6017 ¤t_buffer
->scroll_up_aggressively
, Qnil
,
6018 doc
: /* How far to scroll windows upward.
6019 If you move point off the bottom, the window scrolls automatically.
6020 This variable controls how far it scrolls. The value nil, the default,
6021 means scroll to center point. A fraction means scroll to put point
6022 that fraction of the window's height from the bottom of the window.
6023 When the value is 0.0, point goes at the bottom line, which in the simple
6024 case that you moved off with C-f means scrolling just one line. 1.0 means
6025 point goes at the top, so that in that simple case, the window
6026 scrolls by a full window height. Meaningful values are
6027 between 0.0 and 1.0, inclusive. */);
6029 DEFVAR_PER_BUFFER ("scroll-down-aggressively",
6030 ¤t_buffer
->scroll_down_aggressively
, Qnil
,
6031 doc
: /* How far to scroll windows downward.
6032 If you move point off the top, the window scrolls automatically.
6033 This variable controls how far it scrolls. The value nil, the default,
6034 means scroll to center point. A fraction means scroll to put point
6035 that fraction of the window's height from the top of the window.
6036 When the value is 0.0, point goes at the top line, which in the simple
6037 case that you moved off with C-b means scrolling just one line. 1.0 means
6038 point goes at the bottom, so that in that simple case, the window
6039 scrolls by a full window height. Meaningful values are
6040 between 0.0 and 1.0, inclusive. */);
6042 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
6046 DEFVAR_LISP ("before-change-functions", &Vbefore_change_functions
,
6047 doc
: /* List of functions to call before each text change.
6048 Two arguments are passed to each function: the positions of
6049 the beginning and end of the range of old text to be changed.
6050 \(For an insertion, the beginning and end are at the same place.)
6051 No information is given about the length of the text after the change.
6053 Buffer changes made while executing the `before-change-functions'
6054 don't call any before-change or after-change functions.
6055 That's because these variables are temporarily set to nil.
6056 As a result, a hook function cannot straightforwardly alter the value of
6057 these variables. See the Emacs Lisp manual for a way of
6058 accomplishing an equivalent result by using other variables.
6060 If an unhandled error happens in running these functions,
6061 the variable's value remains nil. That prevents the error
6062 from happening repeatedly and making Emacs nonfunctional. */);
6063 Vbefore_change_functions
= Qnil
;
6065 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions
,
6066 doc
: /* List of functions to call after each text change.
6067 Three arguments are passed to each function: the positions of
6068 the beginning and end of the range of changed text,
6069 and the length in bytes of the pre-change text replaced by that range.
6070 \(For an insertion, the pre-change length is zero;
6071 for a deletion, that length is the number of bytes deleted,
6072 and the post-change beginning and end are at the same place.)
6074 Buffer changes made while executing the `after-change-functions'
6075 don't call any before-change or after-change functions.
6076 That's because these variables are temporarily set to nil.
6077 As a result, a hook function cannot straightforwardly alter the value of
6078 these variables. See the Emacs Lisp manual for a way of
6079 accomplishing an equivalent result by using other variables.
6081 If an unhandled error happens in running these functions,
6082 the variable's value remains nil. That prevents the error
6083 from happening repeatedly and making Emacs nonfunctional. */);
6084 Vafter_change_functions
= Qnil
;
6086 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook
,
6087 doc
: /* A list of functions to call before changing a buffer which is unmodified.
6088 The functions are run using the `run-hooks' function. */);
6089 Vfirst_change_hook
= Qnil
;
6091 DEFVAR_PER_BUFFER ("buffer-undo-list", ¤t_buffer
->undo_list
, Qnil
,
6092 doc
: /* List of undo entries in current buffer.
6093 Recent changes come first; older changes follow newer.
6095 An entry (BEG . END) represents an insertion which begins at
6096 position BEG and ends at position END.
6098 An entry (TEXT . POSITION) represents the deletion of the string TEXT
6099 from (abs POSITION). If POSITION is positive, point was at the front
6100 of the text being deleted; if negative, point was at the end.
6102 An entry (t HIGH . LOW) indicates that the buffer previously had
6103 \"unmodified\" status. HIGH and LOW are the high and low 16-bit portions
6104 of the visited file's modification time, as of that time. If the
6105 modification time of the most recent save is different, this entry is
6108 An entry (nil PROPERTY VALUE BEG . END) indicates that a text property
6109 was modified between BEG and END. PROPERTY is the property name,
6110 and VALUE is the old value.
6112 An entry (apply FUN-NAME . ARGS) means undo the change with
6113 \(apply FUN-NAME ARGS).
6115 An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo
6116 in the active region. BEG and END is the range affected by this entry
6117 and DELTA is the number of bytes added or deleted in that range by
6120 An entry (MARKER . DISTANCE) indicates that the marker MARKER
6121 was adjusted in position by the offset DISTANCE (an integer).
6123 An entry of the form POSITION indicates that point was at the buffer
6124 location given by the integer. Undoing an entry of this form places
6127 Entries with value `nil' mark undo boundaries. The undo command treats
6128 the changes between two undo boundaries as a single step to be undone.
6130 If the value of the variable is t, undo information is not recorded. */);
6132 DEFVAR_PER_BUFFER ("mark-active", ¤t_buffer
->mark_active
, Qnil
,
6133 doc
: /* Non-nil means the mark and region are currently active in this buffer. */);
6135 DEFVAR_PER_BUFFER ("cache-long-line-scans", ¤t_buffer
->cache_long_line_scans
, Qnil
,
6136 doc
: /* Non-nil means that Emacs should use caches to handle long lines more quickly.
6138 Normally, the line-motion functions work by scanning the buffer for
6139 newlines. Columnar operations (like `move-to-column' and
6140 `compute-motion') also work by scanning the buffer, summing character
6141 widths as they go. This works well for ordinary text, but if the
6142 buffer's lines are very long (say, more than 500 characters), these
6143 motion functions will take longer to execute. Emacs may also take
6144 longer to update the display.
6146 If `cache-long-line-scans' is non-nil, these motion functions cache the
6147 results of their scans, and consult the cache to avoid rescanning
6148 regions of the buffer until the text is modified. The caches are most
6149 beneficial when they prevent the most searching---that is, when the
6150 buffer contains long lines and large regions of characters with the
6151 same, fixed screen width.
6153 When `cache-long-line-scans' is non-nil, processing short lines will
6154 become slightly slower (because of the overhead of consulting the
6155 cache), and the caches will use memory roughly proportional to the
6156 number of newlines and characters whose screen width varies.
6158 The caches require no explicit maintenance; their accuracy is
6159 maintained internally by the Emacs primitives. Enabling or disabling
6160 the cache should not affect the behavior of any of the motion
6161 functions; it should only affect their performance. */);
6163 DEFVAR_PER_BUFFER ("point-before-scroll", ¤t_buffer
->point_before_scroll
, Qnil
,
6164 doc
: /* Value of point before the last series of scroll operations, or nil. */);
6166 DEFVAR_PER_BUFFER ("buffer-file-format", ¤t_buffer
->file_format
, Qnil
,
6167 doc
: /* List of formats to use when saving this buffer.
6168 Formats are defined by `format-alist'. This variable is
6169 set when a file is visited. */);
6171 DEFVAR_PER_BUFFER ("buffer-auto-save-file-format",
6172 ¤t_buffer
->auto_save_file_format
, Qnil
,
6173 doc
: /* *Format in which to write auto-save files.
6174 Should be a list of symbols naming formats that are defined in `format-alist'.
6175 If it is t, which is the default, auto-save files are written in the
6176 same format as a regular save would use. */);
6178 DEFVAR_PER_BUFFER ("buffer-invisibility-spec",
6179 ¤t_buffer
->invisibility_spec
, Qnil
,
6180 doc
: /* Invisibility spec of this buffer.
6181 The default is t, which means that text is invisible
6182 if it has a non-nil `invisible' property.
6183 If the value is a list, a text character is invisible if its `invisible'
6184 property is an element in that list (or is a list with members in common).
6185 If an element is a cons cell of the form (PROP . ELLIPSIS),
6186 then characters with property value PROP are invisible,
6187 and they have an ellipsis as well if ELLIPSIS is non-nil. */);
6189 DEFVAR_PER_BUFFER ("buffer-display-count",
6190 ¤t_buffer
->display_count
, Qnil
,
6191 doc
: /* A number incremented each time this buffer is displayed in a window.
6192 The function `set-window-buffer' increments it. */);
6194 DEFVAR_PER_BUFFER ("buffer-display-time",
6195 ¤t_buffer
->display_time
, Qnil
,
6196 doc
: /* Time stamp updated each time this buffer is displayed in a window.
6197 The function `set-window-buffer' updates this variable
6198 to the value obtained by calling `current-time'.
6199 If the buffer has never been shown in a window, the value is nil. */);
6201 DEFVAR_LISP ("transient-mark-mode", &Vtransient_mark_mode
,
6203 Vtransient_mark_mode
= Qnil
;
6204 /* The docstring is in simple.el. If we put it here, it would be
6205 overwritten when transient-mark-mode is defined using
6206 define-minor-mode. */
6208 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only
,
6209 doc
: /* *Non-nil means disregard read-only status of buffers or characters.
6210 If the value is t, disregard `buffer-read-only' and all `read-only'
6211 text properties. If the value is a list, disregard `buffer-read-only'
6212 and disregard a `read-only' text property if the property value
6213 is a member of the list. */);
6214 Vinhibit_read_only
= Qnil
;
6216 DEFVAR_PER_BUFFER ("cursor-type", ¤t_buffer
->cursor_type
, Qnil
,
6217 doc
: /* Cursor to use when this buffer is in the selected window.
6218 Values are interpreted as follows:
6220 t use the cursor specified for the frame
6221 nil don't display a cursor
6222 box display a filled box cursor
6223 hollow display a hollow box cursor
6224 bar display a vertical bar cursor with default width
6225 (bar . WIDTH) display a vertical bar cursor with width WIDTH
6226 hbar display a horizontal bar cursor with default height
6227 (hbar . HEIGHT) display a horizontal bar cursor with height HEIGHT
6228 ANYTHING ELSE display a hollow box cursor
6230 When the buffer is displayed in a nonselected window,
6231 this variable has no effect; the cursor appears as a hollow box. */);
6233 DEFVAR_PER_BUFFER ("line-spacing",
6234 ¤t_buffer
->extra_line_spacing
, Qnil
,
6235 doc
: /* Additional space to put between lines when displaying a buffer.
6236 The space is measured in pixels, and put below lines on window systems.
6237 If value is a floating point number, it specifies the spacing relative
6238 to the default frame line height. A value of nil means add no extra space. */);
6240 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
6241 ¤t_buffer
->cursor_in_non_selected_windows
, Qnil
,
6242 doc
: /* *Cursor type to display in non-selected windows.
6243 The value t means to use hollow box cursor. See `cursor-type' for other values. */);
6245 DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions
,
6246 doc
: /* List of functions called with no args to query before killing a buffer.
6247 The buffer being killed will be current while the functions are running.
6248 If any of them returns nil, the buffer is not killed. */);
6249 Vkill_buffer_query_functions
= Qnil
;
6251 DEFVAR_LISP ("change-major-mode-hook", &Vchange_major_mode_hook
,
6252 doc
: /* Normal hook run before changing the major mode of a buffer.
6253 The function `kill-all-local-variables' runs this before doing anything else. */);
6254 Vchange_major_mode_hook
= Qnil
;
6255 Qchange_major_mode_hook
= intern ("change-major-mode-hook");
6256 staticpro (&Qchange_major_mode_hook
);
6258 defsubr (&Sbuffer_live_p
);
6259 defsubr (&Sbuffer_list
);
6260 defsubr (&Sget_buffer
);
6261 defsubr (&Sget_file_buffer
);
6262 defsubr (&Sget_buffer_create
);
6263 defsubr (&Smake_indirect_buffer
);
6264 defsubr (&Sgenerate_new_buffer_name
);
6265 defsubr (&Sbuffer_name
);
6266 /*defsubr (&Sbuffer_number);*/
6267 defsubr (&Sbuffer_file_name
);
6268 defsubr (&Sbuffer_base_buffer
);
6269 defsubr (&Sbuffer_local_value
);
6270 defsubr (&Sbuffer_local_variables
);
6271 defsubr (&Sbuffer_modified_p
);
6272 defsubr (&Sset_buffer_modified_p
);
6273 defsubr (&Sbuffer_modified_tick
);
6274 defsubr (&Sbuffer_chars_modified_tick
);
6275 defsubr (&Srename_buffer
);
6276 defsubr (&Sother_buffer
);
6277 defsubr (&Sbuffer_enable_undo
);
6278 defsubr (&Skill_buffer
);
6279 defsubr (&Sset_buffer_major_mode
);
6280 defsubr (&Sswitch_to_buffer
);
6281 defsubr (&Spop_to_buffer
);
6282 defsubr (&Scurrent_buffer
);
6283 defsubr (&Sset_buffer
);
6284 defsubr (&Sbarf_if_buffer_read_only
);
6285 defsubr (&Sbury_buffer
);
6286 defsubr (&Serase_buffer
);
6287 defsubr (&Sbuffer_swap_text
);
6288 defsubr (&Sset_buffer_multibyte
);
6289 defsubr (&Skill_all_local_variables
);
6291 defsubr (&Soverlayp
);
6292 defsubr (&Smake_overlay
);
6293 defsubr (&Sdelete_overlay
);
6294 defsubr (&Smove_overlay
);
6295 defsubr (&Soverlay_start
);
6296 defsubr (&Soverlay_end
);
6297 defsubr (&Soverlay_buffer
);
6298 defsubr (&Soverlay_properties
);
6299 defsubr (&Soverlays_at
);
6300 defsubr (&Soverlays_in
);
6301 defsubr (&Snext_overlay_change
);
6302 defsubr (&Sprevious_overlay_change
);
6303 defsubr (&Soverlay_recenter
);
6304 defsubr (&Soverlay_lists
);
6305 defsubr (&Soverlay_get
);
6306 defsubr (&Soverlay_put
);
6307 defsubr (&Srestore_buffer_modified_p
);
6313 initial_define_key (control_x_map
, 'b', "switch-to-buffer");
6314 initial_define_key (control_x_map
, 'k', "kill-buffer");
6316 /* This must not be in syms_of_buffer, because Qdisabled is not
6317 initialized when that function gets called. */
6318 Fput (intern ("erase-buffer"), Qdisabled
, Qt
);
6321 /* arch-tag: e48569bf-69a9-4b65-a23b-8e68769436e1
6322 (do not change this comment) */