1 /* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #include <sys/types.h>
24 #include <sys/param.h>
27 /* in 4.1, param.h fails to define this. */
28 #define MAXPATHLEN 1024
29 #endif /* not MAXPATHLEN */
33 #include "intervals.h"
38 #include "blockinput.h"
40 struct buffer
*current_buffer
; /* the current buffer */
42 /* First buffer in chain of all buffers (in reverse order of creation).
43 Threaded through ->next. */
45 struct buffer
*all_buffers
;
47 /* This structure holds the default values of the buffer-local variables
48 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer.
49 The default value occupies the same slot in this structure
50 as an individual buffer's value occupies in that buffer.
51 Setting the default value also goes through the alist of buffers
52 and stores into each buffer that does not say it has a local value. */
54 struct buffer buffer_defaults
;
56 /* A Lisp_Object pointer to the above, used for staticpro */
58 static Lisp_Object Vbuffer_defaults
;
60 /* This structure marks which slots in a buffer have corresponding
61 default values in buffer_defaults.
62 Each such slot has a nonzero value in this structure.
63 The value has only one nonzero bit.
65 When a buffer has its own local value for a slot,
66 the bit for that slot (found in the same slot in this structure)
67 is turned on in the buffer's local_var_flags slot.
69 If a slot in this structure is -1, then even though there may
70 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it;
71 and the corresponding slot in buffer_defaults is not used.
73 If a slot is -2, then there is no DEFVAR_PER_BUFFER for it,
74 but there is a default value which is copied into each buffer.
76 If a slot in this structure is negative, then even though there may
77 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it;
78 and the corresponding slot in buffer_defaults is not used.
80 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is
81 zero, that is a bug */
83 struct buffer buffer_local_flags
;
85 /* This structure holds the names of symbols whose values may be
86 buffer-local. It is indexed and accessed in the same way as the above. */
88 struct buffer buffer_local_symbols
;
89 /* A Lisp_Object pointer to the above, used for staticpro */
90 static Lisp_Object Vbuffer_local_symbols
;
92 /* This structure holds the required types for the values in the
93 buffer-local slots. If a slot contains Qnil, then the
94 corresponding buffer slot may contain a value of any type. If a
95 slot contains an integer, then prospective values' tags must be
96 equal to that integer. When a tag does not match, the function
97 buffer_slot_type_mismatch will signal an error. */
98 struct buffer buffer_local_types
;
100 Lisp_Object
Fset_buffer ();
101 void set_buffer_internal ();
102 static void call_overlay_mod_hooks ();
104 /* Alist of all buffer names vs the buffers. */
105 /* This used to be a variable, but is no longer,
106 to prevent lossage due to user rplac'ing this alist or its elements. */
107 Lisp_Object Vbuffer_alist
;
109 /* Functions to call before and after each text change. */
110 Lisp_Object Vbefore_change_function
;
111 Lisp_Object Vafter_change_function
;
113 Lisp_Object Vtransient_mark_mode
;
115 /* t means ignore all read-only text properties.
116 A list means ignore such a property if its value is a member of the list.
117 Any non-nil value means ignore buffer-read-only. */
118 Lisp_Object Vinhibit_read_only
;
120 /* List of functions to call that can query about killing a buffer.
121 If any of these functions returns nil, we don't kill it. */
122 Lisp_Object Vkill_buffer_query_functions
;
124 /* List of functions to call before changing an unmodified buffer. */
125 Lisp_Object Vfirst_change_hook
;
126 Lisp_Object Qfirst_change_hook
;
128 Lisp_Object Qfundamental_mode
, Qmode_class
, Qpermanent_local
;
130 Lisp_Object Qprotected_field
;
132 Lisp_Object QSFundamental
; /* A string "Fundamental" */
134 Lisp_Object Qkill_buffer_hook
;
136 Lisp_Object Qget_file_buffer
;
138 Lisp_Object Qoverlayp
;
140 Lisp_Object Qpriority
, Qwindow
;
142 Lisp_Object Qmodification_hooks
;
143 Lisp_Object Qinsert_in_front_hooks
;
144 Lisp_Object Qinsert_behind_hooks
;
146 /* For debugging; temporary. See set_buffer_internal. */
147 /* Lisp_Object Qlisp_mode, Vcheck_symbol; */
150 Lisp_Object Qbuffer_file_type
;
156 if (XTYPE (spec
) == Lisp_String
)
157 error ("No buffer named %s", XSTRING (spec
)->data
);
158 error ("Invalid buffer argument");
161 DEFUN ("buffer-list", Fbuffer_list
, Sbuffer_list
, 0, 0, 0,
162 "Return a list of all existing live buffers.")
165 return Fmapcar (Qcdr
, Vbuffer_alist
);
168 DEFUN ("get-buffer", Fget_buffer
, Sget_buffer
, 1, 1, 0,
169 "Return the buffer named NAME (a string).\n\
170 If there is no live buffer named NAME, return nil.\n\
171 NAME may also be a buffer; if so, the value is that buffer.")
173 register Lisp_Object name
;
175 if (XTYPE (name
) == Lisp_Buffer
)
177 CHECK_STRING (name
, 0);
179 return Fcdr (Fassoc (name
, Vbuffer_alist
));
182 DEFUN ("get-file-buffer", Fget_file_buffer
, Sget_file_buffer
, 1, 1, 0,
183 "Return the buffer visiting file FILENAME (a string).\n\
184 The buffer's `buffer-file-name' must match exactly the expansion of FILENAME.\n\
185 If there is no such live buffer, return nil.")
187 register Lisp_Object filename
;
189 register Lisp_Object tail
, buf
, tem
;
192 CHECK_STRING (filename
, 0);
193 filename
= Fexpand_file_name (filename
, Qnil
);
195 /* If the file name has special constructs in it,
196 call the corresponding file handler. */
197 handler
= Ffind_file_name_handler (filename
);
199 return call2 (handler
, Qget_file_buffer
, filename
);
201 for (tail
= Vbuffer_alist
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
203 buf
= Fcdr (XCONS (tail
)->car
);
204 if (XTYPE (buf
) != Lisp_Buffer
) continue;
205 if (XTYPE (XBUFFER (buf
)->filename
) != Lisp_String
) continue;
206 tem
= Fstring_equal (XBUFFER (buf
)->filename
, filename
);
213 /* Incremented for each buffer created, to assign the buffer number. */
216 DEFUN ("get-buffer-create", Fget_buffer_create
, Sget_buffer_create
, 1, 1, 0,
217 "Return the buffer named NAME, or create such a buffer and return it.\n\
218 A new buffer is created if there is no live buffer named NAME.\n\
219 If NAME starts with a space, the new buffer does not keep undo information.\n\
220 If NAME is a buffer instead of a string, then it is the value returned.\n\
221 The value is never nil.")
223 register Lisp_Object name
;
225 register Lisp_Object buf
, function
, tem
;
226 int count
= specpdl_ptr
- specpdl
;
227 register struct buffer
*b
;
229 buf
= Fget_buffer (name
);
233 b
= (struct buffer
*) xmalloc (sizeof (struct buffer
));
235 BUF_GAP_SIZE (b
) = 20;
237 BUFFER_ALLOC (BUF_BEG_ADDR (b
), BUF_GAP_SIZE (b
));
239 if (! BUF_BEG_ADDR (b
))
249 /* Put this on the chain of all buffers including killed ones. */
250 b
->next
= all_buffers
;
253 b
->mark
= Fmake_marker ();
254 /*b->number = make_number (++buffer_count);*/
256 if (XSTRING (name
)->data
[0] != ' ')
263 /* Put this in the alist of all live buffers. */
264 XSET (buf
, Lisp_Buffer
, b
);
265 Vbuffer_alist
= nconc2 (Vbuffer_alist
, Fcons (Fcons (name
, buf
), Qnil
));
267 b
->mark
= Fmake_marker ();
271 function
= buffer_defaults
.major_mode
;
274 tem
= Fget (current_buffer
->major_mode
, Qmode_class
);
276 function
= current_buffer
->major_mode
;
279 if (NILP (function
) || EQ (function
, Qfundamental_mode
))
282 /* To select a nonfundamental mode,
283 select the buffer temporarily and then call the mode function. */
285 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
290 return unbind_to (count
, buf
);
293 /* Reinitialize everything about a buffer except its name and contents. */
297 register struct buffer
*b
;
300 b
->directory
= (current_buffer
) ? current_buffer
->directory
: Qnil
;
302 b
->save_modified
= 1;
303 XFASTINT (b
->save_length
) = 0;
304 b
->last_window_start
= 1;
306 b
->auto_save_modified
= 0;
307 b
->auto_save_failure_time
= -1;
308 b
->auto_save_file_name
= Qnil
;
310 b
->overlays_before
= Qnil
;
311 b
->overlays_after
= Qnil
;
312 XFASTINT (b
->overlay_center
) = 1;
313 b
->mark_active
= Qnil
;
315 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
316 INITIALIZE_INTERVAL (b
, NULL_INTERVAL
);
318 reset_buffer_local_variables(b
);
321 reset_buffer_local_variables (b
)
322 register struct buffer
*b
;
326 /* Reset the major mode to Fundamental, together with all the
327 things that depend on the major mode.
328 default-major-mode is handled at a higher level.
329 We ignore it here. */
330 b
->major_mode
= Qfundamental_mode
;
332 b
->abbrev_table
= Vfundamental_mode_abbrev_table
;
333 b
->mode_name
= QSFundamental
;
334 b
->minor_modes
= Qnil
;
335 b
->downcase_table
= Vascii_downcase_table
;
336 b
->upcase_table
= Vascii_upcase_table
;
337 b
->case_canon_table
= Vascii_downcase_table
;
338 b
->case_eqv_table
= Vascii_upcase_table
;
340 b
->sort_table
= XSTRING (Vascii_sort_table
);
341 b
->folding_sort_table
= XSTRING (Vascii_folding_sort_table
);
344 /* Reset all per-buffer variables to their defaults. */
345 b
->local_var_alist
= Qnil
;
346 b
->local_var_flags
= 0;
348 /* For each slot that has a default value,
349 copy that into the slot. */
351 for (offset
= (char *)&buffer_local_flags
.name
- (char *)&buffer_local_flags
;
352 offset
< sizeof (struct buffer
);
353 offset
+= sizeof (Lisp_Object
)) /* sizeof int == sizeof Lisp_Object */
354 if (*(int *)(offset
+ (char *) &buffer_local_flags
) > 0
355 || *(int *)(offset
+ (char *) &buffer_local_flags
) == -2)
356 *(Lisp_Object
*)(offset
+ (char *)b
) =
357 *(Lisp_Object
*)(offset
+ (char *)&buffer_defaults
);
360 /* We split this away from generate-new-buffer, because rename-buffer
361 and set-visited-file-name ought to be able to use this to really
362 rename the buffer properly. */
364 DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name
, Sgenerate_new_buffer_name
,
366 "Return a string that is the name of no existing buffer based on NAME.\n\
367 If there is no live buffer named NAME, then return NAME.\n\
368 Otherwise modify name by appending `<NUMBER>', incrementing NUMBER\n\
369 until an unused name is found, and then return that name.\n\
370 Optional second argument IGNORE specifies a name that is okay to use\n\
371 \(if it is in the sequence to be tried)\n\
372 even if a buffer with that name exists.")
374 register Lisp_Object name
, ignore
;
376 register Lisp_Object gentemp
, tem
;
380 CHECK_STRING (name
, 0);
382 tem
= Fget_buffer (name
);
389 sprintf (number
, "<%d>", ++count
);
390 gentemp
= concat2 (name
, build_string (number
));
391 tem
= Fstring_equal (gentemp
, ignore
);
394 tem
= Fget_buffer (gentemp
);
401 DEFUN ("buffer-name", Fbuffer_name
, Sbuffer_name
, 0, 1, 0,
402 "Return the name of BUFFER, as a string.\n\
403 With no argument or nil as argument, return the name of the current buffer.")
405 register Lisp_Object buffer
;
408 return current_buffer
->name
;
409 CHECK_BUFFER (buffer
, 0);
410 return XBUFFER (buffer
)->name
;
413 DEFUN ("buffer-file-name", Fbuffer_file_name
, Sbuffer_file_name
, 0, 1, 0,
414 "Return name of file BUFFER is visiting, or nil if none.\n\
415 No argument or nil as argument means use the current buffer.")
417 register Lisp_Object buffer
;
420 return current_buffer
->filename
;
421 CHECK_BUFFER (buffer
, 0);
422 return XBUFFER (buffer
)->filename
;
425 DEFUN ("buffer-local-variables", Fbuffer_local_variables
,
426 Sbuffer_local_variables
, 0, 1, 0,
427 "Return an alist of variables that are buffer-local in BUFFER.\n\
428 Most elements look like (SYMBOL . VALUE), describing one variable.\n\
429 For a symbol that is locally unbound, just the symbol appears in the value.\n\
430 Note that storing new VALUEs in these elements doesn't change the variables.\n\
431 No argument or nil as argument means use current buffer as BUFFER.")
433 register Lisp_Object buffer
;
435 register struct buffer
*buf
;
436 register Lisp_Object result
;
439 buf
= current_buffer
;
442 CHECK_BUFFER (buffer
, 0);
443 buf
= XBUFFER (buffer
);
449 /* Reference each variable in the alist in our current buffer.
450 If inquiring about the current buffer, this gets the current values,
451 so store them into the alist so the alist is up to date.
452 If inquiring about some other buffer, this swaps out any values
453 for that buffer, making the alist up to date automatically. */
454 register Lisp_Object tail
;
455 for (tail
= buf
->local_var_alist
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
457 Lisp_Object val
, elt
;
459 elt
= XCONS (tail
)->car
;
461 if (buf
== current_buffer
)
462 val
= find_symbol_value (XCONS (elt
)->car
);
464 val
= XCONS (elt
)->cdr
;
466 /* If symbol is unbound, put just the symbol in the list. */
467 if (EQ (val
, Qunbound
))
468 result
= Fcons (XCONS (elt
)->car
, result
);
469 /* Otherwise, put (symbol . value) in the list. */
471 result
= Fcons (Fcons (XCONS (elt
)->car
, val
), result
);
475 /* Add on all the variables stored in special slots. */
477 register int offset
, mask
;
479 for (offset
= (char *)&buffer_local_symbols
.name
- (char *)&buffer_local_symbols
;
480 offset
< sizeof (struct buffer
);
481 offset
+= (sizeof (int))) /* sizeof int == sizeof Lisp_Object */
483 mask
= *(int *)(offset
+ (char *) &buffer_local_flags
);
484 if (mask
== -1 || (buf
->local_var_flags
& mask
))
485 if (XTYPE (*(Lisp_Object
*)(offset
+ (char *)&buffer_local_symbols
))
487 result
= Fcons (Fcons (*(Lisp_Object
*)(offset
+ (char *)&buffer_local_symbols
),
488 *(Lisp_Object
*)(offset
+ (char *)buf
)),
497 DEFUN ("buffer-modified-p", Fbuffer_modified_p
, Sbuffer_modified_p
,
499 "Return t if BUFFER was modified since its file was last read or saved.\n\
500 No argument or nil as argument means use current buffer as BUFFER.")
502 register Lisp_Object buffer
;
504 register struct buffer
*buf
;
506 buf
= current_buffer
;
509 CHECK_BUFFER (buffer
, 0);
510 buf
= XBUFFER (buffer
);
513 return buf
->save_modified
< BUF_MODIFF (buf
) ? Qt
: Qnil
;
516 DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p
, Sset_buffer_modified_p
,
518 "Mark current buffer as modified or unmodified according to FLAG.\n\
519 A non-nil FLAG means mark the buffer modified.")
521 register Lisp_Object flag
;
523 register int already
;
524 register Lisp_Object fn
;
526 #ifdef CLASH_DETECTION
527 /* If buffer becoming modified, lock the file.
528 If buffer becoming unmodified, unlock the file. */
530 fn
= current_buffer
->filename
;
533 already
= current_buffer
->save_modified
< MODIFF
;
534 if (!already
&& !NILP (flag
))
536 else if (already
&& NILP (flag
))
539 #endif /* CLASH_DETECTION */
541 current_buffer
->save_modified
= NILP (flag
) ? MODIFF
: 0;
546 DEFUN ("buffer-modified-tick", Fbuffer_modified_tick
, Sbuffer_modified_tick
,
548 "Return BUFFER's tick counter, incremented for each change in text.\n\
549 Each buffer has a tick counter which is incremented each time the text in\n\
550 that buffer is changed. It wraps around occasionally.\n\
551 No argument or nil as argument means use current buffer as BUFFER.")
553 register Lisp_Object buffer
;
555 register struct buffer
*buf
;
557 buf
= current_buffer
;
560 CHECK_BUFFER (buffer
, 0);
561 buf
= XBUFFER (buffer
);
564 return make_number (BUF_MODIFF (buf
));
567 DEFUN ("rename-buffer", Frename_buffer
, Srename_buffer
, 1, 2,
568 "sRename buffer (to new name): \nP",
569 "Change current buffer's name to NEWNAME (a string).\n\
570 If second arg UNIQUE is nil or omitted, it is an error if a\n\
571 buffer named NEWNAME already exists.\n\
572 If UNIQUE is non-nil, come up with a new name using\n\
573 `generate-new-buffer-name'.\n\
574 Interactively, you can set UNIQUE with a prefix argument.\n\
575 We return the name we actually gave the buffer.\n\
576 This does not change the name of the visited file (if any).")
578 register Lisp_Object name
, unique
;
580 register Lisp_Object tem
, buf
;
582 CHECK_STRING (name
, 0);
583 tem
= Fget_buffer (name
);
584 /* Don't short-circuit if UNIQUE is t. That is a useful way to rename
585 the buffer automatically so you can create another with the original name.
586 It makes UNIQUE equivalent to
587 (rename-buffer (generate-new-buffer-name NAME)). */
588 if (NILP (unique
) && XBUFFER (tem
) == current_buffer
)
589 return current_buffer
->name
;
593 name
= Fgenerate_new_buffer_name (name
, current_buffer
->name
);
595 error ("Buffer name \"%s\" is in use", XSTRING (name
)->data
);
598 current_buffer
->name
= name
;
600 /* Catch redisplay's attention. Unless we do this, the mode lines for
601 any windows displaying current_buffer will stay unchanged. */
604 XSET (buf
, Lisp_Buffer
, current_buffer
);
605 Fsetcar (Frassq (buf
, Vbuffer_alist
), name
);
606 if (NILP (current_buffer
->filename
) && !NILP (current_buffer
->auto_save_file_name
))
607 call0 (intern ("rename-auto-save-file"));
611 DEFUN ("other-buffer", Fother_buffer
, Sother_buffer
, 0, 2, 0,
612 "Return most recently selected buffer other than BUFFER.\n\
613 Buffers not visible in windows are preferred to visible buffers,\n\
614 unless optional second argument VISIBLE-OK is non-nil.\n\
615 If no other buffer exists, the buffer `*scratch*' is returned.\n\
616 If BUFFER is omitted or nil, some interesting buffer is returned.")
618 register Lisp_Object buffer
, visible_ok
;
620 register Lisp_Object tail
, buf
, notsogood
, tem
;
623 for (tail
= Vbuffer_alist
; !NILP (tail
); tail
= Fcdr (tail
))
625 buf
= Fcdr (Fcar (tail
));
626 if (EQ (buf
, buffer
))
628 if (XSTRING (XBUFFER (buf
)->name
)->data
[0] == ' ')
630 if (NILP (visible_ok
))
631 tem
= Fget_buffer_window (buf
, Qt
);
636 if (NILP (notsogood
))
639 if (!NILP (notsogood
))
641 return Fget_buffer_create (build_string ("*scratch*"));
644 DEFUN ("buffer-disable-undo", Fbuffer_disable_undo
, Sbuffer_disable_undo
, 0, 1,
646 "Make BUFFER stop keeping undo information.\n\
647 No argument or nil as argument means do this for the current buffer.")
649 register Lisp_Object buffer
;
651 Lisp_Object real_buffer
;
654 XSET (real_buffer
, Lisp_Buffer
, current_buffer
);
657 real_buffer
= Fget_buffer (buffer
);
658 if (NILP (real_buffer
))
662 XBUFFER (real_buffer
)->undo_list
= Qt
;
667 DEFUN ("buffer-enable-undo", Fbuffer_enable_undo
, Sbuffer_enable_undo
,
669 "Start keeping undo information for buffer BUFFER.\n\
670 No argument or nil as argument means do this for the current buffer.")
672 register Lisp_Object buffer
;
674 Lisp_Object real_buffer
;
677 XSET (real_buffer
, Lisp_Buffer
, current_buffer
);
680 real_buffer
= Fget_buffer (buffer
);
681 if (NILP (real_buffer
))
685 if (EQ (XBUFFER (real_buffer
)->undo_list
, Qt
))
686 XBUFFER (real_buffer
)->undo_list
= Qnil
;
692 DEFVAR_LISP ("kill-buffer-hook", no_cell, "\
693 Hook to be run (by `run-hooks', which see) when a buffer is killed.\n\
694 The buffer being killed will be current while the hook is running.\n\
697 DEFUN ("kill-buffer", Fkill_buffer
, Skill_buffer
, 1, 1, "bKill buffer: ",
698 "Kill the buffer BUFFER.\n\
699 The argument may be a buffer or may be the name of a buffer.\n\
700 An argument of nil means kill the current buffer.\n\n\
701 Value is t if the buffer is actually killed, nil if user says no.\n\n\
702 The value of `kill-buffer-hook' (which may be local to that buffer),\n\
703 if not void, is a list of functions to be called, with no arguments,\n\
704 before the buffer is actually killed. The buffer to be killed is current\n\
705 when the hook functions are called.\n\n\
706 Any processes that have this buffer as the `process-buffer' are killed\n\
707 with `delete-process'.")
712 register struct buffer
*b
;
713 register Lisp_Object tem
;
714 register struct Lisp_Marker
*m
;
715 struct gcpro gcpro1
, gcpro2
;
718 buf
= Fcurrent_buffer ();
720 buf
= Fget_buffer (bufname
);
726 /* Query if the buffer is still modified. */
727 if (INTERACTIVE
&& !NILP (b
->filename
)
728 && BUF_MODIFF (b
) > b
->save_modified
)
730 GCPRO2 (buf
, bufname
);
731 tem
= do_yes_or_no_p (format1 ("Buffer %s modified; kill anyway? ",
732 XSTRING (b
->name
)->data
));
738 /* Run hooks with the buffer to be killed the current buffer. */
740 register Lisp_Object val
;
741 int count
= specpdl_ptr
- specpdl
;
744 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
745 set_buffer_internal (b
);
747 /* First run the query functions; if any query is answered no,
748 don't kill the buffer. */
749 for (list
= Vkill_buffer_query_functions
; !NILP (list
); list
= Fcdr (list
))
751 tem
= call0 (Fcar (list
));
753 return unbind_to (count
, Qnil
);
756 /* Then run the hooks. */
757 if (!NILP (Vrun_hooks
))
758 call1 (Vrun_hooks
, Qkill_buffer_hook
);
759 unbind_to (count
, Qnil
);
762 /* We have no more questions to ask. Verify that it is valid
763 to kill the buffer. This must be done after the questions
764 since anything can happen within do_yes_or_no_p. */
766 /* Don't kill the minibuffer now current. */
767 if (EQ (buf
, XWINDOW (minibuf_window
)->buffer
))
773 /* Make this buffer not be current.
774 In the process, notice if this is the sole visible buffer
775 and give up if so. */
776 if (b
== current_buffer
)
778 tem
= Fother_buffer (buf
, Qnil
);
780 if (b
== current_buffer
)
784 /* Now there is no question: we can kill the buffer. */
786 #ifdef CLASH_DETECTION
787 /* Unlock this buffer's file, if it is locked. */
789 #endif /* CLASH_DETECTION */
791 kill_buffer_processes (buf
);
795 Vbuffer_alist
= Fdelq (Frassq (buf
, Vbuffer_alist
), Vbuffer_alist
);
796 Freplace_buffer_in_windows (buf
);
799 /* Delete any auto-save file. */
800 if (XTYPE (b
->auto_save_file_name
) == Lisp_String
)
803 tem
= Fsymbol_value (intern ("delete-auto-save-files"));
805 unlink (XSTRING (b
->auto_save_file_name
)->data
);
808 /* Unchain all markers of this buffer
809 and leave them pointing nowhere. */
810 for (tem
= b
->markers
; !EQ (tem
, Qnil
); )
819 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
820 INITIALIZE_INTERVAL (b
, NULL_INTERVAL
);
821 /* Perhaps we should explicitly free the interval tree here... */
825 BUFFER_FREE (BUF_BEG_ADDR (b
));
832 /* Move the assoc for buffer BUF to the front of buffer-alist. Since
833 we do this each time BUF is selected visibly, the more recently
834 selected buffers are always closer to the front of the list. This
835 means that other_buffer is more likely to choose a relevant buffer. */
840 register Lisp_Object link
, prev
;
843 for (link
= Vbuffer_alist
; CONSP (link
); link
= XCONS (link
)->cdr
)
845 if (EQ (XCONS (XCONS (link
)->car
)->cdr
, buf
))
850 /* Effectively do Vbuffer_alist = Fdelq (link, Vbuffer_alist);
851 we cannot use Fdelq itself here because it allows quitting. */
854 Vbuffer_alist
= XCONS (Vbuffer_alist
)->cdr
;
856 XCONS (prev
)->cdr
= XCONS (XCONS (prev
)->cdr
)->cdr
;
858 XCONS(link
)->cdr
= Vbuffer_alist
;
859 Vbuffer_alist
= link
;
862 DEFUN ("switch-to-buffer", Fswitch_to_buffer
, Sswitch_to_buffer
, 1, 2, "BSwitch to buffer: ",
863 "Select buffer BUFFER in the current window.\n\
864 BUFFER may be a buffer or a buffer name.\n\
865 Optional second arg NORECORD non-nil means\n\
866 do not put this buffer at the front of the list of recently selected ones.\n\
868 WARNING: This is NOT the way to work on another buffer temporarily\n\
869 within a Lisp program! Use `set-buffer' instead. That avoids messing with\n\
870 the window-buffer correspondences.")
872 Lisp_Object bufname
, norecord
;
874 register Lisp_Object buf
;
877 if (EQ (minibuf_window
, selected_window
))
878 error ("Cannot switch buffers in minibuffer window");
879 tem
= Fwindow_dedicated_p (selected_window
);
881 error ("Cannot switch buffers in a dedicated window");
884 buf
= Fother_buffer (Fcurrent_buffer (), Qnil
);
886 buf
= Fget_buffer_create (bufname
);
891 Fset_window_buffer (EQ (selected_window
, minibuf_window
)
892 ? Fnext_window (minibuf_window
, Qnil
, Qnil
)
899 DEFUN ("pop-to-buffer", Fpop_to_buffer
, Spop_to_buffer
, 1, 2, 0,
900 "Select buffer BUFFER in some window, preferably a different one.\n\
901 If BUFFER is nil, then some other buffer is chosen.\n\
902 If `pop-up-windows' is non-nil, windows can be split to do this.\n\
903 If optional second arg OTHER-WINDOW is non-nil, insist on finding another\n\
904 window even if BUFFER is already visible in the selected window.")
906 Lisp_Object bufname
, other
;
908 register Lisp_Object buf
;
910 buf
= Fother_buffer (Fcurrent_buffer (), Qnil
);
912 buf
= Fget_buffer_create (bufname
);
915 Fselect_window (Fdisplay_buffer (buf
, other
));
919 DEFUN ("current-buffer", Fcurrent_buffer
, Scurrent_buffer
, 0, 0, 0,
920 "Return the current buffer as a Lisp object.")
923 register Lisp_Object buf
;
924 XSET (buf
, Lisp_Buffer
, current_buffer
);
928 /* Set the current buffer to b */
931 set_buffer_internal (b
)
932 register struct buffer
*b
;
934 register struct buffer
*old_buf
;
935 register Lisp_Object tail
, valcontents
;
938 if (current_buffer
== b
)
941 windows_or_buffers_changed
= 1;
942 old_buf
= current_buffer
;
944 last_known_column_point
= -1; /* invalidate indentation cache */
946 /* Look down buffer's list of local Lisp variables
947 to find and update any that forward into C variables. */
949 for (tail
= b
->local_var_alist
; !NILP (tail
); tail
= XCONS (tail
)->cdr
)
951 valcontents
= XSYMBOL (XCONS (XCONS (tail
)->car
)->car
)->value
;
952 if ((XTYPE (valcontents
) == Lisp_Buffer_Local_Value
953 || XTYPE (valcontents
) == Lisp_Some_Buffer_Local_Value
)
954 && (tem
= XTYPE (XCONS (valcontents
)->car
),
955 (tem
== Lisp_Boolfwd
|| tem
== Lisp_Intfwd
956 || tem
== Lisp_Objfwd
)))
957 /* Just reference the variable
958 to cause it to become set for this buffer. */
959 Fsymbol_value (XCONS (XCONS (tail
)->car
)->car
);
962 /* Do the same with any others that were local to the previous buffer */
965 for (tail
= old_buf
->local_var_alist
; !NILP (tail
); tail
= XCONS (tail
)->cdr
)
967 valcontents
= XSYMBOL (XCONS (XCONS (tail
)->car
)->car
)->value
;
968 if ((XTYPE (valcontents
) == Lisp_Buffer_Local_Value
969 || XTYPE (valcontents
) == Lisp_Some_Buffer_Local_Value
)
970 && (tem
= XTYPE (XCONS (valcontents
)->car
),
971 (tem
== Lisp_Boolfwd
|| tem
== Lisp_Intfwd
972 || tem
== Lisp_Objfwd
)))
973 /* Just reference the variable
974 to cause it to become set for this buffer. */
975 Fsymbol_value (XCONS (XCONS (tail
)->car
)->car
);
979 DEFUN ("set-buffer", Fset_buffer
, Sset_buffer
, 1, 1, 0,
980 "Make the buffer BUFFER current for editing operations.\n\
981 BUFFER may be a buffer or the name of an existing buffer.\n\
982 See also `save-excursion' when you want to make a buffer current temporarily.\n\
983 This function does not display the buffer, so its effect ends\n\
984 when the current command terminates.\n\
985 Use `switch-to-buffer' or `pop-to-buffer' to switch buffers permanently.")
987 register Lisp_Object bufname
;
989 register Lisp_Object buffer
;
990 buffer
= Fget_buffer (bufname
);
993 if (NILP (XBUFFER (buffer
)->name
))
994 error ("Selecting deleted buffer");
995 set_buffer_internal (XBUFFER (buffer
));
999 DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only
,
1000 Sbarf_if_buffer_read_only
, 0, 0, 0,
1001 "Signal a `buffer-read-only' error if the current buffer is read-only.")
1004 if (!NILP (current_buffer
->read_only
)
1005 && NILP (Vinhibit_read_only
))
1006 Fsignal (Qbuffer_read_only
, (Fcons (Fcurrent_buffer (), Qnil
)));
1010 DEFUN ("bury-buffer", Fbury_buffer
, Sbury_buffer
, 0, 1, "",
1011 "Put BUFFER at the end of the list of all buffers.\n\
1012 There it is the least likely candidate for `other-buffer' to return;\n\
1013 thus, the least likely buffer for \\[switch-to-buffer] to select by default.\n\
1014 If BUFFER is nil or omitted, bury the current buffer.\n\
1015 Also, if BUFFER is nil or omitted, remove the current buffer from the\n\
1016 selected window if it is displayed there.")
1018 register Lisp_Object buf
;
1020 /* Figure out what buffer we're going to bury. */
1023 XSET (buf
, Lisp_Buffer
, current_buffer
);
1025 /* If we're burying the current buffer, unshow it. */
1026 Fswitch_to_buffer (Fother_buffer (buf
, Qnil
), Qnil
);
1032 buf1
= Fget_buffer (buf
);
1038 /* Move buf to the end of the buffer list. */
1040 register Lisp_Object aelt
, link
;
1042 aelt
= Frassq (buf
, Vbuffer_alist
);
1043 link
= Fmemq (aelt
, Vbuffer_alist
);
1044 Vbuffer_alist
= Fdelq (aelt
, Vbuffer_alist
);
1045 XCONS (link
)->cdr
= Qnil
;
1046 Vbuffer_alist
= nconc2 (Vbuffer_alist
, link
);
1052 DEFUN ("erase-buffer", Ferase_buffer
, Serase_buffer
, 0, 0, "*",
1053 "Delete the entire contents of the current buffer.\n\
1054 Any narrowing restriction in effect (see `narrow-to-region') is removed,\n\
1055 so the buffer is truly empty after this.")
1060 current_buffer
->last_window_start
= 1;
1061 /* Prevent warnings, or suspension of auto saving, that would happen
1062 if future size is less than past size. Use of erase-buffer
1063 implies that the future text is not really related to the past text. */
1064 XFASTINT (current_buffer
->save_length
) = 0;
1068 validate_region (b
, e
)
1069 register Lisp_Object
*b
, *e
;
1073 CHECK_NUMBER_COERCE_MARKER (*b
, 0);
1074 CHECK_NUMBER_COERCE_MARKER (*e
, 1);
1076 if (XINT (*b
) > XINT (*e
))
1078 i
= XFASTINT (*b
); /* This is legit even if *b is < 0 */
1080 XFASTINT (*e
) = i
; /* because this is all we do with i. */
1083 if (!(BEGV
<= XINT (*b
) && XINT (*b
) <= XINT (*e
)
1084 && XINT (*e
) <= ZV
))
1085 args_out_of_range (*b
, *e
);
1089 list_buffers_1 (files
)
1092 register Lisp_Object tail
, tem
, buf
;
1093 Lisp_Object col1
, col2
, col3
, minspace
;
1094 register struct buffer
*old
= current_buffer
, *b
;
1095 Lisp_Object desired_point
;
1096 Lisp_Object other_file_symbol
;
1098 desired_point
= Qnil
;
1099 other_file_symbol
= intern ("list-buffers-directory");
1101 XFASTINT (col1
) = 19;
1102 XFASTINT (col2
) = 25;
1103 XFASTINT (col3
) = 40;
1104 XFASTINT (minspace
) = 1;
1106 Fset_buffer (Vstandard_output
);
1108 tail
= intern ("Buffer-menu-mode");
1109 if (!EQ (tail
, current_buffer
->major_mode
)
1110 && (tem
= Ffboundp (tail
), !NILP (tem
)))
1112 Fbuffer_disable_undo (Vstandard_output
);
1113 current_buffer
->read_only
= Qnil
;
1116 MR Buffer Size Mode File\n\
1117 -- ------ ---- ---- ----\n", -1);
1119 for (tail
= Vbuffer_alist
; !NILP (tail
); tail
= Fcdr (tail
))
1121 buf
= Fcdr (Fcar (tail
));
1123 /* Don't mention the minibuffers. */
1124 if (XSTRING (b
->name
)->data
[0] == ' ')
1126 /* Optionally don't mention buffers that lack files. */
1127 if (!NILP (files
) && NILP (b
->filename
))
1129 /* Identify the current buffer. */
1131 XFASTINT (desired_point
) = point
;
1132 write_string (b
== old
? "." : " ", -1);
1133 /* Identify modified buffers */
1134 write_string (BUF_MODIFF (b
) > b
->save_modified
? "*" : " ", -1);
1135 write_string (NILP (b
->read_only
) ? " " : "% ", -1);
1136 Fprinc (b
->name
, Qnil
);
1137 Findent_to (col1
, make_number (2));
1138 XFASTINT (tem
) = BUF_Z (b
) - BUF_BEG (b
);
1140 Findent_to (col2
, minspace
);
1141 Fprinc (b
->mode_name
, Qnil
);
1142 Findent_to (col3
, minspace
);
1144 if (!NILP (b
->filename
))
1145 Fprinc (b
->filename
, Qnil
);
1148 /* No visited file; check local value of list-buffers-directory. */
1150 set_buffer_internal (b
);
1151 tem
= Fboundp (other_file_symbol
);
1154 tem
= Fsymbol_value (other_file_symbol
);
1155 Fset_buffer (Vstandard_output
);
1156 if (XTYPE (tem
) == Lisp_String
)
1160 Fset_buffer (Vstandard_output
);
1162 write_string ("\n", -1);
1165 current_buffer
->read_only
= Qt
;
1166 set_buffer_internal (old
);
1167 return desired_point
;
1170 DEFUN ("list-buffers", Flist_buffers
, Slist_buffers
, 0, 1, "P",
1171 "Display a list of names of existing buffers.\n\
1172 The list is displayed in a buffer named `*Buffer List*'.\n\
1173 Note that buffers with names starting with spaces are omitted.\n\
1174 Non-null optional arg FILES-ONLY means mention only file buffers.\n\
1176 The M column contains a * for buffers that are modified.\n\
1177 The R column contains a % for buffers that are read-only.")
1181 Lisp_Object desired_point
;
1184 = internal_with_output_to_temp_buffer ("*Buffer List*",
1185 list_buffers_1
, files
);
1187 if (NUMBERP (desired_point
))
1189 int count
= specpdl_ptr
- specpdl
;
1190 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
1191 Fset_buffer (build_string ("*Buffer List*"));
1192 SET_PT (XINT (desired_point
));
1193 return unbind_to (count
, Qnil
);
1198 DEFUN ("kill-all-local-variables", Fkill_all_local_variables
, Skill_all_local_variables
,
1200 "Switch to Fundamental mode by killing current buffer's local variables.\n\
1201 Most local variable bindings are eliminated so that the default values\n\
1202 become effective once more. Also, the syntax table is set from\n\
1203 `standard-syntax-table', the local keymap is set to nil,\n\
1204 and the abbrev table from `fundamental-mode-abbrev-table'.\n\
1205 This function also forces redisplay of the mode line.\n\
1207 Every function to select a new major mode starts by\n\
1208 calling this function.\n\n\
1209 As a special exception, local variables whose names have\n\
1210 a non-nil `permanent-local' property are not eliminated by this function.")
1213 register Lisp_Object alist
, sym
, tem
;
1216 if (!NILP (Vrun_hooks
))
1217 call1 (Vrun_hooks
, intern ("change-major-mode-hook"));
1218 oalist
= current_buffer
->local_var_alist
;
1220 /* Make sure no local variables remain set up with this buffer
1221 for their current values. */
1223 for (alist
= oalist
; !NILP (alist
); alist
= XCONS (alist
)->cdr
)
1225 sym
= XCONS (XCONS (alist
)->car
)->car
;
1227 /* Need not do anything if some other buffer's binding is now encached. */
1228 tem
= XCONS (XCONS (XSYMBOL (sym
)->value
)->cdr
)->car
;
1229 if (XBUFFER (tem
) == current_buffer
)
1231 /* Symbol is set up for this buffer's old local value.
1232 Set it up for the current buffer with the default value. */
1234 tem
= XCONS (XCONS (XSYMBOL (sym
)->value
)->cdr
)->cdr
;
1235 /* Store the symbol's current value into the alist entry
1236 it is currently set up for. This is so that, if the
1237 local is marked permanent, and we make it local again below,
1238 we don't lose the value. */
1239 XCONS (XCONS (tem
)->car
)->cdr
1240 = do_symval_forwarding (XCONS (XSYMBOL (sym
)->value
)->car
);
1241 /* Switch to the symbol's default-value alist entry. */
1242 XCONS (tem
)->car
= tem
;
1243 /* Mark it as current for the current buffer. */
1244 XCONS (XCONS (XSYMBOL (sym
)->value
)->cdr
)->car
= Fcurrent_buffer ();
1245 /* Store the current value into any forwarding in the symbol. */
1246 store_symval_forwarding (sym
, XCONS (XSYMBOL (sym
)->value
)->car
,
1251 /* Actually eliminate all local bindings of this buffer. */
1253 reset_buffer_local_variables (current_buffer
);
1255 /* Redisplay mode lines; we are changing major mode. */
1257 update_mode_lines
++;
1259 /* Any which are supposed to be permanent,
1260 make local again, with the same values they had. */
1262 for (alist
= oalist
; !NILP (alist
); alist
= XCONS (alist
)->cdr
)
1264 sym
= XCONS (XCONS (alist
)->car
)->car
;
1265 tem
= Fget (sym
, Qpermanent_local
);
1268 Fmake_local_variable (sym
);
1269 Fset (sym
, XCONS (XCONS (alist
)->car
)->cdr
);
1273 /* Force mode-line redisplay. Useful here because all major mode
1274 commands call this function. */
1275 update_mode_lines
++;
1280 /* Find all the overlays in the current buffer that contain position POS.
1281 Return the number found, and store them in a vector in *VEC_PTR.
1282 Store in *LEN_PTR the size allocated for the vector.
1283 Store in *NEXT_PTR the next position after POS where an overlay starts,
1284 or ZV if there are no more overlays.
1286 *VEC_PTR and *LEN_PTR should contain a valid vector and size
1287 when this function is called.
1289 If EXTEND is non-zero, we make the vector bigger if necessary.
1290 If EXTEND is zero, we never extend the vector,
1291 and we store only as many overlays as will fit.
1292 But we still return the total number of overlays. */
1295 overlays_at (pos
, extend
, vec_ptr
, len_ptr
, next_ptr
)
1298 Lisp_Object
**vec_ptr
;
1302 Lisp_Object tail
, overlay
, start
, end
, result
;
1305 Lisp_Object
*vec
= *vec_ptr
;
1307 int inhibit_storing
= 0;
1309 for (tail
= current_buffer
->overlays_before
;
1311 tail
= XCONS (tail
)->cdr
)
1315 overlay
= XCONS (tail
)->car
;
1316 if (! OVERLAY_VALID (overlay
))
1319 start
= OVERLAY_START (overlay
);
1320 end
= OVERLAY_END (overlay
);
1321 if (OVERLAY_POSITION (end
) <= pos
)
1323 startpos
= OVERLAY_POSITION (start
);
1324 if (startpos
<= pos
)
1328 /* The supplied vector is full.
1329 Either make it bigger, or don't store any more in it. */
1332 *len_ptr
= len
*= 2;
1333 vec
= (Lisp_Object
*) xrealloc (vec
, len
* sizeof (Lisp_Object
));
1337 inhibit_storing
= 1;
1340 if (!inhibit_storing
)
1342 /* Keep counting overlays even if we can't return them all. */
1345 else if (startpos
< next
)
1349 for (tail
= current_buffer
->overlays_after
;
1351 tail
= XCONS (tail
)->cdr
)
1355 overlay
= XCONS (tail
)->car
;
1356 if (! OVERLAY_VALID (overlay
))
1359 start
= OVERLAY_START (overlay
);
1360 end
= OVERLAY_END (overlay
);
1361 startpos
= OVERLAY_POSITION (start
);
1364 if (startpos
< next
)
1368 if (pos
< OVERLAY_POSITION (end
))
1374 *len_ptr
= len
*= 2;
1375 vec
= (Lisp_Object
*) xrealloc (vec
, len
* sizeof (Lisp_Object
));
1379 inhibit_storing
= 1;
1382 if (!inhibit_storing
)
1394 Lisp_Object overlay
;
1400 compare_overlays (s1
, s2
)
1401 struct sortvec
*s1
, *s2
;
1403 if (s1
->priority
!= s2
->priority
)
1404 return s1
->priority
- s2
->priority
;
1405 if (s1
->beg
!= s2
->beg
)
1406 return s1
->beg
- s2
->beg
;
1407 if (s1
->end
!= s2
->end
)
1408 return s2
->end
- s1
->end
;
1412 /* Sort an array of overlays by priority. The array is modified in place.
1413 The return value is the new size; this may be smaller than the original
1414 size if some of the overlays were invalid or were window-specific. */
1416 sort_overlays (overlay_vec
, noverlays
, w
)
1417 Lisp_Object
*overlay_vec
;
1422 struct sortvec
*sortvec
;
1423 sortvec
= (struct sortvec
*) alloca (noverlays
* sizeof (struct sortvec
));
1425 /* Put the valid and relevant overlays into sortvec. */
1427 for (i
= 0, j
= 0; i
< noverlays
; i
++)
1430 Lisp_Object overlay
;
1432 overlay
= overlay_vec
[i
];
1433 if (OVERLAY_VALID (overlay
)
1434 && OVERLAY_POSITION (OVERLAY_START (overlay
)) > 0
1435 && OVERLAY_POSITION (OVERLAY_END (overlay
)) > 0)
1437 /* If we're interested in a specific window, then ignore
1438 overlays that are limited to some other window. */
1443 window
= Foverlay_get (overlay
, Qwindow
);
1444 if (XTYPE (window
) == Lisp_Window
&& XWINDOW (window
) != w
)
1448 /* This overlay is good and counts: put it into sortvec. */
1449 sortvec
[j
].overlay
= overlay
;
1450 sortvec
[j
].beg
= OVERLAY_POSITION (OVERLAY_START (overlay
));
1451 sortvec
[j
].end
= OVERLAY_POSITION (OVERLAY_END (overlay
));
1452 tem
= Foverlay_get (overlay
, Qpriority
);
1454 sortvec
[j
].priority
= XINT (tem
);
1456 sortvec
[j
].priority
= 0;
1462 /* Sort the overlays into the proper order: increasing priority. */
1465 qsort (sortvec
, noverlays
, sizeof (struct sortvec
), compare_overlays
);
1467 for (i
= 0; i
< noverlays
; i
++)
1468 overlay_vec
[i
] = sortvec
[i
].overlay
;
1472 /* Shift overlays in BUF's overlay lists, to center the lists at POS. */
1475 recenter_overlay_lists (buf
, pos
)
1479 Lisp_Object overlay
, tail
, next
, prev
, beg
, end
;
1481 /* See if anything in overlays_before should move to overlays_after. */
1483 /* We don't strictly need prev in this loop; it should always be nil.
1484 But we use it for symmetry and in case that should cease to be true
1485 with some future change. */
1487 for (tail
= buf
->overlays_before
;
1489 prev
= tail
, tail
= next
)
1491 next
= XCONS (tail
)->cdr
;
1492 overlay
= XCONS (tail
)->car
;
1494 /* If the overlay is not valid, get rid of it. */
1495 if (!OVERLAY_VALID (overlay
))
1500 /* Splice the cons cell TAIL out of overlays_before. */
1502 XCONS (prev
)->cdr
= next
;
1504 buf
->overlays_before
= next
;
1510 beg
= OVERLAY_START (overlay
);
1511 end
= OVERLAY_END (overlay
);
1513 if (OVERLAY_POSITION (end
) > pos
)
1515 /* OVERLAY needs to be moved. */
1516 int where
= OVERLAY_POSITION (beg
);
1517 Lisp_Object other
, other_prev
;
1519 /* Splice the cons cell TAIL out of overlays_before. */
1521 XCONS (prev
)->cdr
= next
;
1523 buf
->overlays_before
= next
;
1525 /* Search thru overlays_after for where to put it. */
1527 for (other
= buf
->overlays_after
;
1529 other_prev
= other
, other
= XCONS (other
)->cdr
)
1531 Lisp_Object otherbeg
, otheroverlay
, follower
;
1534 otheroverlay
= XCONS (other
)->car
;
1535 if (! OVERLAY_VALID (otheroverlay
))
1538 otherbeg
= OVERLAY_START (otheroverlay
);
1539 if (OVERLAY_POSITION (otherbeg
) >= where
)
1543 /* Add TAIL to overlays_after before OTHER. */
1544 XCONS (tail
)->cdr
= other
;
1545 if (!NILP (other_prev
))
1546 XCONS (other_prev
)->cdr
= tail
;
1548 buf
->overlays_after
= tail
;
1552 /* We've reached the things that should stay in overlays_before.
1553 All the rest of overlays_before must end even earlier,
1558 /* See if anything in overlays_after should be in overlays_before. */
1560 for (tail
= buf
->overlays_after
;
1562 prev
= tail
, tail
= next
)
1564 next
= XCONS (tail
)->cdr
;
1565 overlay
= XCONS (tail
)->car
;
1567 /* If the overlay is not valid, get rid of it. */
1568 if (!OVERLAY_VALID (overlay
))
1573 /* Splice the cons cell TAIL out of overlays_after. */
1575 XCONS (prev
)->cdr
= next
;
1577 buf
->overlays_after
= next
;
1583 beg
= OVERLAY_START (overlay
);
1584 end
= OVERLAY_END (overlay
);
1586 /* Stop looking, when we know that nothing further
1587 can possibly end before POS. */
1588 if (OVERLAY_POSITION (beg
) > pos
)
1591 if (OVERLAY_POSITION (end
) <= pos
)
1593 /* OVERLAY needs to be moved. */
1594 int where
= OVERLAY_POSITION (end
);
1595 Lisp_Object other
, other_prev
;
1597 /* Splice the cons cell TAIL out of overlays_after. */
1599 XCONS (prev
)->cdr
= next
;
1601 buf
->overlays_after
= next
;
1603 /* Search thru overlays_before for where to put it. */
1605 for (other
= buf
->overlays_before
;
1607 other_prev
= other
, other
= XCONS (other
)->cdr
)
1609 Lisp_Object otherend
, otheroverlay
;
1612 otheroverlay
= XCONS (other
)->car
;
1613 if (! OVERLAY_VALID (otheroverlay
))
1616 otherend
= OVERLAY_END (otheroverlay
);
1617 if (OVERLAY_POSITION (otherend
) <= where
)
1621 /* Add TAIL to overlays_before before OTHER. */
1622 XCONS (tail
)->cdr
= other
;
1623 if (!NILP (other_prev
))
1624 XCONS (other_prev
)->cdr
= tail
;
1626 buf
->overlays_before
= tail
;
1631 XFASTINT (buf
->overlay_center
) = pos
;
1634 DEFUN ("overlayp", Foverlayp
, Soverlayp
, 1, 1, 0,
1635 "Return t if OBJECT is an overlay.")
1639 return (OVERLAYP (object
) ? Qt
: Qnil
);
1642 DEFUN ("make-overlay", Fmake_overlay
, Smake_overlay
, 2, 3, 0,
1643 "Create a new overlay with range BEG to END in BUFFER.\n\
1644 If omitted, BUFFER defaults to the current buffer.\n\
1645 BEG and END may be integers or markers.")
1647 Lisp_Object beg
, end
, buffer
;
1649 Lisp_Object overlay
;
1653 XSET (buffer
, Lisp_Buffer
, current_buffer
);
1655 CHECK_BUFFER (buffer
, 2);
1657 && ! EQ (Fmarker_buffer (beg
), buffer
))
1658 error ("Marker points into wrong buffer");
1660 && ! EQ (Fmarker_buffer (end
), buffer
))
1661 error ("Marker points into wrong buffer");
1663 CHECK_NUMBER_COERCE_MARKER (beg
, 1);
1664 CHECK_NUMBER_COERCE_MARKER (end
, 1);
1666 if (XINT (beg
) > XINT (end
))
1669 temp
= beg
; beg
= end
; end
= temp
;
1672 b
= XBUFFER (buffer
);
1674 beg
= Fset_marker (Fmake_marker (), beg
, buffer
);
1675 end
= Fset_marker (Fmake_marker (), end
, buffer
);
1677 overlay
= Fcons (Fcons (beg
, end
), Qnil
);
1678 XSETTYPE (overlay
, Lisp_Overlay
);
1680 /* Put the new overlay on the wrong list. */
1681 end
= OVERLAY_END (overlay
);
1682 if (OVERLAY_POSITION (end
) < XINT (b
->overlay_center
))
1683 b
->overlays_after
= Fcons (overlay
, b
->overlays_after
);
1685 b
->overlays_before
= Fcons (overlay
, b
->overlays_before
);
1687 /* This puts it in the right list, and in the right order. */
1688 recenter_overlay_lists (b
, XINT (b
->overlay_center
));
1690 /* We don't need to redisplay the region covered by the overlay, because
1691 the overlay has no properties at the moment. */
1696 DEFUN ("move-overlay", Fmove_overlay
, Smove_overlay
, 3, 4, 0,
1697 "Set the endpoints of OVERLAY to BEG and END in BUFFER.\n\
1698 If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.\n\
1699 If BUFFER is omitted, and OVERLAY is in no buffer, put it in the current\n\
1701 (overlay
, beg
, end
, buffer
)
1702 Lisp_Object overlay
, beg
, end
, buffer
;
1704 struct buffer
*b
, *ob
;
1705 Lisp_Object obuffer
;
1706 int count
= specpdl_ptr
- specpdl
;
1708 CHECK_OVERLAY (overlay
, 0);
1710 buffer
= Fmarker_buffer (OVERLAY_START (overlay
));
1712 XSET (buffer
, Lisp_Buffer
, current_buffer
);
1713 CHECK_BUFFER (buffer
, 3);
1716 && ! EQ (Fmarker_buffer (beg
), buffer
))
1717 error ("Marker points into wrong buffer");
1719 && ! EQ (Fmarker_buffer (end
), buffer
))
1720 error ("Marker points into wrong buffer");
1722 CHECK_NUMBER_COERCE_MARKER (beg
, 1);
1723 CHECK_NUMBER_COERCE_MARKER (end
, 1);
1725 specbind (Qinhibit_quit
, Qt
);
1727 if (XINT (beg
) > XINT (end
))
1730 temp
= beg
; beg
= end
; end
= temp
;
1733 obuffer
= Fmarker_buffer (OVERLAY_START (overlay
));
1734 b
= XBUFFER (buffer
);
1735 ob
= XBUFFER (obuffer
);
1737 /* If the overlay has changed buffers, do a thorough redisplay. */
1738 if (!EQ (buffer
, obuffer
))
1739 windows_or_buffers_changed
= 1;
1741 /* Redisplay the area the overlay has just left, or just enclosed. */
1745 int change_beg
, change_end
;
1747 o_beg
= OVERLAY_START (overlay
);
1748 o_end
= OVERLAY_END (overlay
);
1749 o_beg
= OVERLAY_POSITION (o_beg
);
1750 o_end
= OVERLAY_POSITION (o_end
);
1752 if (XINT (o_beg
) == XINT (beg
))
1753 redisplay_region (b
, XINT (o_end
), XINT (end
));
1754 else if (XINT (o_end
) == XINT (end
))
1755 redisplay_region (b
, XINT (o_beg
), XINT (beg
));
1758 if (XINT (beg
) < XINT (o_beg
)) o_beg
= beg
;
1759 if (XINT (end
) > XINT (o_end
)) o_end
= end
;
1760 redisplay_region (b
, XINT (o_beg
), XINT (o_end
));
1764 if (!NILP (obuffer
))
1766 ob
->overlays_before
= Fdelq (overlay
, ob
->overlays_before
);
1767 ob
->overlays_after
= Fdelq (overlay
, ob
->overlays_after
);
1770 Fset_marker (OVERLAY_START (overlay
), beg
, buffer
);
1771 Fset_marker (OVERLAY_END (overlay
), end
, buffer
);
1773 /* Put the overlay on the wrong list. */
1774 end
= OVERLAY_END (overlay
);
1775 if (OVERLAY_POSITION (end
) < XINT (b
->overlay_center
))
1776 b
->overlays_after
= Fcons (overlay
, b
->overlays_after
);
1778 b
->overlays_before
= Fcons (overlay
, b
->overlays_before
);
1780 /* This puts it in the right list, and in the right order. */
1781 recenter_overlay_lists (b
, XINT (b
->overlay_center
));
1783 return unbind_to (count
, overlay
);
1786 DEFUN ("delete-overlay", Fdelete_overlay
, Sdelete_overlay
, 1, 1, 0,
1787 "Delete the overlay OVERLAY from its buffer.")
1789 Lisp_Object overlay
;
1793 int count
= specpdl_ptr
- specpdl
;
1795 CHECK_OVERLAY (overlay
, 0);
1797 buffer
= Fmarker_buffer (OVERLAY_START (overlay
));
1801 b
= XBUFFER (buffer
);
1803 specbind (Qinhibit_quit
, Qt
);
1805 b
->overlays_before
= Fdelq (overlay
, b
->overlays_before
);
1806 b
->overlays_after
= Fdelq (overlay
, b
->overlays_after
);
1808 redisplay_region (b
,
1809 marker_position (OVERLAY_START (overlay
)),
1810 marker_position (OVERLAY_END (overlay
)));
1812 Fset_marker (OVERLAY_START (overlay
), Qnil
, Qnil
);
1813 Fset_marker (OVERLAY_END (overlay
), Qnil
, Qnil
);
1815 return unbind_to (count
, Qnil
);
1818 /* Overlay dissection functions. */
1820 DEFUN ("overlay-start", Foverlay_start
, Soverlay_start
, 1, 1, 0,
1821 "Return the position at which OVERLAY starts.")
1823 Lisp_Object overlay
;
1825 CHECK_OVERLAY (overlay
, 0);
1827 return (Fmarker_position (OVERLAY_START (overlay
)));
1830 DEFUN ("overlay-end", Foverlay_end
, Soverlay_end
, 1, 1, 0,
1831 "Return the position at which OVERLAY ends.")
1833 Lisp_Object overlay
;
1835 CHECK_OVERLAY (overlay
, 0);
1837 return (Fmarker_position (OVERLAY_END (overlay
)));
1840 DEFUN ("overlay-buffer", Foverlay_buffer
, Soverlay_buffer
, 1, 1, 0,
1841 "Return the buffer OVERLAY belongs to.")
1843 Lisp_Object overlay
;
1845 CHECK_OVERLAY (overlay
, 0);
1847 return Fmarker_buffer (OVERLAY_START (overlay
));
1850 DEFUN ("overlay-properties", Foverlay_properties
, Soverlay_properties
, 1, 1, 0,
1851 "Return a list of the properties on OVERLAY.\n\
1852 This is a copy of OVERLAY's plist; modifying its conses has no effect on\n\
1855 Lisp_Object overlay
;
1857 CHECK_OVERLAY (overlay
, 0);
1859 return Fcopy_sequence (Fcdr_safe (XCONS (overlay
)->cdr
));
1863 DEFUN ("overlays-at", Foverlays_at
, Soverlays_at
, 1, 1, 0,
1864 "Return a list of the overlays that contain position POS.")
1870 Lisp_Object
*overlay_vec
;
1874 CHECK_NUMBER_COERCE_MARKER (pos
, 0);
1877 overlay_vec
= (Lisp_Object
*) xmalloc (len
* sizeof (Lisp_Object
));
1879 /* Put all the overlays we want in a vector in overlay_vec.
1880 Store the length in len. */
1881 noverlays
= overlays_at (XINT (pos
), 1, &overlay_vec
, &len
, &endpos
);
1883 /* Make a list of them all. */
1884 result
= Flist (noverlays
, overlay_vec
);
1886 xfree (overlay_vec
);
1890 DEFUN ("next-overlay-change", Fnext_overlay_change
, Snext_overlay_change
,
1892 "Return the next position after POS where an overlay starts or ends.")
1898 Lisp_Object
*overlay_vec
;
1903 CHECK_NUMBER_COERCE_MARKER (pos
, 0);
1906 overlay_vec
= (Lisp_Object
*) xmalloc (len
* sizeof (Lisp_Object
));
1908 /* Put all the overlays we want in a vector in overlay_vec.
1909 Store the length in len.
1910 endpos gets the position where the next overlay starts. */
1911 noverlays
= overlays_at (XINT (pos
), 1, &overlay_vec
, &len
, &endpos
);
1913 /* If any of these overlays ends before endpos,
1914 use its ending point instead. */
1915 for (i
= 0; i
< noverlays
; i
++)
1920 oend
= OVERLAY_END (overlay_vec
[i
]);
1921 oendpos
= OVERLAY_POSITION (oend
);
1922 if (oendpos
< endpos
)
1926 xfree (overlay_vec
);
1927 return make_number (endpos
);
1930 /* These functions are for debugging overlays. */
1932 DEFUN ("overlay-lists", Foverlay_lists
, Soverlay_lists
, 0, 0, 0,
1933 "Return a pair of lists giving all the overlays of the current buffer.\n\
1934 The car has all the overlays before the overlay center;\n\
1935 the cdr has all the overlays before the overlay center.\n\
1936 Recentering overlays moves overlays between these lists.\n\
1937 The lists you get are copies, so that changing them has no effect.\n\
1938 However, the overlays you get are the real objects that the buffer uses.")
1941 Lisp_Object before
, after
;
1942 before
= current_buffer
->overlays_before
;
1944 before
= Fcopy_sequence (before
);
1945 after
= current_buffer
->overlays_after
;
1947 after
= Fcopy_sequence (after
);
1949 return Fcons (before
, after
);
1952 DEFUN ("overlay-recenter", Foverlay_recenter
, Soverlay_recenter
, 1, 1, 0,
1953 "Recenter the overlays of the current buffer around position POS.")
1957 CHECK_NUMBER_COERCE_MARKER (pos
, 0);
1959 recenter_overlay_lists (current_buffer
, XINT (pos
));
1963 DEFUN ("overlay-get", Foverlay_get
, Soverlay_get
, 2, 2, 0,
1964 "Get the property of overlay OVERLAY with property name NAME.")
1966 Lisp_Object overlay
, prop
;
1970 CHECK_OVERLAY (overlay
, 0);
1972 for (plist
= Fcdr_safe (XCONS (overlay
)->cdr
);
1973 CONSP (plist
) && CONSP (XCONS (plist
)->cdr
);
1974 plist
= XCONS (XCONS (plist
)->cdr
)->cdr
)
1976 if (EQ (XCONS (plist
)->car
, prop
))
1977 return XCONS (XCONS (plist
)->cdr
)->car
;
1983 DEFUN ("overlay-put", Foverlay_put
, Soverlay_put
, 3, 3, 0,
1984 "Set one property of overlay OVERLAY: give property PROP value VALUE.")
1985 (overlay
, prop
, value
)
1986 Lisp_Object overlay
, prop
, value
;
1988 Lisp_Object plist
, tail
;
1990 CHECK_OVERLAY (overlay
, 0);
1992 tail
= Fmarker_buffer (OVERLAY_START (overlay
));
1994 redisplay_region (XMARKER (OVERLAY_START (overlay
))->buffer
,
1995 marker_position (OVERLAY_START (overlay
)),
1996 marker_position (OVERLAY_END (overlay
)));
1998 plist
= Fcdr_safe (XCONS (overlay
)->cdr
);
2001 CONSP (tail
) && CONSP (XCONS (tail
)->cdr
);
2002 tail
= XCONS (XCONS (tail
)->cdr
)->cdr
)
2004 if (EQ (XCONS (tail
)->car
, prop
))
2005 return XCONS (XCONS (tail
)->cdr
)->car
= value
;
2008 if (! CONSP (XCONS (overlay
)->cdr
))
2009 XCONS (overlay
)->cdr
= Fcons (Qnil
, Qnil
);
2011 XCONS (XCONS (overlay
)->cdr
)->cdr
2012 = Fcons (prop
, Fcons (value
, plist
));
2017 /* Run the modification-hooks of overlays that include
2018 any part of the text in START to END.
2019 Run the insert-before-hooks of overlay starting at END,
2020 and the insert-after-hooks of overlay ending at START. */
2023 verify_overlay_modification (start
, end
)
2024 Lisp_Object start
, end
;
2026 Lisp_Object prop
, overlay
, tail
;
2027 int insertion
= EQ (start
, end
);
2029 for (tail
= current_buffer
->overlays_before
;
2031 tail
= XCONS (tail
)->cdr
)
2033 int startpos
, endpos
;
2034 Lisp_Object ostart
, oend
;
2036 overlay
= XCONS (tail
)->car
;
2038 ostart
= OVERLAY_START (overlay
);
2039 oend
= OVERLAY_END (overlay
);
2040 endpos
= OVERLAY_POSITION (oend
);
2041 if (XFASTINT (start
) > endpos
)
2043 startpos
= OVERLAY_POSITION (ostart
);
2044 if (XFASTINT (end
) == startpos
&& insertion
)
2046 prop
= Foverlay_get (overlay
, Qinsert_in_front_hooks
);
2047 call_overlay_mod_hooks (prop
, overlay
, start
, end
);
2049 if (XFASTINT (start
) == endpos
&& insertion
)
2051 prop
= Foverlay_get (overlay
, Qinsert_behind_hooks
);
2052 call_overlay_mod_hooks (prop
, overlay
, start
, end
);
2055 ? (XFASTINT (start
) > startpos
&& XFASTINT (end
) < endpos
)
2056 : (XFASTINT (start
) >= startpos
&& XFASTINT (end
) <= endpos
))
2058 prop
= Foverlay_get (overlay
, Qmodification_hooks
);
2059 call_overlay_mod_hooks (prop
, overlay
, start
, end
);
2063 for (tail
= current_buffer
->overlays_after
;
2065 tail
= XCONS (tail
)->cdr
)
2067 int startpos
, endpos
;
2068 Lisp_Object ostart
, oend
;
2070 overlay
= XCONS (tail
)->car
;
2072 ostart
= OVERLAY_START (overlay
);
2073 oend
= OVERLAY_END (overlay
);
2074 startpos
= OVERLAY_POSITION (ostart
);
2075 endpos
= OVERLAY_POSITION (oend
);
2076 if (XFASTINT (end
) < startpos
)
2078 if (XFASTINT (end
) == startpos
&& insertion
)
2080 prop
= Foverlay_get (overlay
, Qinsert_in_front_hooks
);
2081 call_overlay_mod_hooks (prop
, overlay
, start
, end
);
2083 if (XFASTINT (start
) == endpos
&& insertion
)
2085 prop
= Foverlay_get (overlay
, Qinsert_behind_hooks
);
2086 call_overlay_mod_hooks (prop
, overlay
, start
, end
);
2089 ? (XFASTINT (start
) > startpos
&& XFASTINT (end
) < endpos
)
2090 : (XFASTINT (start
) >= startpos
&& XFASTINT (end
) <= endpos
))
2092 prop
= Foverlay_get (overlay
, Qmodification_hooks
);
2093 call_overlay_mod_hooks (prop
, overlay
, start
, end
);
2099 call_overlay_mod_hooks (list
, overlay
, start
, end
)
2100 Lisp_Object list
, overlay
, start
, end
;
2102 struct gcpro gcpro1
;
2104 while (!NILP (list
))
2106 call3 (Fcar (list
), overlay
, start
, end
);
2112 /* Somebody has tried to store NEWVAL into the buffer-local slot with
2113 offset XUINT (valcontents), and NEWVAL has an unacceptable type. */
2115 buffer_slot_type_mismatch (valcontents
, newval
)
2116 Lisp_Object valcontents
, newval
;
2118 unsigned int offset
= XUINT (valcontents
);
2119 unsigned char *symbol_name
=
2120 (XSYMBOL (*(Lisp_Object
*)(offset
+ (char *)&buffer_local_symbols
))
2124 switch (XINT (*(Lisp_Object
*)(offset
+ (char *)&buffer_local_types
)))
2126 case Lisp_Int
: type_name
= "integers"; break;
2127 case Lisp_String
: type_name
= "strings"; break;
2128 case Lisp_Marker
: type_name
= "markers"; break;
2129 case Lisp_Symbol
: type_name
= "symbols"; break;
2130 case Lisp_Cons
: type_name
= "lists"; break;
2131 case Lisp_Vector
: type_name
= "vectors"; break;
2136 error ("only %s should be stored in the buffer-local variable %s",
2137 type_name
, symbol_name
);
2142 register Lisp_Object tem
;
2144 /* Make sure all markable slots in buffer_defaults
2145 are initialized reasonably, so mark_buffer won't choke. */
2146 reset_buffer (&buffer_defaults
);
2147 reset_buffer (&buffer_local_symbols
);
2148 XSET (Vbuffer_defaults
, Lisp_Buffer
, &buffer_defaults
);
2149 XSET (Vbuffer_local_symbols
, Lisp_Buffer
, &buffer_local_symbols
);
2151 /* Set up the default values of various buffer slots. */
2152 /* Must do these before making the first buffer! */
2154 /* real setup is done in loaddefs.el */
2155 buffer_defaults
.mode_line_format
= build_string ("%-");
2156 buffer_defaults
.abbrev_mode
= Qnil
;
2157 buffer_defaults
.overwrite_mode
= Qnil
;
2158 buffer_defaults
.case_fold_search
= Qt
;
2159 buffer_defaults
.auto_fill_function
= Qnil
;
2160 buffer_defaults
.selective_display
= Qnil
;
2162 buffer_defaults
.selective_display_ellipses
= Qt
;
2164 buffer_defaults
.abbrev_table
= Qnil
;
2165 buffer_defaults
.display_table
= Qnil
;
2166 buffer_defaults
.undo_list
= Qnil
;
2167 buffer_defaults
.mark_active
= Qnil
;
2168 buffer_defaults
.overlays_before
= Qnil
;
2169 buffer_defaults
.overlays_after
= Qnil
;
2170 XFASTINT (buffer_defaults
.overlay_center
) = 1;
2172 XFASTINT (buffer_defaults
.tab_width
) = 8;
2173 buffer_defaults
.truncate_lines
= Qnil
;
2174 buffer_defaults
.ctl_arrow
= Qt
;
2177 buffer_defaults
.buffer_file_type
= 0; /* TEXT */
2179 XFASTINT (buffer_defaults
.fill_column
) = 70;
2180 XFASTINT (buffer_defaults
.left_margin
) = 0;
2182 /* Assign the local-flags to the slots that have default values.
2183 The local flag is a bit that is used in the buffer
2184 to say that it has its own local value for the slot.
2185 The local flag bits are in the local_var_flags slot of the buffer. */
2187 /* Nothing can work if this isn't true */
2188 if (sizeof (int) != sizeof (Lisp_Object
)) abort ();
2190 /* 0 means not a lisp var, -1 means always local, else mask */
2191 bzero (&buffer_local_flags
, sizeof buffer_local_flags
);
2192 XFASTINT (buffer_local_flags
.filename
) = -1;
2193 XFASTINT (buffer_local_flags
.directory
) = -1;
2194 XFASTINT (buffer_local_flags
.backed_up
) = -1;
2195 XFASTINT (buffer_local_flags
.save_length
) = -1;
2196 XFASTINT (buffer_local_flags
.auto_save_file_name
) = -1;
2197 XFASTINT (buffer_local_flags
.read_only
) = -1;
2198 XFASTINT (buffer_local_flags
.major_mode
) = -1;
2199 XFASTINT (buffer_local_flags
.mode_name
) = -1;
2200 XFASTINT (buffer_local_flags
.undo_list
) = -1;
2201 XFASTINT (buffer_local_flags
.mark_active
) = -1;
2203 XFASTINT (buffer_local_flags
.mode_line_format
) = 1;
2204 XFASTINT (buffer_local_flags
.abbrev_mode
) = 2;
2205 XFASTINT (buffer_local_flags
.overwrite_mode
) = 4;
2206 XFASTINT (buffer_local_flags
.case_fold_search
) = 8;
2207 XFASTINT (buffer_local_flags
.auto_fill_function
) = 0x10;
2208 XFASTINT (buffer_local_flags
.selective_display
) = 0x20;
2210 XFASTINT (buffer_local_flags
.selective_display_ellipses
) = 0x40;
2212 XFASTINT (buffer_local_flags
.tab_width
) = 0x80;
2213 XFASTINT (buffer_local_flags
.truncate_lines
) = 0x100;
2214 XFASTINT (buffer_local_flags
.ctl_arrow
) = 0x200;
2215 XFASTINT (buffer_local_flags
.fill_column
) = 0x400;
2216 XFASTINT (buffer_local_flags
.left_margin
) = 0x800;
2217 XFASTINT (buffer_local_flags
.abbrev_table
) = 0x1000;
2218 XFASTINT (buffer_local_flags
.display_table
) = 0x2000;
2219 XFASTINT (buffer_local_flags
.syntax_table
) = 0x8000;
2221 XFASTINT (buffer_local_flags
.buffer_file_type
) = 0x4000;
2224 Vbuffer_alist
= Qnil
;
2228 QSFundamental
= build_string ("Fundamental");
2230 Qfundamental_mode
= intern ("fundamental-mode");
2231 buffer_defaults
.major_mode
= Qfundamental_mode
;
2233 Qmode_class
= intern ("mode-class");
2235 Qprotected_field
= intern ("protected-field");
2237 Qpermanent_local
= intern ("permanent-local");
2239 Qkill_buffer_hook
= intern ("kill-buffer-hook");
2241 Vprin1_to_string_buffer
= Fget_buffer_create (build_string (" prin1"));
2242 /* super-magic invisible buffer */
2243 Vbuffer_alist
= Qnil
;
2245 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
2250 char buf
[MAXPATHLEN
+1];
2252 struct stat dotstat
, pwdstat
;
2255 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
2257 /* If PWD is accurate, use it instead of calling getwd. This is faster
2258 when PWD is right, and may avoid a fatal error. */
2259 if ((pwd
= getenv ("PWD")) != 0 && *pwd
== '/'
2260 && stat (pwd
, &pwdstat
) == 0
2261 && stat (".", &dotstat
) == 0
2262 && dotstat
.st_ino
== pwdstat
.st_ino
2263 && dotstat
.st_dev
== pwdstat
.st_dev
2264 && strlen (pwd
) < MAXPATHLEN
)
2266 else if (getwd (buf
) == 0)
2267 fatal ("`getwd' failed: %s.\n", buf
);
2270 /* Maybe this should really use some standard subroutine
2271 whose definition is filename syntax dependent. */
2272 if (buf
[strlen (buf
) - 1] != '/')
2274 #endif /* not VMS */
2275 current_buffer
->directory
= build_string (buf
);
2277 temp
= get_minibuffer (0);
2278 XBUFFER (temp
)->directory
= current_buffer
->directory
;
2281 /* initialize the buffer routines */
2284 extern Lisp_Object Qdisabled
;
2286 staticpro (&Vbuffer_defaults
);
2287 staticpro (&Vbuffer_local_symbols
);
2288 staticpro (&Qfundamental_mode
);
2289 staticpro (&Qmode_class
);
2290 staticpro (&QSFundamental
);
2291 staticpro (&Vbuffer_alist
);
2292 staticpro (&Qprotected_field
);
2293 staticpro (&Qpermanent_local
);
2294 staticpro (&Qkill_buffer_hook
);
2295 staticpro (&Qoverlayp
);
2296 staticpro (&Qmodification_hooks
);
2297 Qmodification_hooks
= intern ("modification-hooks");
2298 staticpro (&Qinsert_in_front_hooks
);
2299 Qinsert_in_front_hooks
= intern ("insert-in-front-hooks");
2300 staticpro (&Qinsert_behind_hooks
);
2301 Qinsert_behind_hooks
= intern ("insert-behind-hooks");
2302 staticpro (&Qget_file_buffer
);
2303 Qget_file_buffer
= intern ("get-file-buffer");
2304 Qpriority
= intern ("priority");
2305 staticpro (&Qpriority
);
2306 Qwindow
= intern ("window");
2307 staticpro (&Qwindow
);
2309 Qoverlayp
= intern ("overlayp");
2311 Fput (Qprotected_field
, Qerror_conditions
,
2312 Fcons (Qprotected_field
, Fcons (Qerror
, Qnil
)));
2313 Fput (Qprotected_field
, Qerror_message
,
2314 build_string ("Attempt to modify a protected field"));
2316 /* All these use DEFVAR_LISP_NOPRO because the slots in
2317 buffer_defaults will all be marked via Vbuffer_defaults. */
2319 DEFVAR_LISP_NOPRO ("default-mode-line-format",
2320 &buffer_defaults
.mode_line_format
,
2321 "Default value of `mode-line-format' for buffers that don't override it.\n\
2322 This is the same as (default-value 'mode-line-format).");
2324 DEFVAR_LISP_NOPRO ("default-abbrev-mode",
2325 &buffer_defaults
.abbrev_mode
,
2326 "Default value of `abbrev-mode' for buffers that do not override it.\n\
2327 This is the same as (default-value 'abbrev-mode).");
2329 DEFVAR_LISP_NOPRO ("default-ctl-arrow",
2330 &buffer_defaults
.ctl_arrow
,
2331 "Default value of `ctl-arrow' for buffers that do not override it.\n\
2332 This is the same as (default-value 'ctl-arrow).");
2334 DEFVAR_LISP_NOPRO ("default-truncate-lines",
2335 &buffer_defaults
.truncate_lines
,
2336 "Default value of `truncate-lines' for buffers that do not override it.\n\
2337 This is the same as (default-value 'truncate-lines).");
2339 DEFVAR_LISP_NOPRO ("default-fill-column",
2340 &buffer_defaults
.fill_column
,
2341 "Default value of `fill-column' for buffers that do not override it.\n\
2342 This is the same as (default-value 'fill-column).");
2344 DEFVAR_LISP_NOPRO ("default-left-margin",
2345 &buffer_defaults
.left_margin
,
2346 "Default value of `left-margin' for buffers that do not override it.\n\
2347 This is the same as (default-value 'left-margin).");
2349 DEFVAR_LISP_NOPRO ("default-tab-width",
2350 &buffer_defaults
.tab_width
,
2351 "Default value of `tab-width' for buffers that do not override it.\n\
2352 This is the same as (default-value 'tab-width).");
2354 DEFVAR_LISP_NOPRO ("default-case-fold-search",
2355 &buffer_defaults
.case_fold_search
,
2356 "Default value of `case-fold-search' for buffers that don't override it.\n\
2357 This is the same as (default-value 'case-fold-search).");
2360 DEFVAR_LISP_NOPRO ("default-buffer-file-type",
2361 &buffer_defaults
.buffer_file_type
,
2362 "Default file type for buffers that do not override it.\n\
2363 This is the same as (default-value 'buffer-file-type).\n\
2364 The file type is nil for text, t for binary.");
2367 DEFVAR_PER_BUFFER ("mode-line-format", ¤t_buffer
->mode_line_format
,
2370 /* This doc string is too long for cpp; cpp dies if it isn't in a comment.
2371 But make-docfile finds it!
2372 DEFVAR_PER_BUFFER ("mode-line-format", ¤t_buffer->mode_line_format,
2374 "Template for displaying mode line for current buffer.\n\
2375 Each buffer has its own value of this variable.\n\
2376 Value may be a string, a symbol or a list or cons cell.\n\
2377 For a symbol, its value is used (but it is ignored if t or nil).\n\
2378 A string appearing directly as the value of a symbol is processed verbatim\n\
2379 in that the %-constructs below are not recognized.\n\
2380 For a list whose car is a symbol, the symbol's value is taken,\n\
2381 and if that is non-nil, the cadr of the list is processed recursively.\n\
2382 Otherwise, the caddr of the list (if there is one) is processed.\n\
2383 For a list whose car is a string or list, each element is processed\n\
2384 recursively and the results are effectively concatenated.\n\
2385 For a list whose car is an integer, the cdr of the list is processed\n\
2386 and padded (if the number is positive) or truncated (if negative)\n\
2387 to the width specified by that number.\n\
2388 A string is printed verbatim in the mode line except for %-constructs:\n\
2389 (%-constructs are allowed when the string is the entire mode-line-format\n\
2390 or when it is found in a cons-cell or a list)\n\
2391 %b -- print buffer name. %f -- print visited file name.\n\
2392 %* -- print *, % or hyphen. %m -- print value of mode-name (obsolete).\n\
2393 %s -- print process status. %l -- print the current line number.\n\
2394 %p -- print percent of buffer above top of window, or Top, Bot or All.\n\
2395 %p -- print percent of buffer above bottom of window, perhaps plus Top,\n\
2396 or print Bottom or All.\n\
2397 %n -- print Narrow if appropriate.\n\
2398 %t -- print T if files is text, B if binary.\n\
2399 %[ -- print one [ for each recursive editing level. %] similar.\n\
2400 %% -- print %. %- -- print infinitely many dashes.\n\
2401 Decimal digits after the % specify field width to which to pad.");
2404 DEFVAR_LISP_NOPRO ("default-major-mode", &buffer_defaults
.major_mode
,
2405 "*Major mode for new buffers. Defaults to `fundamental-mode'.\n\
2406 nil here means use current buffer's major mode.");
2408 DEFVAR_PER_BUFFER ("major-mode", ¤t_buffer
->major_mode
,
2409 make_number (Lisp_Symbol
),
2410 "Symbol for current buffer's major mode.");
2412 DEFVAR_PER_BUFFER ("mode-name", ¤t_buffer
->mode_name
,
2413 make_number (Lisp_String
),
2414 "Pretty name of current buffer's major mode (a string).");
2416 DEFVAR_PER_BUFFER ("abbrev-mode", ¤t_buffer
->abbrev_mode
, Qnil
,
2417 "Non-nil turns on automatic expansion of abbrevs as they are inserted.\n\
2418 Automatically becomes buffer-local when set in any fashion.");
2420 DEFVAR_PER_BUFFER ("case-fold-search", ¤t_buffer
->case_fold_search
,
2422 "*Non-nil if searches should ignore case.\n\
2423 Automatically becomes buffer-local when set in any fashion.");
2425 DEFVAR_PER_BUFFER ("fill-column", ¤t_buffer
->fill_column
,
2426 make_number (Lisp_Int
),
2427 "*Column beyond which automatic line-wrapping should happen.\n\
2428 Automatically becomes buffer-local when set in any fashion.");
2430 DEFVAR_PER_BUFFER ("left-margin", ¤t_buffer
->left_margin
,
2431 make_number (Lisp_Int
),
2432 "*Column for the default indent-line-function to indent to.\n\
2433 Linefeed indents to this column in Fundamental mode.\n\
2434 Automatically becomes buffer-local when set in any fashion.");
2436 DEFVAR_PER_BUFFER ("tab-width", ¤t_buffer
->tab_width
,
2437 make_number (Lisp_Int
),
2438 "*Distance between tab stops (for display of tab characters), in columns.\n\
2439 Automatically becomes buffer-local when set in any fashion.");
2441 DEFVAR_PER_BUFFER ("ctl-arrow", ¤t_buffer
->ctl_arrow
, Qnil
,
2442 "*Non-nil means display control chars with uparrow.\n\
2443 Nil means use backslash and octal digits.\n\
2444 Automatically becomes buffer-local when set in any fashion.\n\
2445 This variable does not apply to characters whose display is specified\n\
2446 in the current display table (if there is one).");
2448 DEFVAR_PER_BUFFER ("truncate-lines", ¤t_buffer
->truncate_lines
, Qnil
,
2449 "*Non-nil means do not display continuation lines;\n\
2450 give each line of text one screen line.\n\
2451 Automatically becomes buffer-local when set in any fashion.\n\
2453 Note that this is overridden by the variable\n\
2454 `truncate-partial-width-windows' if that variable is non-nil\n\
2455 and this buffer is not full-frame width.");
2458 DEFVAR_PER_BUFFER ("buffer-file-type", ¤t_buffer
->buffer_file_type
,
2460 "*If visited file is text, nil; otherwise, t.");
2463 DEFVAR_PER_BUFFER ("default-directory", ¤t_buffer
->directory
,
2464 make_number (Lisp_String
),
2465 "Name of default directory of current buffer. Should end with slash.\n\
2466 Each buffer has its own value of this variable.");
2468 DEFVAR_PER_BUFFER ("auto-fill-function", ¤t_buffer
->auto_fill_function
,
2470 "Function called (if non-nil) to perform auto-fill.\n\
2471 It is called after self-inserting a space at a column beyond `fill-column'.\n\
2472 Each buffer has its own value of this variable.\n\
2473 NOTE: This variable is not an ordinary hook;\n\
2474 It may not be a list of functions.");
2476 DEFVAR_PER_BUFFER ("buffer-file-name", ¤t_buffer
->filename
,
2477 make_number (Lisp_String
),
2478 "Name of file visited in current buffer, or nil if not visiting a file.\n\
2479 Each buffer has its own value of this variable.");
2481 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
2482 ¤t_buffer
->auto_save_file_name
,
2483 make_number (Lisp_String
),
2484 "Name of file for auto-saving current buffer,\n\
2485 or nil if buffer should not be auto-saved.\n\
2486 Each buffer has its own value of this variable.");
2488 DEFVAR_PER_BUFFER ("buffer-read-only", ¤t_buffer
->read_only
, Qnil
,
2489 "Non-nil if this buffer is read-only.\n\
2490 Each buffer has its own value of this variable.");
2492 DEFVAR_PER_BUFFER ("buffer-backed-up", ¤t_buffer
->backed_up
, Qnil
,
2493 "Non-nil if this buffer's file has been backed up.\n\
2494 Backing up is done before the first time the file is saved.\n\
2495 Each buffer has its own value of this variable.");
2497 DEFVAR_PER_BUFFER ("buffer-saved-size", ¤t_buffer
->save_length
,
2498 make_number (Lisp_Int
),
2499 "Length of current buffer when last read in, saved or auto-saved.\n\
2501 Each buffer has its own value of this variable.");
2503 DEFVAR_PER_BUFFER ("selective-display", ¤t_buffer
->selective_display
,
2505 "Non-nil enables selective display:\n\
2506 Integer N as value means display only lines\n\
2507 that start with less than n columns of space.\n\
2508 A value of t means, after a ^M, all the rest of the line is invisible.\n\
2509 Then ^M's in the file are written into files as newlines.\n\n\
2510 Automatically becomes buffer-local when set in any fashion.");
2513 DEFVAR_PER_BUFFER ("selective-display-ellipses",
2514 ¤t_buffer
->selective_display_ellipses
,
2516 "t means display ... on previous line when a line is invisible.\n\
2517 Automatically becomes buffer-local when set in any fashion.");
2520 DEFVAR_PER_BUFFER ("overwrite-mode", ¤t_buffer
->overwrite_mode
, Qnil
,
2521 "Non-nil if self-insertion should replace existing text.\n\
2522 If non-nil and not `overwrite-mode-binary', self-insertion still\n\
2523 inserts at the end of a line, and inserts when point is before a tab,\n\
2524 until the tab is filled in.\n\
2525 If `overwrite-mode-binary', self-insertion replaces newlines and tabs too.\n\
2526 Automatically becomes buffer-local when set in any fashion.");
2528 #if 0 /* The doc string is too long for some compilers,
2529 but make-docfile can find it in this comment. */
2530 DEFVAR_PER_BUFFER ("buffer-display-table", ¤t_buffer
->display_table
,
2532 "Display table that controls display of the contents of current buffer.\n\
2533 Automatically becomes buffer-local when set in any fashion.\n\
2534 The display table is a vector created with `make-display-table'.\n\
2535 The first 256 elements control how to display each possible text character.\n\
2536 Each value should be a vector of characters or nil;\n\
2537 nil means display the character in the default fashion.\n\
2538 The remaining five elements control the display of\n\
2539 the end of a truncated screen line (element 256, a single character);\n\
2540 the end of a continued line (element 257, a single character);\n\
2541 the escape character used to display character codes in octal\n\
2542 (element 258, a single character);\n\
2543 the character used as an arrow for control characters (element 259,\n\
2544 a single character);\n\
2545 the decoration indicating the presence of invisible lines (element 260,\n\
2546 a vector of characters).\n\
2547 If this variable is nil, the value of `standard-display-table' is used.\n\
2548 Each window can have its own, overriding display table.");
2550 DEFVAR_PER_BUFFER ("buffer-display-table", ¤t_buffer
->display_table
,
2553 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
2556 DEFVAR_LISP ("before-change-function", &Vbefore_change_function
,
2557 "Function to call before each text change.\n\
2558 Two arguments are passed to the function: the positions of\n\
2559 the beginning and end of the range of old text to be changed.\n\
2560 \(For an insertion, the beginning and end are at the same place.)\n\
2561 No information is given about the length of the text after the change.\n\
2562 position of the change\n\
2564 While executing the `before-change-function', changes to buffers do not\n\
2565 cause calls to any `before-change-function' or `after-change-function'.");
2566 Vbefore_change_function
= Qnil
;
2568 DEFVAR_LISP ("after-change-function", &Vafter_change_function
,
2569 "Function to call after each text change.\n\
2570 Three arguments are passed to the function: the positions of\n\
2571 the beginning and end of the range of changed text,\n\
2572 and the length of the pre-change text replaced by that range.\n\
2573 \(For an insertion, the pre-change length is zero;\n\
2574 for a deletion, that length is the number of characters deleted,\n\
2575 and the post-change beginning and end are at the same place.)\n\
2577 While executing the `after-change-function', changes to buffers do not\n\
2578 cause calls to any `before-change-function' or `after-change-function'.");
2579 Vafter_change_function
= Qnil
;
2581 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook
,
2582 "A list of functions to call before changing a buffer which is unmodified.\n\
2583 The functions are run using the `run-hooks' function.");
2584 Vfirst_change_hook
= Qnil
;
2585 Qfirst_change_hook
= intern ("first-change-hook");
2586 staticpro (&Qfirst_change_hook
);
2588 #if 0 /* The doc string is too long for some compilers,
2589 but make-docfile can find it in this comment. */
2590 DEFVAR_PER_BUFFER ("buffer-undo-list", ¤t_buffer
->undo_list
, Qnil
,
2591 "List of undo entries in current buffer.\n\
2592 Recent changes come first; older changes follow newer.\n\
2594 An entry (START . END) represents an insertion which begins at\n\
2595 position START and ends at position END.\n\
2597 An entry (TEXT . POSITION) represents the deletion of the string TEXT\n\
2598 from (abs POSITION). If POSITION is positive, point was at the front\n\
2599 of the text being deleted; if negative, point was at the end.\n\
2601 An entry (t HIGHWORD LOWWORD) indicates that the buffer had been\n\
2602 previously unmodified. HIGHWORD and LOWWORD are the high and low\n\
2603 16-bit words of the buffer's modification count at the time. If the\n\
2604 modification count of the most recent save is different, this entry is\n\
2607 An entry (nil PROP VAL BEG . END) indicates that a text property\n\
2608 was modified between BEG and END. PROP is the property name,\n\
2609 and VAL is the old value.\n\
2611 An entry of the form POSITION indicates that point was at the buffer\n\
2612 location given by the integer. Undoing an entry of this form places\n\
2613 point at POSITION.\n\
2615 nil marks undo boundaries. The undo command treats the changes\n\
2616 between two undo boundaries as a single step to be undone.\n\
2618 If the value of the variable is t, undo information is not recorded.");
2620 DEFVAR_PER_BUFFER ("buffer-undo-list", ¤t_buffer
->undo_list
, Qnil
,
2623 DEFVAR_PER_BUFFER ("mark-active", ¤t_buffer
->mark_active
, Qnil
,
2624 "Non-nil means the mark and region are currently active in this buffer.\n\
2625 Automatically local in all buffers.");
2627 DEFVAR_LISP ("transient-mark-mode", &Vtransient_mark_mode
,
2628 "*Non-nil means deactivate the mark when the buffer contents change.");
2629 Vtransient_mark_mode
= Qnil
;
2631 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only
,
2632 "*Non-nil means disregard read-only status of buffers or characters.\n\
2633 If the value is t, disregard `buffer-read-only' and all `read-only'\n\
2634 text properties. If the value is a list, disregard `buffer-read-only'\n\
2635 and disregard a `read-only' text property if the property value\n\
2636 is a member of the list.");
2637 Vinhibit_read_only
= Qnil
;
2639 DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions
,
2640 "List of functions called with no args to query before killing a buffer.");
2641 Vkill_buffer_query_functions
= Qnil
;
2643 defsubr (&Sbuffer_list
);
2644 defsubr (&Sget_buffer
);
2645 defsubr (&Sget_file_buffer
);
2646 defsubr (&Sget_buffer_create
);
2647 defsubr (&Sgenerate_new_buffer_name
);
2648 defsubr (&Sbuffer_name
);
2649 /*defsubr (&Sbuffer_number);*/
2650 defsubr (&Sbuffer_file_name
);
2651 defsubr (&Sbuffer_local_variables
);
2652 defsubr (&Sbuffer_modified_p
);
2653 defsubr (&Sset_buffer_modified_p
);
2654 defsubr (&Sbuffer_modified_tick
);
2655 defsubr (&Srename_buffer
);
2656 defsubr (&Sother_buffer
);
2657 defsubr (&Sbuffer_disable_undo
);
2658 defsubr (&Sbuffer_enable_undo
);
2659 defsubr (&Skill_buffer
);
2660 defsubr (&Serase_buffer
);
2661 defsubr (&Sswitch_to_buffer
);
2662 defsubr (&Spop_to_buffer
);
2663 defsubr (&Scurrent_buffer
);
2664 defsubr (&Sset_buffer
);
2665 defsubr (&Sbarf_if_buffer_read_only
);
2666 defsubr (&Sbury_buffer
);
2667 defsubr (&Slist_buffers
);
2668 defsubr (&Skill_all_local_variables
);
2670 defsubr (&Soverlayp
);
2671 defsubr (&Smake_overlay
);
2672 defsubr (&Sdelete_overlay
);
2673 defsubr (&Smove_overlay
);
2674 defsubr (&Soverlay_start
);
2675 defsubr (&Soverlay_end
);
2676 defsubr (&Soverlay_buffer
);
2677 defsubr (&Soverlay_properties
);
2678 defsubr (&Soverlays_at
);
2679 defsubr (&Snext_overlay_change
);
2680 defsubr (&Soverlay_recenter
);
2681 defsubr (&Soverlay_lists
);
2682 defsubr (&Soverlay_get
);
2683 defsubr (&Soverlay_put
);
2688 initial_define_key (control_x_map
, 'b', "switch-to-buffer");
2689 initial_define_key (control_x_map
, 'k', "kill-buffer");
2690 initial_define_key (control_x_map
, Ctl ('B'), "list-buffers");
2692 /* This must not be in syms_of_buffer, because Qdisabled is not
2693 initialized when that function gets called. */
2694 Fput (intern ("erase-buffer"), Qdisabled
, Qt
);