Add redirection.from active comint buffers into
[bpt/emacs.git] / src / buffer.c
... / ...
CommitLineData
1/* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985,86,87,88,89,93,94,95,97,98, 1999
3 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22#include <config.h>
23
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <sys/param.h>
27#include <errno.h>
28
29extern int errno;
30
31#ifndef MAXPATHLEN
32/* in 4.1, param.h fails to define this. */
33#define MAXPATHLEN 1024
34#endif /* not MAXPATHLEN */
35
36#ifdef HAVE_UNISTD_H
37#include <unistd.h>
38#endif
39#include "lisp.h"
40#include "intervals.h"
41#include "window.h"
42#include "commands.h"
43#include "buffer.h"
44#include "charset.h"
45#include "region-cache.h"
46#include "indent.h"
47#include "blockinput.h"
48#include "frame.h"
49
50struct buffer *current_buffer; /* the current buffer */
51
52/* First buffer in chain of all buffers (in reverse order of creation).
53 Threaded through ->next. */
54
55struct buffer *all_buffers;
56
57/* This structure holds the default values of the buffer-local variables
58 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer.
59 The default value occupies the same slot in this structure
60 as an individual buffer's value occupies in that buffer.
61 Setting the default value also goes through the alist of buffers
62 and stores into each buffer that does not say it has a local value. */
63
64struct buffer buffer_defaults;
65
66/* A Lisp_Object pointer to the above, used for staticpro */
67
68static Lisp_Object Vbuffer_defaults;
69
70/* This structure marks which slots in a buffer have corresponding
71 default values in buffer_defaults.
72 Each such slot has a nonzero value in this structure.
73 The value has only one nonzero bit.
74
75 When a buffer has its own local value for a slot,
76 the bit for that slot (found in the same slot in this structure)
77 is turned on in the buffer's local_var_flags slot.
78
79 If a slot in this structure is -1, then even though there may
80 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it;
81 and the corresponding slot in buffer_defaults is not used.
82
83 If a slot is -2, then there is no DEFVAR_PER_BUFFER for it,
84 but there is a default value which is copied into each buffer.
85
86 If a slot in this structure is negative, then even though there may
87 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it;
88 and the corresponding slot in buffer_defaults is not used.
89
90 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is
91 zero, that is a bug */
92
93struct buffer buffer_local_flags;
94
95/* This structure holds the names of symbols whose values may be
96 buffer-local. It is indexed and accessed in the same way as the above. */
97
98struct buffer buffer_local_symbols;
99/* A Lisp_Object pointer to the above, used for staticpro */
100static Lisp_Object Vbuffer_local_symbols;
101
102/* This structure holds the required types for the values in the
103 buffer-local slots. If a slot contains Qnil, then the
104 corresponding buffer slot may contain a value of any type. If a
105 slot contains an integer, then prospective values' tags must be
106 equal to that integer (except nil is always allowed).
107 When a tag does not match, the function
108 buffer_slot_type_mismatch will signal an error.
109
110 If a slot here contains -1, the corresponding variable is read-only. */
111struct buffer buffer_local_types;
112
113/* Flags indicating which built-in buffer-local variables
114 are permanent locals. */
115static int buffer_permanent_local_flags;
116
117Lisp_Object Fset_buffer ();
118void set_buffer_internal ();
119void set_buffer_internal_1 ();
120static void call_overlay_mod_hooks ();
121static void swap_out_buffer_local_variables ();
122static void reset_buffer_local_variables ();
123
124/* Alist of all buffer names vs the buffers. */
125/* This used to be a variable, but is no longer,
126 to prevent lossage due to user rplac'ing this alist or its elements. */
127Lisp_Object Vbuffer_alist;
128
129/* Functions to call before and after each text change. */
130Lisp_Object Vbefore_change_function;
131Lisp_Object Vafter_change_function;
132Lisp_Object Vbefore_change_functions;
133Lisp_Object Vafter_change_functions;
134
135Lisp_Object Vtransient_mark_mode;
136
137/* t means ignore all read-only text properties.
138 A list means ignore such a property if its value is a member of the list.
139 Any non-nil value means ignore buffer-read-only. */
140Lisp_Object Vinhibit_read_only;
141
142/* List of functions to call that can query about killing a buffer.
143 If any of these functions returns nil, we don't kill it. */
144Lisp_Object Vkill_buffer_query_functions;
145
146/* List of functions to call before changing an unmodified buffer. */
147Lisp_Object Vfirst_change_hook;
148
149Lisp_Object Qfirst_change_hook;
150Lisp_Object Qbefore_change_functions;
151Lisp_Object Qafter_change_functions;
152
153/* If nonzero, all modification hooks are suppressed. */
154int inhibit_modification_hooks;
155
156Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local;
157
158Lisp_Object Qprotected_field;
159
160Lisp_Object QSFundamental; /* A string "Fundamental" */
161
162Lisp_Object Qkill_buffer_hook;
163
164Lisp_Object Qget_file_buffer;
165
166Lisp_Object Qoverlayp;
167
168Lisp_Object Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string;
169
170Lisp_Object Qmodification_hooks;
171Lisp_Object Qinsert_in_front_hooks;
172Lisp_Object Qinsert_behind_hooks;
173
174/* For debugging; temporary. See set_buffer_internal. */
175/* Lisp_Object Qlisp_mode, Vcheck_symbol; */
176
177void
178nsberror (spec)
179 Lisp_Object spec;
180{
181 if (STRINGP (spec))
182 error ("No buffer named %s", XSTRING (spec)->data);
183 error ("Invalid buffer argument");
184}
185\f
186DEFUN ("buffer-live-p", Fbuffer_live_p, Sbuffer_live_p, 1, 1, 0,
187 "Return non-nil if OBJECT is a buffer which has not been killed.\n\
188Value is nil if OBJECT is not a buffer or if it has been killed.")
189 (object)
190 Lisp_Object object;
191{
192 return ((BUFFERP (object) && ! NILP (XBUFFER (object)->name))
193 ? Qt : Qnil);
194}
195
196DEFUN ("buffer-list", Fbuffer_list, Sbuffer_list, 0, 1, 0,
197 "Return a list of all existing live buffers.\n\
198If the optional arg FRAME is a frame, we return that frame's buffer list.")
199 (frame)
200 Lisp_Object frame;
201{
202 Lisp_Object framelist, general;
203 general = Fmapcar (Qcdr, Vbuffer_alist);
204
205 if (FRAMEP (frame))
206 {
207 Lisp_Object tail;
208
209 CHECK_FRAME (frame, 1);
210
211 framelist = Fcopy_sequence (XFRAME (frame)->buffer_list);
212
213 /* Remove from GENERAL any buffer that duplicates one in FRAMELIST. */
214 tail = framelist;
215 while (! NILP (tail))
216 {
217 general = Fdelq (XCAR (tail), general);
218 tail = XCDR (tail);
219 }
220 return nconc2 (framelist, general);
221 }
222
223 return general;
224}
225
226/* Like Fassoc, but use Fstring_equal to compare
227 (which ignores text properties),
228 and don't ever QUIT. */
229
230static Lisp_Object
231assoc_ignore_text_properties (key, list)
232 register Lisp_Object key;
233 Lisp_Object list;
234{
235 register Lisp_Object tail;
236 for (tail = list; !NILP (tail); tail = Fcdr (tail))
237 {
238 register Lisp_Object elt, tem;
239 elt = Fcar (tail);
240 tem = Fstring_equal (Fcar (elt), key);
241 if (!NILP (tem))
242 return elt;
243 }
244 return Qnil;
245}
246
247DEFUN ("get-buffer", Fget_buffer, Sget_buffer, 1, 1, 0,
248 "Return the buffer named NAME (a string).\n\
249If there is no live buffer named NAME, return nil.\n\
250NAME may also be a buffer; if so, the value is that buffer.")
251 (name)
252 register Lisp_Object name;
253{
254 if (BUFFERP (name))
255 return name;
256 CHECK_STRING (name, 0);
257
258 return Fcdr (assoc_ignore_text_properties (name, Vbuffer_alist));
259}
260
261DEFUN ("get-file-buffer", Fget_file_buffer, Sget_file_buffer, 1, 1, 0,
262 "Return the buffer visiting file FILENAME (a string).\n\
263The buffer's `buffer-file-name' must match exactly the expansion of FILENAME.\n\
264If there is no such live buffer, return nil.\n\
265See also `find-buffer-visiting'.")
266 (filename)
267 register Lisp_Object filename;
268{
269 register Lisp_Object tail, buf, tem;
270 Lisp_Object handler;
271
272 CHECK_STRING (filename, 0);
273 filename = Fexpand_file_name (filename, Qnil);
274
275 /* If the file name has special constructs in it,
276 call the corresponding file handler. */
277 handler = Ffind_file_name_handler (filename, Qget_file_buffer);
278 if (!NILP (handler))
279 return call2 (handler, Qget_file_buffer, filename);
280
281 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
282 {
283 buf = Fcdr (XCAR (tail));
284 if (!BUFFERP (buf)) continue;
285 if (!STRINGP (XBUFFER (buf)->filename)) continue;
286 tem = Fstring_equal (XBUFFER (buf)->filename, filename);
287 if (!NILP (tem))
288 return buf;
289 }
290 return Qnil;
291}
292
293Lisp_Object
294get_truename_buffer (filename)
295 register Lisp_Object filename;
296{
297 register Lisp_Object tail, buf, tem;
298
299 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
300 {
301 buf = Fcdr (XCAR (tail));
302 if (!BUFFERP (buf)) continue;
303 if (!STRINGP (XBUFFER (buf)->file_truename)) continue;
304 tem = Fstring_equal (XBUFFER (buf)->file_truename, filename);
305 if (!NILP (tem))
306 return buf;
307 }
308 return Qnil;
309}
310
311/* Incremented for each buffer created, to assign the buffer number. */
312int buffer_count;
313
314DEFUN ("get-buffer-create", Fget_buffer_create, Sget_buffer_create, 1, 1, 0,
315 "Return the buffer named NAME, or create such a buffer and return it.\n\
316A new buffer is created if there is no live buffer named NAME.\n\
317If NAME starts with a space, the new buffer does not keep undo information.\n\
318If NAME is a buffer instead of a string, then it is the value returned.\n\
319The value is never nil.")
320 (name)
321 register Lisp_Object name;
322{
323 register Lisp_Object buf;
324 register struct buffer *b;
325
326 buf = Fget_buffer (name);
327 if (!NILP (buf))
328 return buf;
329
330 if (XSTRING (name)->size == 0)
331 error ("Empty string for buffer name is not allowed");
332
333 b = (struct buffer *) xmalloc (sizeof (struct buffer));
334
335 b->size = sizeof (struct buffer) / sizeof (EMACS_INT);
336
337 /* An ordinary buffer uses its own struct buffer_text. */
338 b->text = &b->own_text;
339 b->base_buffer = 0;
340
341 BUF_GAP_SIZE (b) = 20;
342 BLOCK_INPUT;
343 /* We allocate extra 1-byte at the tail and keep it always '\0' for
344 anchoring a search. */
345 BUFFER_ALLOC (BUF_BEG_ADDR (b), (BUF_GAP_SIZE (b) + 1));
346 UNBLOCK_INPUT;
347 if (! BUF_BEG_ADDR (b))
348 buffer_memory_full ();
349
350 BUF_PT (b) = 1;
351 BUF_GPT (b) = 1;
352 BUF_BEGV (b) = 1;
353 BUF_ZV (b) = 1;
354 BUF_Z (b) = 1;
355 BUF_PT_BYTE (b) = 1;
356 BUF_GPT_BYTE (b) = 1;
357 BUF_BEGV_BYTE (b) = 1;
358 BUF_ZV_BYTE (b) = 1;
359 BUF_Z_BYTE (b) = 1;
360 BUF_MODIFF (b) = 1;
361 BUF_OVERLAY_MODIFF (b) = 1;
362 BUF_SAVE_MODIFF (b) = 1;
363 BUF_INTERVALS (b) = 0;
364 BUF_UNCHANGED_MODIFIED (b) = 1;
365 BUF_OVERLAY_UNCHANGED_MODIFIED (b) = 1;
366 BUF_END_UNCHANGED (b) = 0;
367 BUF_BEG_UNCHANGED (b) = 0;
368 *(BUF_GPT_ADDR (b)) = *(BUF_Z_ADDR (b)) = 0; /* Put an anchor '\0'. */
369
370 b->newline_cache = 0;
371 b->width_run_cache = 0;
372 b->width_table = Qnil;
373 b->prevent_redisplay_optimizations_p = 1;
374
375 /* Put this on the chain of all buffers including killed ones. */
376 b->next = all_buffers;
377 all_buffers = b;
378
379 /* An ordinary buffer normally doesn't need markers
380 to handle BEGV and ZV. */
381 b->pt_marker = Qnil;
382 b->begv_marker = Qnil;
383 b->zv_marker = Qnil;
384
385 name = Fcopy_sequence (name);
386 INITIALIZE_INTERVAL (XSTRING (name), NULL_INTERVAL);
387 b->name = name;
388
389 if (XSTRING (name)->data[0] != ' ')
390 b->undo_list = Qnil;
391 else
392 b->undo_list = Qt;
393
394 reset_buffer (b);
395 reset_buffer_local_variables (b, 1);
396
397 /* Put this in the alist of all live buffers. */
398 XSETBUFFER (buf, b);
399 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
400
401 b->mark = Fmake_marker ();
402 BUF_MARKERS (b) = Qnil;
403 b->name = name;
404 return buf;
405}
406
407DEFUN ("make-indirect-buffer", Fmake_indirect_buffer, Smake_indirect_buffer, 2, 2,
408 "bMake indirect buffer (to buffer): \nBName of indirect buffer: ",
409 "Create and return an indirect buffer for buffer BASE-BUFFER, named NAME.\n\
410BASE-BUFFER should be an existing buffer (or buffer name).\n\
411NAME should be a string which is not the name of an existing buffer.")
412 (base_buffer, name)
413 register Lisp_Object base_buffer, name;
414{
415 register Lisp_Object buf;
416 register struct buffer *b;
417
418 buf = Fget_buffer (name);
419 if (!NILP (buf))
420 error ("Buffer name `%s' is in use", XSTRING (name)->data);
421
422 base_buffer = Fget_buffer (base_buffer);
423 if (NILP (base_buffer))
424 error ("No such buffer: `%s'",
425 XSTRING (XBUFFER (base_buffer)->name)->data);
426
427 if (XSTRING (name)->size == 0)
428 error ("Empty string for buffer name is not allowed");
429
430 b = (struct buffer *) xmalloc (sizeof (struct buffer));
431
432 b->size = sizeof (struct buffer) / sizeof (EMACS_INT);
433
434 if (XBUFFER (base_buffer)->base_buffer)
435 b->base_buffer = XBUFFER (base_buffer)->base_buffer;
436 else
437 b->base_buffer = XBUFFER (base_buffer);
438
439 /* Use the base buffer's text object. */
440 b->text = b->base_buffer->text;
441
442 BUF_BEGV (b) = BUF_BEGV (b->base_buffer);
443 BUF_ZV (b) = BUF_ZV (b->base_buffer);
444 BUF_PT (b) = BUF_PT (b->base_buffer);
445 BUF_BEGV_BYTE (b) = BUF_BEGV_BYTE (b->base_buffer);
446 BUF_ZV_BYTE (b) = BUF_ZV_BYTE (b->base_buffer);
447 BUF_PT_BYTE (b) = BUF_PT_BYTE (b->base_buffer);
448
449 b->newline_cache = 0;
450 b->width_run_cache = 0;
451 b->width_table = Qnil;
452
453 /* Put this on the chain of all buffers including killed ones. */
454 b->next = all_buffers;
455 all_buffers = b;
456
457 name = Fcopy_sequence (name);
458 INITIALIZE_INTERVAL (XSTRING (name), NULL_INTERVAL);
459 b->name = name;
460
461 reset_buffer (b);
462 reset_buffer_local_variables (b, 1);
463
464 /* Put this in the alist of all live buffers. */
465 XSETBUFFER (buf, b);
466 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
467
468 b->mark = Fmake_marker ();
469 b->name = name;
470
471 /* The multibyte status belongs to the base buffer. */
472 b->enable_multibyte_characters = b->base_buffer->enable_multibyte_characters;
473
474 /* Make sure the base buffer has markers for its narrowing. */
475 if (NILP (b->base_buffer->pt_marker))
476 {
477 b->base_buffer->pt_marker = Fmake_marker ();
478 set_marker_both (b->base_buffer->pt_marker, base_buffer,
479 BUF_PT (b->base_buffer),
480 BUF_PT_BYTE (b->base_buffer));
481 }
482 if (NILP (b->base_buffer->begv_marker))
483 {
484 b->base_buffer->begv_marker = Fmake_marker ();
485 set_marker_both (b->base_buffer->begv_marker, base_buffer,
486 BUF_BEGV (b->base_buffer),
487 BUF_BEGV_BYTE (b->base_buffer));
488 }
489 if (NILP (b->base_buffer->zv_marker))
490 {
491 b->base_buffer->zv_marker = Fmake_marker ();
492 set_marker_both (b->base_buffer->zv_marker, base_buffer,
493 BUF_ZV (b->base_buffer),
494 BUF_ZV_BYTE (b->base_buffer));
495 XMARKER (b->base_buffer->zv_marker)->insertion_type = 1;
496 }
497
498 /* Give the indirect buffer markers for its narrowing. */
499 b->pt_marker = Fmake_marker ();
500 set_marker_both (b->pt_marker, buf, BUF_PT (b), BUF_PT_BYTE (b));
501 b->begv_marker = Fmake_marker ();
502 set_marker_both (b->begv_marker, buf, BUF_BEGV (b), BUF_BEGV_BYTE (b));
503 b->zv_marker = Fmake_marker ();
504 set_marker_both (b->zv_marker, buf, BUF_ZV (b), BUF_ZV_BYTE (b));
505 XMARKER (b->zv_marker)->insertion_type = 1;
506
507 return buf;
508}
509
510/* Reinitialize everything about a buffer except its name and contents
511 and local variables. */
512
513void
514reset_buffer (b)
515 register struct buffer *b;
516{
517 b->filename = Qnil;
518 b->file_truename = Qnil;
519 b->directory = (current_buffer) ? current_buffer->directory : Qnil;
520 b->modtime = 0;
521 XSETFASTINT (b->save_length, 0);
522 b->last_window_start = 1;
523 /* It is more conservative to start out "changed" than "unchanged". */
524 b->clip_changed = 0;
525 b->prevent_redisplay_optimizations_p = 1;
526 b->backed_up = Qnil;
527 b->auto_save_modified = 0;
528 b->auto_save_failure_time = -1;
529 b->auto_save_file_name = Qnil;
530 b->read_only = Qnil;
531 b->overlays_before = Qnil;
532 b->overlays_after = Qnil;
533 XSETFASTINT (b->overlay_center, 1);
534 b->mark_active = Qnil;
535 b->point_before_scroll = Qnil;
536 b->file_format = Qnil;
537 b->last_selected_window = Qnil;
538 XSETINT (b->display_count, 0);
539 b->display_time = Qnil;
540 b->extra2 = Qnil;
541 b->extra3 = Qnil;
542 b->enable_multibyte_characters = buffer_defaults.enable_multibyte_characters;
543}
544
545/* Reset buffer B's local variables info.
546 Don't use this on a buffer that has already been in use;
547 it does not treat permanent locals consistently.
548 Instead, use Fkill_all_local_variables.
549
550 If PERMANENT_TOO is 1, then we reset permanent built-in
551 buffer-local variables. If PERMANENT_TOO is 0,
552 we preserve those. */
553
554static void
555reset_buffer_local_variables (b, permanent_too)
556 register struct buffer *b;
557 int permanent_too;
558{
559 register int offset;
560 int dont_reset;
561
562 /* Decide which built-in local variables to reset. */
563 if (permanent_too)
564 dont_reset = 0;
565 else
566 dont_reset = buffer_permanent_local_flags;
567
568 /* Reset the major mode to Fundamental, together with all the
569 things that depend on the major mode.
570 default-major-mode is handled at a higher level.
571 We ignore it here. */
572 b->major_mode = Qfundamental_mode;
573 b->keymap = Qnil;
574 b->abbrev_table = Vfundamental_mode_abbrev_table;
575 b->mode_name = QSFundamental;
576 b->minor_modes = Qnil;
577
578 /* If the standard case table has been altered and invalidated,
579 fix up its insides first. */
580 if (! (CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[0])
581 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[1])
582 && CHAR_TABLE_P (XCHAR_TABLE (Vascii_downcase_table)->extras[2])))
583 Fset_standard_case_table (Vascii_downcase_table);
584
585 b->downcase_table = Vascii_downcase_table;
586 b->upcase_table = XCHAR_TABLE (Vascii_downcase_table)->extras[0];
587 b->case_canon_table = XCHAR_TABLE (Vascii_downcase_table)->extras[1];
588 b->case_eqv_table = XCHAR_TABLE (Vascii_downcase_table)->extras[2];
589 b->invisibility_spec = Qt;
590#ifndef DOS_NT
591 b->buffer_file_type = Qnil;
592#endif
593
594#if 0
595 b->sort_table = XSTRING (Vascii_sort_table);
596 b->folding_sort_table = XSTRING (Vascii_folding_sort_table);
597#endif /* 0 */
598
599 /* Reset all (or most) per-buffer variables to their defaults. */
600 b->local_var_alist = Qnil;
601 b->local_var_flags &= dont_reset;
602
603 /* For each slot that has a default value,
604 copy that into the slot. */
605
606 for (offset = (char *)&buffer_local_flags.name - (char *)&buffer_local_flags;
607 offset < sizeof (struct buffer);
608 offset += sizeof (Lisp_Object)) /* sizeof EMACS_INT == sizeof Lisp_Object */
609 {
610 int flag = XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_flags));
611 if ((flag > 0
612 /* Don't reset a permanent local. */
613 && ! (dont_reset & flag))
614 || flag == -2)
615 *(Lisp_Object *)(offset + (char *)b)
616 = *(Lisp_Object *)(offset + (char *)&buffer_defaults);
617 }
618}
619
620/* We split this away from generate-new-buffer, because rename-buffer
621 and set-visited-file-name ought to be able to use this to really
622 rename the buffer properly. */
623
624DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name, Sgenerate_new_buffer_name,
625 1, 2, 0,
626 "Return a string that is the name of no existing buffer based on NAME.\n\
627If there is no live buffer named NAME, then return NAME.\n\
628Otherwise modify name by appending `<NUMBER>', incrementing NUMBER\n\
629until an unused name is found, and then return that name.\n\
630Optional second argument IGNORE specifies a name that is okay to use\n\
631\(if it is in the sequence to be tried)\n\
632even if a buffer with that name exists.")
633 (name, ignore)
634 register Lisp_Object name, ignore;
635{
636 register Lisp_Object gentemp, tem;
637 int count;
638 char number[10];
639
640 CHECK_STRING (name, 0);
641
642 tem = Fget_buffer (name);
643 if (NILP (tem))
644 return name;
645
646 count = 1;
647 while (1)
648 {
649 sprintf (number, "<%d>", ++count);
650 gentemp = concat2 (name, build_string (number));
651 tem = Fstring_equal (gentemp, ignore);
652 if (!NILP (tem))
653 return gentemp;
654 tem = Fget_buffer (gentemp);
655 if (NILP (tem))
656 return gentemp;
657 }
658}
659
660\f
661DEFUN ("buffer-name", Fbuffer_name, Sbuffer_name, 0, 1, 0,
662 "Return the name of BUFFER, as a string.\n\
663With no argument or nil as argument, return the name of the current buffer.")
664 (buffer)
665 register Lisp_Object buffer;
666{
667 if (NILP (buffer))
668 return current_buffer->name;
669 CHECK_BUFFER (buffer, 0);
670 return XBUFFER (buffer)->name;
671}
672
673DEFUN ("buffer-file-name", Fbuffer_file_name, Sbuffer_file_name, 0, 1, 0,
674 "Return name of file BUFFER is visiting, or nil if none.\n\
675No argument or nil as argument means use the current buffer.")
676 (buffer)
677 register Lisp_Object buffer;
678{
679 if (NILP (buffer))
680 return current_buffer->filename;
681 CHECK_BUFFER (buffer, 0);
682 return XBUFFER (buffer)->filename;
683}
684
685DEFUN ("buffer-base-buffer", Fbuffer_base_buffer, Sbuffer_base_buffer,
686 0, 1, 0,
687 "Return the base buffer of indirect buffer BUFFER.\n\
688If BUFFER is not indirect, return nil.")
689 (buffer)
690 register Lisp_Object buffer;
691{
692 struct buffer *base;
693 Lisp_Object base_buffer;
694
695 if (NILP (buffer))
696 base = current_buffer->base_buffer;
697 else
698 {
699 CHECK_BUFFER (buffer, 0);
700 base = XBUFFER (buffer)->base_buffer;
701 }
702
703 if (! base)
704 return Qnil;
705 XSETBUFFER (base_buffer, base);
706 return base_buffer;
707}
708
709DEFUN ("buffer-local-variables", Fbuffer_local_variables,
710 Sbuffer_local_variables, 0, 1, 0,
711 "Return an alist of variables that are buffer-local in BUFFER.\n\
712Most elements look like (SYMBOL . VALUE), describing one variable.\n\
713For a symbol that is locally unbound, just the symbol appears in the value.\n\
714Note that storing new VALUEs in these elements doesn't change the variables.\n\
715No argument or nil as argument means use current buffer as BUFFER.")
716 (buffer)
717 register Lisp_Object buffer;
718{
719 register struct buffer *buf;
720 register Lisp_Object result;
721
722 if (NILP (buffer))
723 buf = current_buffer;
724 else
725 {
726 CHECK_BUFFER (buffer, 0);
727 buf = XBUFFER (buffer);
728 }
729
730 result = Qnil;
731
732 {
733 register Lisp_Object tail;
734 for (tail = buf->local_var_alist; CONSP (tail); tail = XCDR (tail))
735 {
736 Lisp_Object val, elt;
737
738 elt = XCAR (tail);
739
740 /* Reference each variable in the alist in buf.
741 If inquiring about the current buffer, this gets the current values,
742 so store them into the alist so the alist is up to date.
743 If inquiring about some other buffer, this swaps out any values
744 for that buffer, making the alist up to date automatically. */
745 val = find_symbol_value (XCAR (elt));
746 /* Use the current buffer value only if buf is the current buffer. */
747 if (buf != current_buffer)
748 val = XCDR (elt);
749
750 /* If symbol is unbound, put just the symbol in the list. */
751 if (EQ (val, Qunbound))
752 result = Fcons (XCAR (elt), result);
753 /* Otherwise, put (symbol . value) in the list. */
754 else
755 result = Fcons (Fcons (XCAR (elt), val), result);
756 }
757 }
758
759 /* Add on all the variables stored in special slots. */
760 {
761 register int offset, mask;
762
763 for (offset = (char *)&buffer_local_symbols.name - (char *)&buffer_local_symbols;
764 offset < sizeof (struct buffer);
765 offset += (sizeof (EMACS_INT))) /* sizeof EMACS_INT == sizeof Lisp_Object */
766 {
767 mask = XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_flags));
768 if (mask == -1 || (buf->local_var_flags & mask))
769 if (SYMBOLP (*(Lisp_Object *)(offset
770 + (char *)&buffer_local_symbols)))
771 result = Fcons (Fcons (*((Lisp_Object *)
772 (offset + (char *)&buffer_local_symbols)),
773 *(Lisp_Object *)(offset + (char *)buf)),
774 result);
775 }
776 }
777
778 return result;
779}
780
781\f
782DEFUN ("buffer-modified-p", Fbuffer_modified_p, Sbuffer_modified_p,
783 0, 1, 0,
784 "Return t if BUFFER was modified since its file was last read or saved.\n\
785No argument or nil as argument means use current buffer as BUFFER.")
786 (buffer)
787 register Lisp_Object buffer;
788{
789 register struct buffer *buf;
790 if (NILP (buffer))
791 buf = current_buffer;
792 else
793 {
794 CHECK_BUFFER (buffer, 0);
795 buf = XBUFFER (buffer);
796 }
797
798 return BUF_SAVE_MODIFF (buf) < BUF_MODIFF (buf) ? Qt : Qnil;
799}
800
801DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p, Sset_buffer_modified_p,
802 1, 1, 0,
803 "Mark current buffer as modified or unmodified according to FLAG.\n\
804A non-nil FLAG means mark the buffer modified.")
805 (flag)
806 register Lisp_Object flag;
807{
808 register int already;
809 register Lisp_Object fn;
810
811#ifdef CLASH_DETECTION
812 /* If buffer becoming modified, lock the file.
813 If buffer becoming unmodified, unlock the file. */
814
815 fn = current_buffer->file_truename;
816 /* Test buffer-file-name so that binding it to nil is effective. */
817 if (!NILP (fn) && ! NILP (current_buffer->filename))
818 {
819 already = SAVE_MODIFF < MODIFF;
820 if (!already && !NILP (flag))
821 lock_file (fn);
822 else if (already && NILP (flag))
823 unlock_file (fn);
824 }
825#endif /* CLASH_DETECTION */
826
827 SAVE_MODIFF = NILP (flag) ? MODIFF : 0;
828 update_mode_lines++;
829 return flag;
830}
831
832DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick,
833 0, 1, 0,
834 "Return BUFFER's tick counter, incremented for each change in text.\n\
835Each buffer has a tick counter which is incremented each time the text in\n\
836that buffer is changed. It wraps around occasionally.\n\
837No argument or nil as argument means use current buffer as BUFFER.")
838 (buffer)
839 register Lisp_Object buffer;
840{
841 register struct buffer *buf;
842 if (NILP (buffer))
843 buf = current_buffer;
844 else
845 {
846 CHECK_BUFFER (buffer, 0);
847 buf = XBUFFER (buffer);
848 }
849
850 return make_number (BUF_MODIFF (buf));
851}
852\f
853DEFUN ("rename-buffer", Frename_buffer, Srename_buffer, 1, 2,
854 "sRename buffer (to new name): \nP",
855 "Change current buffer's name to NEWNAME (a string).\n\
856If second arg UNIQUE is nil or omitted, it is an error if a\n\
857buffer named NEWNAME already exists.\n\
858If UNIQUE is non-nil, come up with a new name using\n\
859`generate-new-buffer-name'.\n\
860Interactively, you can set UNIQUE with a prefix argument.\n\
861We return the name we actually gave the buffer.\n\
862This does not change the name of the visited file (if any).")
863 (newname, unique)
864 register Lisp_Object newname, unique;
865{
866 register Lisp_Object tem, buf;
867
868 CHECK_STRING (newname, 0);
869
870 if (XSTRING (newname)->size == 0)
871 error ("Empty string is invalid as a buffer name");
872
873 tem = Fget_buffer (newname);
874 /* Don't short-circuit if UNIQUE is t. That is a useful way to rename
875 the buffer automatically so you can create another with the original name.
876 It makes UNIQUE equivalent to
877 (rename-buffer (generate-new-buffer-name NEWNAME)). */
878 if (NILP (unique) && XBUFFER (tem) == current_buffer)
879 return current_buffer->name;
880 if (!NILP (tem))
881 {
882 if (!NILP (unique))
883 newname = Fgenerate_new_buffer_name (newname, current_buffer->name);
884 else
885 error ("Buffer name `%s' is in use", XSTRING (newname)->data);
886 }
887
888 current_buffer->name = newname;
889
890 /* Catch redisplay's attention. Unless we do this, the mode lines for
891 any windows displaying current_buffer will stay unchanged. */
892 update_mode_lines++;
893
894 XSETBUFFER (buf, current_buffer);
895 Fsetcar (Frassq (buf, Vbuffer_alist), newname);
896 if (NILP (current_buffer->filename)
897 && !NILP (current_buffer->auto_save_file_name))
898 call0 (intern ("rename-auto-save-file"));
899 /* Refetch since that last call may have done GC. */
900 return current_buffer->name;
901}
902
903DEFUN ("other-buffer", Fother_buffer, Sother_buffer, 0, 3, 0,
904 "Return most recently selected buffer other than BUFFER.\n\
905Buffers not visible in windows are preferred to visible buffers,\n\
906unless optional second argument VISIBLE-OK is non-nil.\n\
907If the optional third argument FRAME is non-nil, use that frame's\n\
908buffer list instead of the selected frame's buffer list.\n\
909If no other buffer exists, the buffer `*scratch*' is returned.\n\
910If BUFFER is omitted or nil, some interesting buffer is returned.")
911 (buffer, visible_ok, frame)
912 register Lisp_Object buffer, visible_ok, frame;
913{
914 Lisp_Object Fset_buffer_major_mode ();
915 register Lisp_Object tail, buf, notsogood, tem, pred, add_ons;
916 notsogood = Qnil;
917
918 if (NILP (frame))
919 frame = selected_frame;
920
921 tail = Vbuffer_alist;
922 pred = frame_buffer_predicate (frame);
923
924 /* Consider buffers that have been seen in the selected frame
925 before other buffers. */
926
927 tem = frame_buffer_list (frame);
928 add_ons = Qnil;
929 while (CONSP (tem))
930 {
931 if (BUFFERP (XCAR (tem)))
932 add_ons = Fcons (Fcons (Qnil, XCAR (tem)), add_ons);
933 tem = XCDR (tem);
934 }
935 tail = nconc2 (Fnreverse (add_ons), tail);
936
937 for (; !NILP (tail); tail = Fcdr (tail))
938 {
939 buf = Fcdr (Fcar (tail));
940 if (EQ (buf, buffer))
941 continue;
942 if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ')
943 continue;
944 /* If the selected frame has a buffer_predicate,
945 disregard buffers that don't fit the predicate. */
946 if (!NILP (pred))
947 {
948 tem = call1 (pred, buf);
949 if (NILP (tem))
950 continue;
951 }
952
953 if (NILP (visible_ok))
954 tem = Fget_buffer_window (buf, Qt);
955 else
956 tem = Qnil;
957 if (NILP (tem))
958 return buf;
959 if (NILP (notsogood))
960 notsogood = buf;
961 }
962 if (!NILP (notsogood))
963 return notsogood;
964 buf = Fget_buffer_create (build_string ("*scratch*"));
965 Fset_buffer_major_mode (buf);
966 return buf;
967}
968\f
969DEFUN ("buffer-disable-undo", Fbuffer_disable_undo, Sbuffer_disable_undo,
970 0, 1, "",
971 "Make BUFFER stop keeping undo information.\n\
972No argument or nil as argument means do this for the current buffer.")
973 (buffer)
974 register Lisp_Object buffer;
975{
976 Lisp_Object real_buffer;
977
978 if (NILP (buffer))
979 XSETBUFFER (real_buffer, current_buffer);
980 else
981 {
982 real_buffer = Fget_buffer (buffer);
983 if (NILP (real_buffer))
984 nsberror (buffer);
985 }
986
987 XBUFFER (real_buffer)->undo_list = Qt;
988
989 return Qnil;
990}
991
992DEFUN ("buffer-enable-undo", Fbuffer_enable_undo, Sbuffer_enable_undo,
993 0, 1, "",
994 "Start keeping undo information for buffer BUFFER.\n\
995No argument or nil as argument means do this for the current buffer.")
996 (buffer)
997 register Lisp_Object buffer;
998{
999 Lisp_Object real_buffer;
1000
1001 if (NILP (buffer))
1002 XSETBUFFER (real_buffer, current_buffer);
1003 else
1004 {
1005 real_buffer = Fget_buffer (buffer);
1006 if (NILP (real_buffer))
1007 nsberror (buffer);
1008 }
1009
1010 if (EQ (XBUFFER (real_buffer)->undo_list, Qt))
1011 XBUFFER (real_buffer)->undo_list = Qnil;
1012
1013 return Qnil;
1014}
1015
1016/*
1017 DEFVAR_LISP ("kill-buffer-hook", no_cell, "\
1018Hook to be run (by `run-hooks', which see) when a buffer is killed.\n\
1019The buffer being killed will be current while the hook is running.\n\
1020See `kill-buffer'."
1021 */
1022DEFUN ("kill-buffer", Fkill_buffer, Skill_buffer, 1, 1, "bKill buffer: ",
1023 "Kill the buffer BUFFER.\n\
1024The argument may be a buffer or may be the name of a buffer.\n\
1025An argument of nil means kill the current buffer.\n\n\
1026Value is t if the buffer is actually killed, nil if user says no.\n\n\
1027The value of `kill-buffer-hook' (which may be local to that buffer),\n\
1028if not void, is a list of functions to be called, with no arguments,\n\
1029before the buffer is actually killed. The buffer to be killed is current\n\
1030when the hook functions are called.\n\n\
1031Any processes that have this buffer as the `process-buffer' are killed\n\
1032with SIGHUP.")
1033 (buffer)
1034 Lisp_Object buffer;
1035{
1036 Lisp_Object buf;
1037 register struct buffer *b;
1038 register Lisp_Object tem;
1039 register struct Lisp_Marker *m;
1040 struct gcpro gcpro1;
1041
1042 if (NILP (buffer))
1043 buf = Fcurrent_buffer ();
1044 else
1045 buf = Fget_buffer (buffer);
1046 if (NILP (buf))
1047 nsberror (buffer);
1048
1049 b = XBUFFER (buf);
1050
1051 /* Avoid trouble for buffer already dead. */
1052 if (NILP (b->name))
1053 return Qnil;
1054
1055 /* Query if the buffer is still modified. */
1056 if (INTERACTIVE && !NILP (b->filename)
1057 && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
1058 {
1059 GCPRO1 (buf);
1060 tem = do_yes_or_no_p (format1 ("Buffer %s modified; kill anyway? ",
1061 XSTRING (b->name)->data));
1062 UNGCPRO;
1063 if (NILP (tem))
1064 return Qnil;
1065 }
1066
1067 /* Run hooks with the buffer to be killed the current buffer. */
1068 {
1069 int count = specpdl_ptr - specpdl;
1070 Lisp_Object list;
1071
1072 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1073 set_buffer_internal (b);
1074
1075 /* First run the query functions; if any query is answered no,
1076 don't kill the buffer. */
1077 for (list = Vkill_buffer_query_functions; !NILP (list); list = Fcdr (list))
1078 {
1079 tem = call0 (Fcar (list));
1080 if (NILP (tem))
1081 return unbind_to (count, Qnil);
1082 }
1083
1084 /* Then run the hooks. */
1085 if (!NILP (Vrun_hooks))
1086 call1 (Vrun_hooks, Qkill_buffer_hook);
1087 unbind_to (count, Qnil);
1088 }
1089
1090 /* We have no more questions to ask. Verify that it is valid
1091 to kill the buffer. This must be done after the questions
1092 since anything can happen within do_yes_or_no_p. */
1093
1094 /* Don't kill the minibuffer now current. */
1095 if (EQ (buf, XWINDOW (minibuf_window)->buffer))
1096 return Qnil;
1097
1098 if (NILP (b->name))
1099 return Qnil;
1100
1101 /* When we kill a base buffer, kill all its indirect buffers.
1102 We do it at this stage so nothing terrible happens if they
1103 ask questions or their hooks get errors. */
1104 if (! b->base_buffer)
1105 {
1106 struct buffer *other;
1107
1108 GCPRO1 (buf);
1109
1110 for (other = all_buffers; other; other = other->next)
1111 /* all_buffers contains dead buffers too;
1112 don't re-kill them. */
1113 if (other->base_buffer == b && !NILP (other->name))
1114 {
1115 Lisp_Object buf;
1116 XSETBUFFER (buf, other);
1117 Fkill_buffer (buf);
1118 }
1119
1120 UNGCPRO;
1121 }
1122
1123 /* Make this buffer not be current.
1124 In the process, notice if this is the sole visible buffer
1125 and give up if so. */
1126 if (b == current_buffer)
1127 {
1128 tem = Fother_buffer (buf, Qnil, Qnil);
1129 Fset_buffer (tem);
1130 if (b == current_buffer)
1131 return Qnil;
1132 }
1133
1134 /* Now there is no question: we can kill the buffer. */
1135
1136#ifdef CLASH_DETECTION
1137 /* Unlock this buffer's file, if it is locked. */
1138 unlock_buffer (b);
1139#endif /* CLASH_DETECTION */
1140
1141 kill_buffer_processes (buf);
1142
1143 tem = Vinhibit_quit;
1144 Vinhibit_quit = Qt;
1145 replace_buffer_in_all_windows (buf);
1146 Vbuffer_alist = Fdelq (Frassq (buf, Vbuffer_alist), Vbuffer_alist);
1147 frames_discard_buffer (buf);
1148 Vinhibit_quit = tem;
1149
1150 /* Delete any auto-save file, if we saved it in this session. */
1151 if (STRINGP (b->auto_save_file_name)
1152 && b->auto_save_modified != 0
1153 && BUF_SAVE_MODIFF (b) < b->auto_save_modified)
1154 {
1155 Lisp_Object tem;
1156 tem = Fsymbol_value (intern ("delete-auto-save-files"));
1157 if (! NILP (tem))
1158 internal_delete_file (b->auto_save_file_name);
1159 }
1160
1161 if (b->base_buffer)
1162 {
1163 /* Unchain all markers that belong to this indirect buffer.
1164 Don't unchain the markers that belong to the base buffer
1165 or its other indirect buffers. */
1166 for (tem = BUF_MARKERS (b); !NILP (tem); )
1167 {
1168 Lisp_Object next;
1169 m = XMARKER (tem);
1170 next = m->chain;
1171 if (m->buffer == b)
1172 unchain_marker (tem);
1173 tem = next;
1174 }
1175 }
1176 else
1177 {
1178 /* Unchain all markers of this buffer and its indirect buffers.
1179 and leave them pointing nowhere. */
1180 for (tem = BUF_MARKERS (b); !NILP (tem); )
1181 {
1182 m = XMARKER (tem);
1183 m->buffer = 0;
1184 tem = m->chain;
1185 m->chain = Qnil;
1186 }
1187 BUF_MARKERS (b) = Qnil;
1188 BUF_INTERVALS (b) = NULL_INTERVAL;
1189
1190 /* Perhaps we should explicitly free the interval tree here... */
1191 }
1192
1193 /* Reset the local variables, so that this buffer's local values
1194 won't be protected from GC. They would be protected
1195 if they happened to remain encached in their symbols.
1196 This gets rid of them for certain. */
1197 swap_out_buffer_local_variables (b);
1198 reset_buffer_local_variables (b, 1);
1199
1200 b->name = Qnil;
1201
1202 BLOCK_INPUT;
1203 if (! b->base_buffer)
1204 BUFFER_FREE (BUF_BEG_ADDR (b));
1205
1206 if (b->newline_cache)
1207 {
1208 free_region_cache (b->newline_cache);
1209 b->newline_cache = 0;
1210 }
1211 if (b->width_run_cache)
1212 {
1213 free_region_cache (b->width_run_cache);
1214 b->width_run_cache = 0;
1215 }
1216 b->width_table = Qnil;
1217 UNBLOCK_INPUT;
1218 b->undo_list = Qnil;
1219
1220 return Qt;
1221}
1222\f
1223/* Move the assoc for buffer BUF to the front of buffer-alist. Since
1224 we do this each time BUF is selected visibly, the more recently
1225 selected buffers are always closer to the front of the list. This
1226 means that other_buffer is more likely to choose a relevant buffer. */
1227
1228void
1229record_buffer (buf)
1230 Lisp_Object buf;
1231{
1232 register Lisp_Object link, prev;
1233 Lisp_Object frame;
1234 frame = selected_frame;
1235
1236 prev = Qnil;
1237 for (link = Vbuffer_alist; CONSP (link); link = XCDR (link))
1238 {
1239 if (EQ (XCDR (XCAR (link)), buf))
1240 break;
1241 prev = link;
1242 }
1243
1244 /* Effectively do Vbuffer_alist = Fdelq (link, Vbuffer_alist);
1245 we cannot use Fdelq itself here because it allows quitting. */
1246
1247 if (NILP (prev))
1248 Vbuffer_alist = XCDR (Vbuffer_alist);
1249 else
1250 XCDR (prev) = XCDR (XCDR (prev));
1251
1252 XCDR (link) = Vbuffer_alist;
1253 Vbuffer_alist = link;
1254
1255 /* Now move this buffer to the front of frame_buffer_list also. */
1256
1257 prev = Qnil;
1258 for (link = frame_buffer_list (frame); CONSP (link);
1259 link = XCDR (link))
1260 {
1261 if (EQ (XCAR (link), buf))
1262 break;
1263 prev = link;
1264 }
1265
1266 /* Effectively do delq. */
1267
1268 if (CONSP (link))
1269 {
1270 if (NILP (prev))
1271 set_frame_buffer_list (frame,
1272 XCDR (frame_buffer_list (frame)));
1273 else
1274 XCDR (prev) = XCDR (XCDR (prev));
1275
1276 XCDR (link) = frame_buffer_list (frame);
1277 set_frame_buffer_list (frame, link);
1278 }
1279 else
1280 set_frame_buffer_list (frame, Fcons (buf, frame_buffer_list (frame)));
1281}
1282
1283DEFUN ("set-buffer-major-mode", Fset_buffer_major_mode, Sset_buffer_major_mode, 1, 1, 0,
1284 "Set an appropriate major mode for BUFFER, according to `default-major-mode'.\n\
1285Use this function before selecting the buffer, since it may need to inspect\n\
1286the current buffer's major mode.")
1287 (buffer)
1288 Lisp_Object buffer;
1289{
1290 int count;
1291 Lisp_Object function;
1292
1293 function = buffer_defaults.major_mode;
1294 if (NILP (function) && NILP (Fget (current_buffer->major_mode, Qmode_class)))
1295 function = current_buffer->major_mode;
1296
1297 if (NILP (function) || EQ (function, Qfundamental_mode))
1298 return Qnil;
1299
1300 count = specpdl_ptr - specpdl;
1301
1302 /* To select a nonfundamental mode,
1303 select the buffer temporarily and then call the mode function. */
1304
1305 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1306
1307 Fset_buffer (buffer);
1308 call0 (function);
1309
1310 return unbind_to (count, Qnil);
1311}
1312
1313/* If switching buffers in WINDOW would be an error, return
1314 a C string saying what the error would be. */
1315
1316char *
1317no_switch_window (window)
1318 Lisp_Object window;
1319{
1320 Lisp_Object tem;
1321 if (EQ (minibuf_window, window))
1322 return "Cannot switch buffers in minibuffer window";
1323 tem = Fwindow_dedicated_p (window);
1324 if (!NILP (tem))
1325 return "Cannot switch buffers in a dedicated window";
1326 return NULL;
1327}
1328
1329/* Switch to buffer BUFFER in the selected window.
1330 If NORECORD is non-nil, don't call record_buffer. */
1331
1332Lisp_Object
1333switch_to_buffer_1 (buffer, norecord)
1334 Lisp_Object buffer, norecord;
1335{
1336 register Lisp_Object buf;
1337
1338 if (NILP (buffer))
1339 buf = Fother_buffer (Fcurrent_buffer (), Qnil, Qnil);
1340 else
1341 {
1342 buf = Fget_buffer (buffer);
1343 if (NILP (buf))
1344 {
1345 buf = Fget_buffer_create (buffer);
1346 Fset_buffer_major_mode (buf);
1347 }
1348 }
1349 Fset_buffer (buf);
1350 if (NILP (norecord))
1351 record_buffer (buf);
1352
1353 Fset_window_buffer (EQ (selected_window, minibuf_window)
1354 ? Fnext_window (minibuf_window, Qnil, Qnil)
1355 : selected_window,
1356 buf);
1357
1358 return buf;
1359}
1360
1361DEFUN ("switch-to-buffer", Fswitch_to_buffer, Sswitch_to_buffer, 1, 2, "BSwitch to buffer: ",
1362 "Select buffer BUFFER in the current window.\n\
1363BUFFER may be a buffer or a buffer name.\n\
1364Optional second arg NORECORD non-nil means\n\
1365do not put this buffer at the front of the list of recently selected ones.\n\
1366\n\
1367WARNING: This is NOT the way to work on another buffer temporarily\n\
1368within a Lisp program! Use `set-buffer' instead. That avoids messing with\n\
1369the window-buffer correspondences.")
1370 (buffer, norecord)
1371 Lisp_Object buffer, norecord;
1372{
1373 char *err;
1374
1375 err = no_switch_window (selected_window);
1376 if (err) error (err);
1377
1378 return switch_to_buffer_1 (buffer, norecord);
1379}
1380
1381DEFUN ("pop-to-buffer", Fpop_to_buffer, Spop_to_buffer, 1, 3, 0,
1382 "Select buffer BUFFER in some window, preferably a different one.\n\
1383If BUFFER is nil, then some other buffer is chosen.\n\
1384If `pop-up-windows' is non-nil, windows can be split to do this.\n\
1385If optional second arg OTHER-WINDOW is non-nil, insist on finding another\n\
1386window even if BUFFER is already visible in the selected window.\n\
1387This uses the function `display-buffer' as a subroutine; see the documentation\n\
1388of `display-buffer' for additional customization information.\n\
1389\n\
1390Optional third arg NORECORD non-nil means\n\
1391do not put this buffer at the front of the list of recently selected ones.")
1392 (buffer, other_window, norecord)
1393 Lisp_Object buffer, other_window, norecord;
1394{
1395 register Lisp_Object buf;
1396 if (NILP (buffer))
1397 buf = Fother_buffer (Fcurrent_buffer (), Qnil, Qnil);
1398 else
1399 {
1400 buf = Fget_buffer (buffer);
1401 if (NILP (buf))
1402 {
1403 buf = Fget_buffer_create (buffer);
1404 Fset_buffer_major_mode (buf);
1405 }
1406 }
1407 Fset_buffer (buf);
1408 if (NILP (norecord))
1409 record_buffer (buf);
1410 Fselect_window (Fdisplay_buffer (buf, other_window, Qnil));
1411 return buf;
1412}
1413
1414DEFUN ("current-buffer", Fcurrent_buffer, Scurrent_buffer, 0, 0, 0,
1415 "Return the current buffer as a Lisp object.")
1416 ()
1417{
1418 register Lisp_Object buf;
1419 XSETBUFFER (buf, current_buffer);
1420 return buf;
1421}
1422\f
1423/* Set the current buffer to B.
1424
1425 We previously set windows_or_buffers_changed here to invalidate
1426 global unchanged information in beg_unchanged and end_unchanged.
1427 This is no longer necessary because we now compute unchanged
1428 information on a buffer-basis. Every action affecting other
1429 windows than the selected one requires a select_window at some
1430 time, and that increments windows_or_buffers_changed. */
1431
1432void
1433set_buffer_internal (b)
1434 register struct buffer *b;
1435{
1436 if (current_buffer != b)
1437 set_buffer_internal_1 (b);
1438}
1439
1440/* Set the current buffer to B, and do not set windows_or_buffers_changed.
1441 This is used by redisplay. */
1442
1443void
1444set_buffer_internal_1 (b)
1445 register struct buffer *b;
1446{
1447 register struct buffer *old_buf;
1448 register Lisp_Object tail, valcontents;
1449 Lisp_Object tem;
1450
1451 if (current_buffer == b)
1452 return;
1453
1454 old_buf = current_buffer;
1455 current_buffer = b;
1456 last_known_column_point = -1; /* invalidate indentation cache */
1457
1458 if (old_buf)
1459 {
1460 /* Put the undo list back in the base buffer, so that it appears
1461 that an indirect buffer shares the undo list of its base. */
1462 if (old_buf->base_buffer)
1463 old_buf->base_buffer->undo_list = old_buf->undo_list;
1464
1465 /* If the old current buffer has markers to record PT, BEGV and ZV
1466 when it is not current, update them now. */
1467 if (! NILP (old_buf->pt_marker))
1468 {
1469 Lisp_Object obuf;
1470 XSETBUFFER (obuf, old_buf);
1471 set_marker_both (old_buf->pt_marker, obuf,
1472 BUF_PT (old_buf), BUF_PT_BYTE (old_buf));
1473 }
1474 if (! NILP (old_buf->begv_marker))
1475 {
1476 Lisp_Object obuf;
1477 XSETBUFFER (obuf, old_buf);
1478 set_marker_both (old_buf->begv_marker, obuf,
1479 BUF_BEGV (old_buf), BUF_BEGV_BYTE (old_buf));
1480 }
1481 if (! NILP (old_buf->zv_marker))
1482 {
1483 Lisp_Object obuf;
1484 XSETBUFFER (obuf, old_buf);
1485 set_marker_both (old_buf->zv_marker, obuf,
1486 BUF_ZV (old_buf), BUF_ZV_BYTE (old_buf));
1487 }
1488 }
1489
1490 /* Get the undo list from the base buffer, so that it appears
1491 that an indirect buffer shares the undo list of its base. */
1492 if (b->base_buffer)
1493 b->undo_list = b->base_buffer->undo_list;
1494
1495 /* If the new current buffer has markers to record PT, BEGV and ZV
1496 when it is not current, fetch them now. */
1497 if (! NILP (b->pt_marker))
1498 {
1499 BUF_PT (b) = marker_position (b->pt_marker);
1500 BUF_PT_BYTE (b) = marker_byte_position (b->pt_marker);
1501 }
1502 if (! NILP (b->begv_marker))
1503 {
1504 BUF_BEGV (b) = marker_position (b->begv_marker);
1505 BUF_BEGV_BYTE (b) = marker_byte_position (b->begv_marker);
1506 }
1507 if (! NILP (b->zv_marker))
1508 {
1509 BUF_ZV (b) = marker_position (b->zv_marker);
1510 BUF_ZV_BYTE (b) = marker_byte_position (b->zv_marker);
1511 }
1512
1513 /* Look down buffer's list of local Lisp variables
1514 to find and update any that forward into C variables. */
1515
1516 for (tail = b->local_var_alist; !NILP (tail); tail = XCDR (tail))
1517 {
1518 valcontents = XSYMBOL (XCAR (XCAR (tail)))->value;
1519 if ((BUFFER_LOCAL_VALUEP (valcontents)
1520 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
1521 && (tem = XBUFFER_LOCAL_VALUE (valcontents)->realvalue,
1522 (BOOLFWDP (tem) || INTFWDP (tem) || OBJFWDP (tem))))
1523 /* Just reference the variable
1524 to cause it to become set for this buffer. */
1525 Fsymbol_value (XCAR (XCAR (tail)));
1526 }
1527
1528 /* Do the same with any others that were local to the previous buffer */
1529
1530 if (old_buf)
1531 for (tail = old_buf->local_var_alist; !NILP (tail); tail = XCDR (tail))
1532 {
1533 valcontents = XSYMBOL (XCAR (XCAR (tail)))->value;
1534 if ((BUFFER_LOCAL_VALUEP (valcontents)
1535 || SOME_BUFFER_LOCAL_VALUEP (valcontents))
1536 && (tem = XBUFFER_LOCAL_VALUE (valcontents)->realvalue,
1537 (BOOLFWDP (tem) || INTFWDP (tem) || OBJFWDP (tem))))
1538 /* Just reference the variable
1539 to cause it to become set for this buffer. */
1540 Fsymbol_value (XCAR (XCAR (tail)));
1541 }
1542}
1543
1544/* Switch to buffer B temporarily for redisplay purposes.
1545 This avoids certain things that don't need to be done within redisplay. */
1546
1547void
1548set_buffer_temp (b)
1549 struct buffer *b;
1550{
1551 register struct buffer *old_buf;
1552
1553 if (current_buffer == b)
1554 return;
1555
1556 old_buf = current_buffer;
1557 current_buffer = b;
1558
1559 if (old_buf)
1560 {
1561 /* If the old current buffer has markers to record PT, BEGV and ZV
1562 when it is not current, update them now. */
1563 if (! NILP (old_buf->pt_marker))
1564 {
1565 Lisp_Object obuf;
1566 XSETBUFFER (obuf, old_buf);
1567 set_marker_both (old_buf->pt_marker, obuf,
1568 BUF_PT (old_buf), BUF_PT_BYTE (old_buf));
1569 }
1570 if (! NILP (old_buf->begv_marker))
1571 {
1572 Lisp_Object obuf;
1573 XSETBUFFER (obuf, old_buf);
1574 set_marker_both (old_buf->begv_marker, obuf,
1575 BUF_BEGV (old_buf), BUF_BEGV_BYTE (old_buf));
1576 }
1577 if (! NILP (old_buf->zv_marker))
1578 {
1579 Lisp_Object obuf;
1580 XSETBUFFER (obuf, old_buf);
1581 set_marker_both (old_buf->zv_marker, obuf,
1582 BUF_ZV (old_buf), BUF_ZV_BYTE (old_buf));
1583 }
1584 }
1585
1586 /* If the new current buffer has markers to record PT, BEGV and ZV
1587 when it is not current, fetch them now. */
1588 if (! NILP (b->pt_marker))
1589 {
1590 BUF_PT (b) = marker_position (b->pt_marker);
1591 BUF_PT_BYTE (b) = marker_byte_position (b->pt_marker);
1592 }
1593 if (! NILP (b->begv_marker))
1594 {
1595 BUF_BEGV (b) = marker_position (b->begv_marker);
1596 BUF_BEGV_BYTE (b) = marker_byte_position (b->begv_marker);
1597 }
1598 if (! NILP (b->zv_marker))
1599 {
1600 BUF_ZV (b) = marker_position (b->zv_marker);
1601 BUF_ZV_BYTE (b) = marker_byte_position (b->zv_marker);
1602 }
1603}
1604
1605DEFUN ("set-buffer", Fset_buffer, Sset_buffer, 1, 1, 0,
1606 "Make the buffer BUFFER current for editing operations.\n\
1607BUFFER may be a buffer or the name of an existing buffer.\n\
1608See also `save-excursion' when you want to make a buffer current temporarily.\n\
1609This function does not display the buffer, so its effect ends\n\
1610when the current command terminates.\n\
1611Use `switch-to-buffer' or `pop-to-buffer' to switch buffers permanently.")
1612 (buffer)
1613 register Lisp_Object buffer;
1614{
1615 register Lisp_Object buf;
1616 buf = Fget_buffer (buffer);
1617 if (NILP (buf))
1618 nsberror (buffer);
1619 if (NILP (XBUFFER (buf)->name))
1620 error ("Selecting deleted buffer");
1621 set_buffer_internal (XBUFFER (buf));
1622 return buf;
1623}
1624
1625/* Set the current buffer to BUFFER provided it is alive. */
1626
1627Lisp_Object
1628set_buffer_if_live (buffer)
1629 Lisp_Object buffer;
1630{
1631 if (! NILP (XBUFFER (buffer)->name))
1632 Fset_buffer (buffer);
1633 return Qnil;
1634}
1635\f
1636DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only,
1637 Sbarf_if_buffer_read_only, 0, 0, 0,
1638 "Signal a `buffer-read-only' error if the current buffer is read-only.")
1639 ()
1640{
1641 if (!NILP (current_buffer->read_only)
1642 && NILP (Vinhibit_read_only))
1643 Fsignal (Qbuffer_read_only, (Fcons (Fcurrent_buffer (), Qnil)));
1644 return Qnil;
1645}
1646
1647DEFUN ("bury-buffer", Fbury_buffer, Sbury_buffer, 0, 1, "",
1648 "Put BUFFER at the end of the list of all buffers.\n\
1649There it is the least likely candidate for `other-buffer' to return;\n\
1650thus, the least likely buffer for \\[switch-to-buffer] to select by default.\n\
1651If BUFFER is nil or omitted, bury the current buffer.\n\
1652Also, if BUFFER is nil or omitted, remove the current buffer from the\n\
1653selected window if it is displayed there.")
1654 (buffer)
1655 register Lisp_Object buffer;
1656{
1657 /* Figure out what buffer we're going to bury. */
1658 if (NILP (buffer))
1659 {
1660 XSETBUFFER (buffer, current_buffer);
1661
1662 /* If we're burying the current buffer, unshow it. */
1663 Fswitch_to_buffer (Fother_buffer (buffer, Qnil, Qnil), Qnil);
1664 }
1665 else
1666 {
1667 Lisp_Object buf1;
1668
1669 buf1 = Fget_buffer (buffer);
1670 if (NILP (buf1))
1671 nsberror (buffer);
1672 buffer = buf1;
1673 }
1674
1675 /* Move buffer to the end of the buffer list. */
1676 {
1677 register Lisp_Object aelt, link;
1678
1679 aelt = Frassq (buffer, Vbuffer_alist);
1680 link = Fmemq (aelt, Vbuffer_alist);
1681 Vbuffer_alist = Fdelq (aelt, Vbuffer_alist);
1682 XCDR (link) = Qnil;
1683 Vbuffer_alist = nconc2 (Vbuffer_alist, link);
1684 }
1685
1686 frames_bury_buffer (buffer);
1687
1688 return Qnil;
1689}
1690\f
1691DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*",
1692 "Delete the entire contents of the current buffer.\n\
1693Any narrowing restriction in effect (see `narrow-to-region') is removed,\n\
1694so the buffer is truly empty after this.")
1695 ()
1696{
1697 Fwiden ();
1698
1699 del_range (BEG, Z);
1700
1701 current_buffer->last_window_start = 1;
1702 /* Prevent warnings, or suspension of auto saving, that would happen
1703 if future size is less than past size. Use of erase-buffer
1704 implies that the future text is not really related to the past text. */
1705 XSETFASTINT (current_buffer->save_length, 0);
1706 return Qnil;
1707}
1708
1709void
1710validate_region (b, e)
1711 register Lisp_Object *b, *e;
1712{
1713 CHECK_NUMBER_COERCE_MARKER (*b, 0);
1714 CHECK_NUMBER_COERCE_MARKER (*e, 1);
1715
1716 if (XINT (*b) > XINT (*e))
1717 {
1718 Lisp_Object tem;
1719 tem = *b; *b = *e; *e = tem;
1720 }
1721
1722 if (!(BEGV <= XINT (*b) && XINT (*b) <= XINT (*e)
1723 && XINT (*e) <= ZV))
1724 args_out_of_range (*b, *e);
1725}
1726\f
1727/* Advance BYTE_POS up to a character boundary
1728 and return the adjusted position. */
1729
1730static int
1731advance_to_char_boundary (byte_pos)
1732 int byte_pos;
1733{
1734 int c;
1735
1736 if (byte_pos == BEG)
1737 /* Beginning of buffer is always a character boundary. */
1738 return 1;
1739
1740 c = FETCH_BYTE (byte_pos);
1741 if (! CHAR_HEAD_P (c))
1742 {
1743 /* We should advance BYTE_POS only when C is a constituent of a
1744 multibyte sequence. */
1745 DEC_POS (byte_pos);
1746 INC_POS (byte_pos);
1747 /* If C is a constituent of a multibyte sequence, BYTE_POS was
1748 surely advance to the correct character boundary. If C is
1749 not, BYTE_POS was unchanged. */
1750 }
1751
1752 return byte_pos;
1753}
1754
1755DEFUN ("set-buffer-multibyte", Fset_buffer_multibyte, Sset_buffer_multibyte,
1756 1, 1, 0,
1757 "Set the multibyte flag of the current buffer to FLAG.\n\
1758If FLAG is t, this makes the buffer a multibyte buffer.\n\
1759If FLAG is nil, this makes the buffer a single-byte buffer.\n\
1760The buffer contents remain unchanged as a sequence of bytes\n\
1761but the contents viewed as characters do change.")
1762 (flag)
1763 Lisp_Object flag;
1764{
1765 Lisp_Object tail, markers;
1766 struct buffer *other;
1767
1768 if (current_buffer->base_buffer)
1769 error ("Cannot do `set-buffer-multibyte' on an indirect buffer");
1770
1771 /* Do nothing if nothing actually changes. */
1772 if (NILP (flag) == NILP (current_buffer->enable_multibyte_characters))
1773 return flag;
1774
1775 /* It would be better to update the list,
1776 but this is good enough for now. */
1777 if (! EQ (current_buffer->undo_list, Qt))
1778 current_buffer->undo_list = Qnil;
1779
1780 /* If the cached position is for this buffer, clear it out. */
1781 clear_charpos_cache (current_buffer);
1782
1783 if (NILP (flag))
1784 {
1785 /* Do this first, so it can use CHAR_TO_BYTE
1786 to calculate the old correspondences. */
1787 set_intervals_multibyte (0);
1788
1789 current_buffer->enable_multibyte_characters = Qnil;
1790
1791 Z = Z_BYTE;
1792 BEGV = BEGV_BYTE;
1793 ZV = ZV_BYTE;
1794 GPT = GPT_BYTE;
1795 TEMP_SET_PT_BOTH (PT_BYTE, PT_BYTE);
1796
1797 tail = BUF_MARKERS (current_buffer);
1798 while (XSYMBOL (tail) != XSYMBOL (Qnil))
1799 {
1800 XMARKER (tail)->charpos = XMARKER (tail)->bytepos;
1801 tail = XMARKER (tail)->chain;
1802 }
1803 }
1804 else
1805 {
1806 /* Be sure not to have a multibyte sequence striding over the GAP.
1807 Ex: We change this: "...abc\201\241\241 _GAP_ \241\241\241..."
1808 to: "...abc _GAP_ \201\241\241\241\241\241..." */
1809
1810 if (GPT_BYTE > 1 && GPT_BYTE < Z_BYTE
1811 && ! CHAR_HEAD_P (*(GAP_END_ADDR)))
1812 {
1813 unsigned char *p = GPT_ADDR - 1;
1814
1815 while (! CHAR_HEAD_P (*p) && p > BEG_ADDR) p--;
1816 if (BASE_LEADING_CODE_P (*p))
1817 {
1818 int new_gpt = GPT_BYTE - (GPT_ADDR - p);
1819
1820 move_gap_both (new_gpt, new_gpt);
1821 }
1822 }
1823
1824 /* Do this first, so that chars_in_text asks the right question.
1825 set_intervals_multibyte needs it too. */
1826 current_buffer->enable_multibyte_characters = Qt;
1827
1828 GPT_BYTE = advance_to_char_boundary (GPT_BYTE);
1829 GPT = chars_in_text (BEG_ADDR, GPT_BYTE - BEG_BYTE) + BEG;
1830
1831 Z = chars_in_text (GAP_END_ADDR, Z_BYTE - GPT_BYTE) + GPT;
1832
1833 BEGV_BYTE = advance_to_char_boundary (BEGV_BYTE);
1834 if (BEGV_BYTE > GPT_BYTE)
1835 BEGV = chars_in_text (GAP_END_ADDR, BEGV_BYTE - GPT_BYTE) + GPT;
1836 else
1837 BEGV = chars_in_text (BEG_ADDR, BEGV_BYTE - BEG_BYTE) + BEG;
1838
1839 ZV_BYTE = advance_to_char_boundary (ZV_BYTE);
1840 if (ZV_BYTE > GPT_BYTE)
1841 ZV = chars_in_text (GAP_END_ADDR, ZV_BYTE - GPT_BYTE) + GPT;
1842 else
1843 ZV = chars_in_text (BEG_ADDR, ZV_BYTE - BEG_BYTE) + BEG;
1844
1845 {
1846 int pt_byte = advance_to_char_boundary (PT_BYTE);
1847 int pt;
1848
1849 if (pt_byte > GPT_BYTE)
1850 pt = chars_in_text (GAP_END_ADDR, pt_byte - GPT_BYTE) + GPT;
1851 else
1852 pt = chars_in_text (BEG_ADDR, pt_byte - BEG_BYTE) + BEG;
1853 TEMP_SET_PT_BOTH (pt, pt_byte);
1854 }
1855
1856 tail = markers = BUF_MARKERS (current_buffer);
1857
1858 /* This prevents BYTE_TO_CHAR (that is, buf_bytepos_to_charpos) from
1859 getting confused by the markers that have not yet been updated.
1860 It is also a signal that it should never create a marker. */
1861 BUF_MARKERS (current_buffer) = Qnil;
1862
1863 while (XSYMBOL (tail) != XSYMBOL (Qnil))
1864 {
1865 XMARKER (tail)->bytepos
1866 = advance_to_char_boundary (XMARKER (tail)->bytepos);
1867 XMARKER (tail)->charpos = BYTE_TO_CHAR (XMARKER (tail)->bytepos);
1868
1869 tail = XMARKER (tail)->chain;
1870 }
1871
1872 /* Make sure no markers were put on the chain
1873 while the chain value was incorrect. */
1874 if (! EQ (BUF_MARKERS (current_buffer), Qnil))
1875 abort ();
1876
1877 BUF_MARKERS (current_buffer) = markers;
1878
1879 /* Do this last, so it can calculate the new correspondences
1880 between chars and bytes. */
1881 set_intervals_multibyte (1);
1882 }
1883
1884 /* Copy this buffer's new multibyte status
1885 into all of its indirect buffers. */
1886 for (other = all_buffers; other; other = other->next)
1887 if (other->base_buffer == current_buffer && !NILP (other->name))
1888 other->enable_multibyte_characters
1889 = current_buffer->enable_multibyte_characters;
1890
1891 return flag;
1892}
1893\f
1894DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables,
1895 0, 0, 0,
1896 "Switch to Fundamental mode by killing current buffer's local variables.\n\
1897Most local variable bindings are eliminated so that the default values\n\
1898become effective once more. Also, the syntax table is set from\n\
1899`standard-syntax-table', the local keymap is set to nil,\n\
1900and the abbrev table from `fundamental-mode-abbrev-table'.\n\
1901This function also forces redisplay of the mode line.\n\
1902\n\
1903Every function to select a new major mode starts by\n\
1904calling this function.\n\n\
1905As a special exception, local variables whose names have\n\
1906a non-nil `permanent-local' property are not eliminated by this function.\n\
1907\n\
1908The first thing this function does is run\n\
1909the normal hook `change-major-mode-hook'.")
1910 ()
1911{
1912 register Lisp_Object alist, sym, tem;
1913 Lisp_Object oalist;
1914
1915 if (!NILP (Vrun_hooks))
1916 call1 (Vrun_hooks, intern ("change-major-mode-hook"));
1917 oalist = current_buffer->local_var_alist;
1918
1919 /* Make sure none of the bindings in oalist
1920 remain swapped in, in their symbols. */
1921
1922 swap_out_buffer_local_variables (current_buffer);
1923
1924 /* Actually eliminate all local bindings of this buffer. */
1925
1926 reset_buffer_local_variables (current_buffer, 0);
1927
1928 /* Redisplay mode lines; we are changing major mode. */
1929
1930 update_mode_lines++;
1931
1932 /* Any which are supposed to be permanent,
1933 make local again, with the same values they had. */
1934
1935 for (alist = oalist; !NILP (alist); alist = XCDR (alist))
1936 {
1937 sym = XCAR (XCAR (alist));
1938 tem = Fget (sym, Qpermanent_local);
1939 if (! NILP (tem))
1940 {
1941 Fmake_local_variable (sym);
1942 Fset (sym, XCDR (XCAR (alist)));
1943 }
1944 }
1945
1946 /* Force mode-line redisplay. Useful here because all major mode
1947 commands call this function. */
1948 update_mode_lines++;
1949
1950 return Qnil;
1951}
1952
1953/* Make sure no local variables remain set up with buffer B
1954 for their current values. */
1955
1956static void
1957swap_out_buffer_local_variables (b)
1958 struct buffer *b;
1959{
1960 Lisp_Object oalist, alist, sym, tem, buffer;
1961
1962 XSETBUFFER (buffer, b);
1963 oalist = b->local_var_alist;
1964
1965 for (alist = oalist; !NILP (alist); alist = XCDR (alist))
1966 {
1967 sym = XCAR (XCAR (alist));
1968
1969 /* Need not do anything if some other buffer's binding is now encached. */
1970 tem = XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->buffer;
1971 if (XBUFFER (tem) == current_buffer)
1972 {
1973 /* Symbol is set up for this buffer's old local value.
1974 Set it up for the current buffer with the default value. */
1975
1976 tem = XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->cdr;
1977 /* Store the symbol's current value into the alist entry
1978 it is currently set up for. This is so that, if the
1979 local is marked permanent, and we make it local again
1980 later in Fkill_all_local_variables, we don't lose the value. */
1981 XCDR (XCAR (tem))
1982 = do_symval_forwarding (XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->realvalue);
1983 /* Switch to the symbol's default-value alist entry. */
1984 XCAR (tem) = tem;
1985 /* Mark it as current for buffer B. */
1986 XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->buffer = buffer;
1987 /* Store the current value into any forwarding in the symbol. */
1988 store_symval_forwarding (sym,
1989 XBUFFER_LOCAL_VALUE (XSYMBOL (sym)->value)->realvalue,
1990 XCDR (tem));
1991 }
1992 }
1993}
1994\f
1995/* Find all the overlays in the current buffer that contain position POS.
1996 Return the number found, and store them in a vector in *VEC_PTR.
1997 Store in *LEN_PTR the size allocated for the vector.
1998 Store in *NEXT_PTR the next position after POS where an overlay starts,
1999 or ZV if there are no more overlays.
2000 Store in *PREV_PTR the previous position before POS where an overlay ends,
2001 or where an overlay starts which ends at or after POS;
2002 or BEGV if there are no such overlays.
2003 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2004
2005 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2006 when this function is called.
2007
2008 If EXTEND is non-zero, we make the vector bigger if necessary.
2009 If EXTEND is zero, we never extend the vector,
2010 and we store only as many overlays as will fit.
2011 But we still return the total number of overlays. */
2012
2013int
2014overlays_at (pos, extend, vec_ptr, len_ptr, next_ptr, prev_ptr)
2015 int pos;
2016 int extend;
2017 Lisp_Object **vec_ptr;
2018 int *len_ptr;
2019 int *next_ptr;
2020 int *prev_ptr;
2021{
2022 Lisp_Object tail, overlay, start, end;
2023 int idx = 0;
2024 int len = *len_ptr;
2025 Lisp_Object *vec = *vec_ptr;
2026 int next = ZV;
2027 int prev = BEGV;
2028 int inhibit_storing = 0;
2029
2030 for (tail = current_buffer->overlays_before;
2031 GC_CONSP (tail);
2032 tail = XCDR (tail))
2033 {
2034 int startpos, endpos;
2035
2036 overlay = XCAR (tail);
2037
2038 start = OVERLAY_START (overlay);
2039 end = OVERLAY_END (overlay);
2040 endpos = OVERLAY_POSITION (end);
2041 if (endpos < pos)
2042 {
2043 if (prev < endpos)
2044 prev = endpos;
2045 break;
2046 }
2047 startpos = OVERLAY_POSITION (start);
2048 /* This one ends at or after POS
2049 so its start counts for PREV_PTR if it's before POS. */
2050 if (prev < startpos && startpos < pos)
2051 prev = startpos;
2052 if (endpos == pos)
2053 continue;
2054 if (startpos <= pos)
2055 {
2056 if (idx == len)
2057 {
2058 /* The supplied vector is full.
2059 Either make it bigger, or don't store any more in it. */
2060 if (extend)
2061 {
2062 /* Make it work with an initial len == 0. */
2063 len *= 2;
2064 if (len == 0)
2065 len = 4;
2066 *len_ptr = len;
2067 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2068 *vec_ptr = vec;
2069 }
2070 else
2071 inhibit_storing = 1;
2072 }
2073
2074 if (!inhibit_storing)
2075 vec[idx] = overlay;
2076 /* Keep counting overlays even if we can't return them all. */
2077 idx++;
2078 }
2079 else if (startpos < next)
2080 next = startpos;
2081 }
2082
2083 for (tail = current_buffer->overlays_after;
2084 GC_CONSP (tail);
2085 tail = XCDR (tail))
2086 {
2087 int startpos, endpos;
2088
2089 overlay = XCAR (tail);
2090
2091 start = OVERLAY_START (overlay);
2092 end = OVERLAY_END (overlay);
2093 startpos = OVERLAY_POSITION (start);
2094 if (pos < startpos)
2095 {
2096 if (startpos < next)
2097 next = startpos;
2098 break;
2099 }
2100 endpos = OVERLAY_POSITION (end);
2101 if (pos < endpos)
2102 {
2103 if (idx == len)
2104 {
2105 if (extend)
2106 {
2107 *len_ptr = len *= 2;
2108 if (len == 0)
2109 len = *len_ptr = 4;
2110 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2111 *vec_ptr = vec;
2112 }
2113 else
2114 inhibit_storing = 1;
2115 }
2116
2117 if (!inhibit_storing)
2118 vec[idx] = overlay;
2119 idx++;
2120
2121 if (startpos < pos && startpos > prev)
2122 prev = startpos;
2123 }
2124 else if (endpos < pos && endpos > prev)
2125 prev = endpos;
2126 else if (endpos == pos && startpos > prev)
2127 prev = startpos;
2128 }
2129
2130 if (next_ptr)
2131 *next_ptr = next;
2132 if (prev_ptr)
2133 *prev_ptr = prev;
2134 return idx;
2135}
2136\f
2137/* Find all the overlays in the current buffer that overlap the range BEG-END
2138 or are empty at BEG.
2139
2140 Return the number found, and store them in a vector in *VEC_PTR.
2141 Store in *LEN_PTR the size allocated for the vector.
2142 Store in *NEXT_PTR the next position after POS where an overlay starts,
2143 or ZV if there are no more overlays.
2144 Store in *PREV_PTR the previous position before POS where an overlay ends,
2145 or BEGV if there are no previous overlays.
2146 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2147
2148 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2149 when this function is called.
2150
2151 If EXTEND is non-zero, we make the vector bigger if necessary.
2152 If EXTEND is zero, we never extend the vector,
2153 and we store only as many overlays as will fit.
2154 But we still return the total number of overlays. */
2155
2156int
2157overlays_in (beg, end, extend, vec_ptr, len_ptr, next_ptr, prev_ptr)
2158 int beg, end;
2159 int extend;
2160 Lisp_Object **vec_ptr;
2161 int *len_ptr;
2162 int *next_ptr;
2163 int *prev_ptr;
2164{
2165 Lisp_Object tail, overlay, ostart, oend;
2166 int idx = 0;
2167 int len = *len_ptr;
2168 Lisp_Object *vec = *vec_ptr;
2169 int next = ZV;
2170 int prev = BEGV;
2171 int inhibit_storing = 0;
2172
2173 for (tail = current_buffer->overlays_before;
2174 GC_CONSP (tail);
2175 tail = XCDR (tail))
2176 {
2177 int startpos, endpos;
2178
2179 overlay = XCAR (tail);
2180
2181 ostart = OVERLAY_START (overlay);
2182 oend = OVERLAY_END (overlay);
2183 endpos = OVERLAY_POSITION (oend);
2184 if (endpos < beg)
2185 {
2186 if (prev < endpos)
2187 prev = endpos;
2188 break;
2189 }
2190 startpos = OVERLAY_POSITION (ostart);
2191 /* Count an interval if it either overlaps the range
2192 or is empty at the start of the range. */
2193 if ((beg < endpos && startpos < end)
2194 || (startpos == endpos && beg == endpos))
2195 {
2196 if (idx == len)
2197 {
2198 /* The supplied vector is full.
2199 Either make it bigger, or don't store any more in it. */
2200 if (extend)
2201 {
2202 *len_ptr = len *= 2;
2203 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2204 *vec_ptr = vec;
2205 }
2206 else
2207 inhibit_storing = 1;
2208 }
2209
2210 if (!inhibit_storing)
2211 vec[idx] = overlay;
2212 /* Keep counting overlays even if we can't return them all. */
2213 idx++;
2214 }
2215 else if (startpos < next)
2216 next = startpos;
2217 }
2218
2219 for (tail = current_buffer->overlays_after;
2220 GC_CONSP (tail);
2221 tail = XCDR (tail))
2222 {
2223 int startpos, endpos;
2224
2225 overlay = XCAR (tail);
2226
2227 ostart = OVERLAY_START (overlay);
2228 oend = OVERLAY_END (overlay);
2229 startpos = OVERLAY_POSITION (ostart);
2230 if (end < startpos)
2231 {
2232 if (startpos < next)
2233 next = startpos;
2234 break;
2235 }
2236 endpos = OVERLAY_POSITION (oend);
2237 /* Count an interval if it either overlaps the range
2238 or is empty at the start of the range. */
2239 if ((beg < endpos && startpos < end)
2240 || (startpos == endpos && beg == endpos))
2241 {
2242 if (idx == len)
2243 {
2244 if (extend)
2245 {
2246 *len_ptr = len *= 2;
2247 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2248 *vec_ptr = vec;
2249 }
2250 else
2251 inhibit_storing = 1;
2252 }
2253
2254 if (!inhibit_storing)
2255 vec[idx] = overlay;
2256 idx++;
2257 }
2258 else if (endpos < beg && endpos > prev)
2259 prev = endpos;
2260 }
2261
2262 if (next_ptr)
2263 *next_ptr = next;
2264 if (prev_ptr)
2265 *prev_ptr = prev;
2266 return idx;
2267}
2268\f
2269/* Fast function to just test if we're at an overlay boundary. */
2270int
2271overlay_touches_p (pos)
2272 int pos;
2273{
2274 Lisp_Object tail, overlay;
2275
2276 for (tail = current_buffer->overlays_before; GC_CONSP (tail);
2277 tail = XCDR (tail))
2278 {
2279 int endpos;
2280
2281 overlay = XCAR (tail);
2282 if (!GC_OVERLAYP (overlay))
2283 abort ();
2284
2285 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2286 if (endpos < pos)
2287 break;
2288 if (endpos == pos || OVERLAY_POSITION (OVERLAY_START (overlay)) == pos)
2289 return 1;
2290 }
2291
2292 for (tail = current_buffer->overlays_after; GC_CONSP (tail);
2293 tail = XCDR (tail))
2294 {
2295 int startpos;
2296
2297 overlay = XCAR (tail);
2298 if (!GC_OVERLAYP (overlay))
2299 abort ();
2300
2301 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2302 if (pos < startpos)
2303 break;
2304 if (startpos == pos || OVERLAY_POSITION (OVERLAY_END (overlay)) == pos)
2305 return 1;
2306 }
2307 return 0;
2308}
2309\f
2310struct sortvec
2311{
2312 Lisp_Object overlay;
2313 int beg, end;
2314 int priority;
2315};
2316
2317static int
2318compare_overlays (v1, v2)
2319 const void *v1, *v2;
2320{
2321 const struct sortvec *s1 = (const struct sortvec *) v1;
2322 const struct sortvec *s2 = (const struct sortvec *) v2;
2323 if (s1->priority != s2->priority)
2324 return s1->priority - s2->priority;
2325 if (s1->beg != s2->beg)
2326 return s1->beg - s2->beg;
2327 if (s1->end != s2->end)
2328 return s2->end - s1->end;
2329 return 0;
2330}
2331
2332/* Sort an array of overlays by priority. The array is modified in place.
2333 The return value is the new size; this may be smaller than the original
2334 size if some of the overlays were invalid or were window-specific. */
2335int
2336sort_overlays (overlay_vec, noverlays, w)
2337 Lisp_Object *overlay_vec;
2338 int noverlays;
2339 struct window *w;
2340{
2341 int i, j;
2342 struct sortvec *sortvec;
2343 sortvec = (struct sortvec *) alloca (noverlays * sizeof (struct sortvec));
2344
2345 /* Put the valid and relevant overlays into sortvec. */
2346
2347 for (i = 0, j = 0; i < noverlays; i++)
2348 {
2349 Lisp_Object tem;
2350 Lisp_Object overlay;
2351
2352 overlay = overlay_vec[i];
2353 if (OVERLAY_VALID (overlay)
2354 && OVERLAY_POSITION (OVERLAY_START (overlay)) > 0
2355 && OVERLAY_POSITION (OVERLAY_END (overlay)) > 0)
2356 {
2357 /* If we're interested in a specific window, then ignore
2358 overlays that are limited to some other window. */
2359 if (w)
2360 {
2361 Lisp_Object window;
2362
2363 window = Foverlay_get (overlay, Qwindow);
2364 if (WINDOWP (window) && XWINDOW (window) != w)
2365 continue;
2366 }
2367
2368 /* This overlay is good and counts: put it into sortvec. */
2369 sortvec[j].overlay = overlay;
2370 sortvec[j].beg = OVERLAY_POSITION (OVERLAY_START (overlay));
2371 sortvec[j].end = OVERLAY_POSITION (OVERLAY_END (overlay));
2372 tem = Foverlay_get (overlay, Qpriority);
2373 if (INTEGERP (tem))
2374 sortvec[j].priority = XINT (tem);
2375 else
2376 sortvec[j].priority = 0;
2377 j++;
2378 }
2379 }
2380 noverlays = j;
2381
2382 /* Sort the overlays into the proper order: increasing priority. */
2383
2384 if (noverlays > 1)
2385 qsort (sortvec, noverlays, sizeof (struct sortvec), compare_overlays);
2386
2387 for (i = 0; i < noverlays; i++)
2388 overlay_vec[i] = sortvec[i].overlay;
2389 return (noverlays);
2390}
2391\f
2392struct sortstr
2393{
2394 Lisp_Object string, string2;
2395 int size;
2396 int priority;
2397};
2398
2399struct sortstrlist
2400{
2401 struct sortstr *buf; /* An array that expands as needed; never freed. */
2402 int size; /* Allocated length of that array. */
2403 int used; /* How much of the array is currently in use. */
2404 int bytes; /* Total length of the strings in buf. */
2405};
2406
2407/* Buffers for storing information about the overlays touching a given
2408 position. These could be automatic variables in overlay_strings, but
2409 it's more efficient to hold onto the memory instead of repeatedly
2410 allocating and freeing it. */
2411static struct sortstrlist overlay_heads, overlay_tails;
2412static unsigned char *overlay_str_buf;
2413
2414/* Allocated length of overlay_str_buf. */
2415static int overlay_str_len;
2416
2417/* A comparison function suitable for passing to qsort. */
2418static int
2419cmp_for_strings (as1, as2)
2420 char *as1, *as2;
2421{
2422 struct sortstr *s1 = (struct sortstr *)as1;
2423 struct sortstr *s2 = (struct sortstr *)as2;
2424 if (s1->size != s2->size)
2425 return s2->size - s1->size;
2426 if (s1->priority != s2->priority)
2427 return s1->priority - s2->priority;
2428 return 0;
2429}
2430
2431static void
2432record_overlay_string (ssl, str, str2, pri, size)
2433 struct sortstrlist *ssl;
2434 Lisp_Object str, str2, pri;
2435 int size;
2436{
2437 int nbytes;
2438
2439 if (ssl->used == ssl->size)
2440 {
2441 if (ssl->buf)
2442 ssl->size *= 2;
2443 else
2444 ssl->size = 5;
2445 ssl->buf = ((struct sortstr *)
2446 xrealloc (ssl->buf, ssl->size * sizeof (struct sortstr)));
2447 }
2448 ssl->buf[ssl->used].string = str;
2449 ssl->buf[ssl->used].string2 = str2;
2450 ssl->buf[ssl->used].size = size;
2451 ssl->buf[ssl->used].priority = (INTEGERP (pri) ? XINT (pri) : 0);
2452 ssl->used++;
2453
2454 if (NILP (current_buffer->enable_multibyte_characters))
2455 nbytes = XSTRING (str)->size;
2456 else if (! STRING_MULTIBYTE (str))
2457 nbytes = count_size_as_multibyte (XSTRING (str)->data,
2458 STRING_BYTES (XSTRING (str)));
2459 else
2460 nbytes = STRING_BYTES (XSTRING (str));
2461
2462 ssl->bytes += nbytes;
2463
2464 if (STRINGP (str2))
2465 {
2466 if (NILP (current_buffer->enable_multibyte_characters))
2467 nbytes = XSTRING (str2)->size;
2468 else if (! STRING_MULTIBYTE (str2))
2469 nbytes = count_size_as_multibyte (XSTRING (str2)->data,
2470 STRING_BYTES (XSTRING (str2)));
2471 else
2472 nbytes = STRING_BYTES (XSTRING (str2));
2473
2474 ssl->bytes += nbytes;
2475 }
2476}
2477
2478/* Return the concatenation of the strings associated with overlays that
2479 begin or end at POS, ignoring overlays that are specific to a window
2480 other than W. The strings are concatenated in the appropriate order:
2481 shorter overlays nest inside longer ones, and higher priority inside
2482 lower. Normally all of the after-strings come first, but zero-sized
2483 overlays have their after-strings ride along with the before-strings
2484 because it would look strange to print them inside-out.
2485
2486 Returns the string length, and stores the contents indirectly through
2487 PSTR, if that variable is non-null. The string may be overwritten by
2488 subsequent calls. */
2489
2490int
2491overlay_strings (pos, w, pstr)
2492 int pos;
2493 struct window *w;
2494 unsigned char **pstr;
2495{
2496 Lisp_Object ov, overlay, window, str;
2497 int startpos, endpos;
2498 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
2499
2500 overlay_heads.used = overlay_heads.bytes = 0;
2501 overlay_tails.used = overlay_tails.bytes = 0;
2502 for (ov = current_buffer->overlays_before; CONSP (ov); ov = XCDR (ov))
2503 {
2504 overlay = XCAR (ov);
2505 if (!OVERLAYP (overlay))
2506 abort ();
2507
2508 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2509 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2510 if (endpos < pos)
2511 break;
2512 if (endpos != pos && startpos != pos)
2513 continue;
2514 window = Foverlay_get (overlay, Qwindow);
2515 if (WINDOWP (window) && XWINDOW (window) != w)
2516 continue;
2517 if (startpos == pos
2518 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
2519 record_overlay_string (&overlay_heads, str,
2520 (startpos == endpos
2521 ? Foverlay_get (overlay, Qafter_string)
2522 : Qnil),
2523 Foverlay_get (overlay, Qpriority),
2524 endpos - startpos);
2525 else if (endpos == pos
2526 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
2527 record_overlay_string (&overlay_tails, str, Qnil,
2528 Foverlay_get (overlay, Qpriority),
2529 endpos - startpos);
2530 }
2531 for (ov = current_buffer->overlays_after; CONSP (ov); ov = XCDR (ov))
2532 {
2533 overlay = XCAR (ov);
2534 if (!OVERLAYP (overlay))
2535 abort ();
2536
2537 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2538 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2539 if (startpos > pos)
2540 break;
2541 if (endpos != pos && startpos != pos)
2542 continue;
2543 window = Foverlay_get (overlay, Qwindow);
2544 if (WINDOWP (window) && XWINDOW (window) != w)
2545 continue;
2546 if (startpos == pos
2547 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
2548 record_overlay_string (&overlay_heads, str,
2549 (startpos == endpos
2550 ? Foverlay_get (overlay, Qafter_string)
2551 : Qnil),
2552 Foverlay_get (overlay, Qpriority),
2553 endpos - startpos);
2554 else if (endpos == pos
2555 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
2556 record_overlay_string (&overlay_tails, str, Qnil,
2557 Foverlay_get (overlay, Qpriority),
2558 endpos - startpos);
2559 }
2560 if (overlay_tails.used > 1)
2561 qsort (overlay_tails.buf, overlay_tails.used, sizeof (struct sortstr),
2562 cmp_for_strings);
2563 if (overlay_heads.used > 1)
2564 qsort (overlay_heads.buf, overlay_heads.used, sizeof (struct sortstr),
2565 cmp_for_strings);
2566 if (overlay_heads.bytes || overlay_tails.bytes)
2567 {
2568 Lisp_Object tem;
2569 int i;
2570 unsigned char *p;
2571 int total = overlay_heads.bytes + overlay_tails.bytes;
2572
2573 if (total > overlay_str_len)
2574 {
2575 overlay_str_len = total;
2576 overlay_str_buf = (unsigned char *)xrealloc (overlay_str_buf,
2577 total);
2578 }
2579 p = overlay_str_buf;
2580 for (i = overlay_tails.used; --i >= 0;)
2581 {
2582 int nbytes;
2583 tem = overlay_tails.buf[i].string;
2584 nbytes = copy_text (XSTRING (tem)->data, p,
2585 STRING_BYTES (XSTRING (tem)),
2586 STRING_MULTIBYTE (tem), multibyte);
2587 p += nbytes;
2588 }
2589 for (i = 0; i < overlay_heads.used; ++i)
2590 {
2591 int nbytes;
2592 tem = overlay_heads.buf[i].string;
2593 nbytes = copy_text (XSTRING (tem)->data, p,
2594 STRING_BYTES (XSTRING (tem)),
2595 STRING_MULTIBYTE (tem), multibyte);
2596 p += nbytes;
2597 tem = overlay_heads.buf[i].string2;
2598 if (STRINGP (tem))
2599 {
2600 nbytes = copy_text (XSTRING (tem)->data, p,
2601 STRING_BYTES (XSTRING (tem)),
2602 STRING_MULTIBYTE (tem), multibyte);
2603 p += nbytes;
2604 }
2605 }
2606 if (p != overlay_str_buf + total)
2607 abort ();
2608 if (pstr)
2609 *pstr = overlay_str_buf;
2610 return total;
2611 }
2612 return 0;
2613}
2614\f
2615/* Shift overlays in BUF's overlay lists, to center the lists at POS. */
2616
2617void
2618recenter_overlay_lists (buf, pos)
2619 struct buffer *buf;
2620 int pos;
2621{
2622 Lisp_Object overlay, tail, next, prev, beg, end;
2623
2624 /* See if anything in overlays_before should move to overlays_after. */
2625
2626 /* We don't strictly need prev in this loop; it should always be nil.
2627 But we use it for symmetry and in case that should cease to be true
2628 with some future change. */
2629 prev = Qnil;
2630 for (tail = buf->overlays_before;
2631 CONSP (tail);
2632 prev = tail, tail = next)
2633 {
2634 next = XCDR (tail);
2635 overlay = XCAR (tail);
2636
2637 /* If the overlay is not valid, get rid of it. */
2638 if (!OVERLAY_VALID (overlay))
2639#if 1
2640 abort ();
2641#else
2642 {
2643 /* Splice the cons cell TAIL out of overlays_before. */
2644 if (!NILP (prev))
2645 XCDR (prev) = next;
2646 else
2647 buf->overlays_before = next;
2648 tail = prev;
2649 continue;
2650 }
2651#endif
2652
2653 beg = OVERLAY_START (overlay);
2654 end = OVERLAY_END (overlay);
2655
2656 if (OVERLAY_POSITION (end) > pos)
2657 {
2658 /* OVERLAY needs to be moved. */
2659 int where = OVERLAY_POSITION (beg);
2660 Lisp_Object other, other_prev;
2661
2662 /* Splice the cons cell TAIL out of overlays_before. */
2663 if (!NILP (prev))
2664 XCDR (prev) = next;
2665 else
2666 buf->overlays_before = next;
2667
2668 /* Search thru overlays_after for where to put it. */
2669 other_prev = Qnil;
2670 for (other = buf->overlays_after;
2671 CONSP (other);
2672 other_prev = other, other = XCDR (other))
2673 {
2674 Lisp_Object otherbeg, otheroverlay;
2675
2676 otheroverlay = XCAR (other);
2677 if (! OVERLAY_VALID (otheroverlay))
2678 abort ();
2679
2680 otherbeg = OVERLAY_START (otheroverlay);
2681 if (OVERLAY_POSITION (otherbeg) >= where)
2682 break;
2683 }
2684
2685 /* Add TAIL to overlays_after before OTHER. */
2686 XCDR (tail) = other;
2687 if (!NILP (other_prev))
2688 XCDR (other_prev) = tail;
2689 else
2690 buf->overlays_after = tail;
2691 tail = prev;
2692 }
2693 else
2694 /* We've reached the things that should stay in overlays_before.
2695 All the rest of overlays_before must end even earlier,
2696 so stop now. */
2697 break;
2698 }
2699
2700 /* See if anything in overlays_after should be in overlays_before. */
2701 prev = Qnil;
2702 for (tail = buf->overlays_after;
2703 CONSP (tail);
2704 prev = tail, tail = next)
2705 {
2706 next = XCDR (tail);
2707 overlay = XCAR (tail);
2708
2709 /* If the overlay is not valid, get rid of it. */
2710 if (!OVERLAY_VALID (overlay))
2711#if 1
2712 abort ();
2713#else
2714 {
2715 /* Splice the cons cell TAIL out of overlays_after. */
2716 if (!NILP (prev))
2717 XCDR (prev) = next;
2718 else
2719 buf->overlays_after = next;
2720 tail = prev;
2721 continue;
2722 }
2723#endif
2724
2725 beg = OVERLAY_START (overlay);
2726 end = OVERLAY_END (overlay);
2727
2728 /* Stop looking, when we know that nothing further
2729 can possibly end before POS. */
2730 if (OVERLAY_POSITION (beg) > pos)
2731 break;
2732
2733 if (OVERLAY_POSITION (end) <= pos)
2734 {
2735 /* OVERLAY needs to be moved. */
2736 int where = OVERLAY_POSITION (end);
2737 Lisp_Object other, other_prev;
2738
2739 /* Splice the cons cell TAIL out of overlays_after. */
2740 if (!NILP (prev))
2741 XCDR (prev) = next;
2742 else
2743 buf->overlays_after = next;
2744
2745 /* Search thru overlays_before for where to put it. */
2746 other_prev = Qnil;
2747 for (other = buf->overlays_before;
2748 CONSP (other);
2749 other_prev = other, other = XCDR (other))
2750 {
2751 Lisp_Object otherend, otheroverlay;
2752
2753 otheroverlay = XCAR (other);
2754 if (! OVERLAY_VALID (otheroverlay))
2755 abort ();
2756
2757 otherend = OVERLAY_END (otheroverlay);
2758 if (OVERLAY_POSITION (otherend) <= where)
2759 break;
2760 }
2761
2762 /* Add TAIL to overlays_before before OTHER. */
2763 XCDR (tail) = other;
2764 if (!NILP (other_prev))
2765 XCDR (other_prev) = tail;
2766 else
2767 buf->overlays_before = tail;
2768 tail = prev;
2769 }
2770 }
2771
2772 XSETFASTINT (buf->overlay_center, pos);
2773}
2774
2775void
2776adjust_overlays_for_insert (pos, length)
2777 int pos;
2778 int length;
2779{
2780 /* After an insertion, the lists are still sorted properly,
2781 but we may need to update the value of the overlay center. */
2782 if (XFASTINT (current_buffer->overlay_center) >= pos)
2783 XSETFASTINT (current_buffer->overlay_center,
2784 XFASTINT (current_buffer->overlay_center) + length);
2785}
2786
2787void
2788adjust_overlays_for_delete (pos, length)
2789 int pos;
2790 int length;
2791{
2792 if (XFASTINT (current_buffer->overlay_center) < pos)
2793 /* The deletion was to our right. No change needed; the before- and
2794 after-lists are still consistent. */
2795 ;
2796 else if (XFASTINT (current_buffer->overlay_center) > pos + length)
2797 /* The deletion was to our left. We need to adjust the center value
2798 to account for the change in position, but the lists are consistent
2799 given the new value. */
2800 XSETFASTINT (current_buffer->overlay_center,
2801 XFASTINT (current_buffer->overlay_center) - length);
2802 else
2803 /* We're right in the middle. There might be things on the after-list
2804 that now belong on the before-list. Recentering will move them,
2805 and also update the center point. */
2806 recenter_overlay_lists (current_buffer, pos);
2807}
2808
2809/* Fix up overlays that were garbled as a result of permuting markers
2810 in the range START through END. Any overlay with at least one
2811 endpoint in this range will need to be unlinked from the overlay
2812 list and reinserted in its proper place.
2813 Such an overlay might even have negative size at this point.
2814 If so, we'll reverse the endpoints. Can you think of anything
2815 better to do in this situation? */
2816void
2817fix_overlays_in_range (start, end)
2818 register int start, end;
2819{
2820 Lisp_Object overlay;
2821 Lisp_Object before_list, after_list;
2822 Lisp_Object *ptail, *pbefore = &before_list, *pafter = &after_list;
2823 int startpos, endpos;
2824
2825 /* This algorithm shifts links around instead of consing and GCing.
2826 The loop invariant is that before_list (resp. after_list) is a
2827 well-formed list except that its last element, the one that
2828 *pbefore (resp. *pafter) points to, is still uninitialized.
2829 So it's not a bug that before_list isn't initialized, although
2830 it may look strange. */
2831 for (ptail = &current_buffer->overlays_before; CONSP (*ptail);)
2832 {
2833 overlay = XCAR (*ptail);
2834 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2835 if (endpos < start)
2836 break;
2837 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2838 if (endpos < end
2839 || (startpos >= start && startpos < end))
2840 {
2841 /* If the overlay is backwards, fix that now. */
2842 if (startpos > endpos)
2843 {
2844 int tem;
2845 Fset_marker (OVERLAY_START (overlay), make_number (endpos),
2846 Qnil);
2847 Fset_marker (OVERLAY_END (overlay), make_number (startpos),
2848 Qnil);
2849 tem = startpos; startpos = endpos; endpos = tem;
2850 }
2851 /* Add it to the end of the wrong list. Later on,
2852 recenter_overlay_lists will move it to the right place. */
2853 if (endpos < XINT (current_buffer->overlay_center))
2854 {
2855 *pafter = *ptail;
2856 pafter = &XCDR (*ptail);
2857 }
2858 else
2859 {
2860 *pbefore = *ptail;
2861 pbefore = &XCDR (*ptail);
2862 }
2863 *ptail = XCDR (*ptail);
2864 }
2865 else
2866 ptail = &XCDR (*ptail);
2867 }
2868 for (ptail = &current_buffer->overlays_after; CONSP (*ptail);)
2869 {
2870 overlay = XCAR (*ptail);
2871 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2872 if (startpos >= end)
2873 break;
2874 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2875 if (startpos >= start
2876 || (endpos >= start && endpos < end))
2877 {
2878 if (startpos > endpos)
2879 {
2880 int tem;
2881 Fset_marker (OVERLAY_START (overlay), make_number (endpos),
2882 Qnil);
2883 Fset_marker (OVERLAY_END (overlay), make_number (startpos),
2884 Qnil);
2885 tem = startpos; startpos = endpos; endpos = tem;
2886 }
2887 if (endpos < XINT (current_buffer->overlay_center))
2888 {
2889 *pafter = *ptail;
2890 pafter = &XCDR (*ptail);
2891 }
2892 else
2893 {
2894 *pbefore = *ptail;
2895 pbefore = &XCDR (*ptail);
2896 }
2897 *ptail = XCDR (*ptail);
2898 }
2899 else
2900 ptail = &XCDR (*ptail);
2901 }
2902
2903 /* Splice the constructed (wrong) lists into the buffer's lists,
2904 and let the recenter function make it sane again. */
2905 *pbefore = current_buffer->overlays_before;
2906 current_buffer->overlays_before = before_list;
2907 recenter_overlay_lists (current_buffer,
2908 XINT (current_buffer->overlay_center));
2909
2910 *pafter = current_buffer->overlays_after;
2911 current_buffer->overlays_after = after_list;
2912 recenter_overlay_lists (current_buffer,
2913 XINT (current_buffer->overlay_center));
2914}
2915
2916/* We have two types of overlay: the one whose ending marker is
2917 after-insertion-marker (this is the usual case) and the one whose
2918 ending marker is before-insertion-marker. When `overlays_before'
2919 contains overlays of the latter type and the former type in this
2920 order and both overlays end at inserting position, inserting a text
2921 increases only the ending marker of the latter type, which results
2922 in incorrect ordering of `overlays_before'.
2923
2924 This function fixes ordering of overlays in the slot
2925 `overlays_before' of the buffer *BP. Before the insertion, `point'
2926 was at PREV, and now is at POS. */
2927
2928void
2929fix_overlays_before (bp, prev, pos)
2930 struct buffer *bp;
2931 int prev, pos;
2932{
2933 Lisp_Object *tailp = &bp->overlays_before;
2934 Lisp_Object *right_place;
2935 int end;
2936
2937 /* After the insertion, the several overlays may be in incorrect
2938 order. The possibility is that, in the list `overlays_before',
2939 an overlay which ends at POS appears after an overlay which ends
2940 at PREV. Since POS is greater than PREV, we must fix the
2941 ordering of these overlays, by moving overlays ends at POS before
2942 the overlays ends at PREV. */
2943
2944 /* At first, find a place where disordered overlays should be linked
2945 in. It is where an overlay which end before POS exists. (i.e. an
2946 overlay whose ending marker is after-insertion-marker if disorder
2947 exists). */
2948 while (!NILP (*tailp)
2949 && ((end = OVERLAY_POSITION (OVERLAY_END (XCAR (*tailp))))
2950 >= pos))
2951 tailp = &XCDR (*tailp);
2952
2953 /* If we don't find such an overlay,
2954 or the found one ends before PREV,
2955 or the found one is the last one in the list,
2956 we don't have to fix anything. */
2957 if (NILP (*tailp)
2958 || end < prev
2959 || NILP (XCDR (*tailp)))
2960 return;
2961
2962 right_place = tailp;
2963 tailp = &XCDR (*tailp);
2964
2965 /* Now, end position of overlays in the list *TAILP should be before
2966 or equal to PREV. In the loop, an overlay which ends at POS is
2967 moved ahead to the place pointed by RIGHT_PLACE. If we found an
2968 overlay which ends before PREV, the remaining overlays are in
2969 correct order. */
2970 while (!NILP (*tailp))
2971 {
2972 end = OVERLAY_POSITION (OVERLAY_END (XCAR (*tailp)));
2973
2974 if (end == pos)
2975 { /* This overlay is disordered. */
2976 Lisp_Object found = *tailp;
2977
2978 /* Unlink the found overlay. */
2979 *tailp = XCDR (found);
2980 /* Move an overlay at RIGHT_PLACE to the next of the found one. */
2981 XCDR (found) = *right_place;
2982 /* Link it into the right place. */
2983 *right_place = found;
2984 }
2985 else if (end == prev)
2986 tailp = &XCDR (*tailp);
2987 else /* No more disordered overlay. */
2988 break;
2989 }
2990}
2991\f
2992DEFUN ("overlayp", Foverlayp, Soverlayp, 1, 1, 0,
2993 "Return t if OBJECT is an overlay.")
2994 (object)
2995 Lisp_Object object;
2996{
2997 return (OVERLAYP (object) ? Qt : Qnil);
2998}
2999
3000DEFUN ("make-overlay", Fmake_overlay, Smake_overlay, 2, 5, 0,
3001 "Create a new overlay with range BEG to END in BUFFER.\n\
3002If omitted, BUFFER defaults to the current buffer.\n\
3003BEG and END may be integers or markers.\n\
3004The fourth arg FRONT-ADVANCE, if non-nil, makes the\n\
3005front delimiter advance when text is inserted there.\n\
3006The fifth arg REAR-ADVANCE, if non-nil, makes the\n\
3007rear delimiter advance when text is inserted there.")
3008 (beg, end, buffer, front_advance, rear_advance)
3009 Lisp_Object beg, end, buffer;
3010 Lisp_Object front_advance, rear_advance;
3011{
3012 Lisp_Object overlay;
3013 struct buffer *b;
3014
3015 if (NILP (buffer))
3016 XSETBUFFER (buffer, current_buffer);
3017 else
3018 CHECK_BUFFER (buffer, 2);
3019 if (MARKERP (beg)
3020 && ! EQ (Fmarker_buffer (beg), buffer))
3021 error ("Marker points into wrong buffer");
3022 if (MARKERP (end)
3023 && ! EQ (Fmarker_buffer (end), buffer))
3024 error ("Marker points into wrong buffer");
3025
3026 CHECK_NUMBER_COERCE_MARKER (beg, 1);
3027 CHECK_NUMBER_COERCE_MARKER (end, 1);
3028
3029 if (XINT (beg) > XINT (end))
3030 {
3031 Lisp_Object temp;
3032 temp = beg; beg = end; end = temp;
3033 }
3034
3035 b = XBUFFER (buffer);
3036
3037 beg = Fset_marker (Fmake_marker (), beg, buffer);
3038 end = Fset_marker (Fmake_marker (), end, buffer);
3039
3040 if (!NILP (front_advance))
3041 XMARKER (beg)->insertion_type = 1;
3042 if (!NILP (rear_advance))
3043 XMARKER (end)->insertion_type = 1;
3044
3045 overlay = allocate_misc ();
3046 XMISCTYPE (overlay) = Lisp_Misc_Overlay;
3047 XOVERLAY (overlay)->start = beg;
3048 XOVERLAY (overlay)->end = end;
3049 XOVERLAY (overlay)->plist = Qnil;
3050
3051 /* Put the new overlay on the wrong list. */
3052 end = OVERLAY_END (overlay);
3053 if (OVERLAY_POSITION (end) < XINT (b->overlay_center))
3054 b->overlays_after = Fcons (overlay, b->overlays_after);
3055 else
3056 b->overlays_before = Fcons (overlay, b->overlays_before);
3057
3058 /* This puts it in the right list, and in the right order. */
3059 recenter_overlay_lists (b, XINT (b->overlay_center));
3060
3061 /* We don't need to redisplay the region covered by the overlay, because
3062 the overlay has no properties at the moment. */
3063
3064 return overlay;
3065}
3066\f
3067/* Mark a section of BUF as needing redisplay because of overlays changes. */
3068
3069static void
3070modify_overlay (buf, start, end)
3071 struct buffer *buf;
3072 int start, end;
3073{
3074 if (start == end)
3075 return;
3076
3077 if (start > end)
3078 {
3079 int temp = start;
3080 start = end; end = temp;
3081 }
3082
3083 /* If this is a buffer not in the selected window,
3084 we must do other windows. */
3085 if (buf != XBUFFER (XWINDOW (selected_window)->buffer))
3086 windows_or_buffers_changed = 1;
3087 /* If multiple windows show this buffer, we must do other windows. */
3088 else if (buffer_shared > 1)
3089 windows_or_buffers_changed = 1;
3090 else
3091 BUF_COMPUTE_UNCHANGED (buf, start, end);
3092
3093 ++BUF_OVERLAY_MODIFF (buf);
3094}
3095
3096\f\f
3097Lisp_Object Fdelete_overlay ();
3098
3099DEFUN ("move-overlay", Fmove_overlay, Smove_overlay, 3, 4, 0,
3100 "Set the endpoints of OVERLAY to BEG and END in BUFFER.\n\
3101If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.\n\
3102If BUFFER is omitted, and OVERLAY is in no buffer, put it in the current\n\
3103buffer.")
3104 (overlay, beg, end, buffer)
3105 Lisp_Object overlay, beg, end, buffer;
3106{
3107 struct buffer *b, *ob;
3108 Lisp_Object obuffer;
3109 int count = specpdl_ptr - specpdl;
3110
3111 CHECK_OVERLAY (overlay, 0);
3112 if (NILP (buffer))
3113 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3114 if (NILP (buffer))
3115 XSETBUFFER (buffer, current_buffer);
3116 CHECK_BUFFER (buffer, 3);
3117
3118 if (MARKERP (beg)
3119 && ! EQ (Fmarker_buffer (beg), buffer))
3120 error ("Marker points into wrong buffer");
3121 if (MARKERP (end)
3122 && ! EQ (Fmarker_buffer (end), buffer))
3123 error ("Marker points into wrong buffer");
3124
3125 CHECK_NUMBER_COERCE_MARKER (beg, 1);
3126 CHECK_NUMBER_COERCE_MARKER (end, 1);
3127
3128 if (XINT (beg) == XINT (end) && ! NILP (Foverlay_get (overlay, Qevaporate)))
3129 return Fdelete_overlay (overlay);
3130
3131 if (XINT (beg) > XINT (end))
3132 {
3133 Lisp_Object temp;
3134 temp = beg; beg = end; end = temp;
3135 }
3136
3137 specbind (Qinhibit_quit, Qt);
3138
3139 obuffer = Fmarker_buffer (OVERLAY_START (overlay));
3140 b = XBUFFER (buffer);
3141 ob = XBUFFER (obuffer);
3142
3143 /* If the overlay has changed buffers, do a thorough redisplay. */
3144 if (!EQ (buffer, obuffer))
3145 {
3146 /* Redisplay where the overlay was. */
3147 if (!NILP (obuffer))
3148 {
3149 int o_beg;
3150 int o_end;
3151
3152 o_beg = OVERLAY_POSITION (OVERLAY_START (overlay));
3153 o_end = OVERLAY_POSITION (OVERLAY_END (overlay));
3154
3155 modify_overlay (ob, o_beg, o_end);
3156 }
3157
3158 /* Redisplay where the overlay is going to be. */
3159 modify_overlay (b, XINT (beg), XINT (end));
3160 }
3161 else
3162 /* Redisplay the area the overlay has just left, or just enclosed. */
3163 {
3164 int o_beg, o_end;
3165
3166 o_beg = OVERLAY_POSITION (OVERLAY_START (overlay));
3167 o_end = OVERLAY_POSITION (OVERLAY_END (overlay));
3168
3169 if (o_beg == XINT (beg))
3170 modify_overlay (b, o_end, XINT (end));
3171 else if (o_end == XINT (end))
3172 modify_overlay (b, o_beg, XINT (beg));
3173 else
3174 {
3175 if (XINT (beg) < o_beg) o_beg = XINT (beg);
3176 if (XINT (end) > o_end) o_end = XINT (end);
3177 modify_overlay (b, o_beg, o_end);
3178 }
3179 }
3180
3181 if (!NILP (obuffer))
3182 {
3183 ob->overlays_before = Fdelq (overlay, ob->overlays_before);
3184 ob->overlays_after = Fdelq (overlay, ob->overlays_after);
3185 }
3186
3187 Fset_marker (OVERLAY_START (overlay), beg, buffer);
3188 Fset_marker (OVERLAY_END (overlay), end, buffer);
3189
3190 /* Put the overlay on the wrong list. */
3191 end = OVERLAY_END (overlay);
3192 if (OVERLAY_POSITION (end) < XINT (b->overlay_center))
3193 b->overlays_after = Fcons (overlay, b->overlays_after);
3194 else
3195 b->overlays_before = Fcons (overlay, b->overlays_before);
3196
3197 /* This puts it in the right list, and in the right order. */
3198 recenter_overlay_lists (b, XINT (b->overlay_center));
3199
3200 return unbind_to (count, overlay);
3201}
3202
3203DEFUN ("delete-overlay", Fdelete_overlay, Sdelete_overlay, 1, 1, 0,
3204 "Delete the overlay OVERLAY from its buffer.")
3205 (overlay)
3206 Lisp_Object overlay;
3207{
3208 Lisp_Object buffer;
3209 struct buffer *b;
3210 int count = specpdl_ptr - specpdl;
3211
3212 CHECK_OVERLAY (overlay, 0);
3213
3214 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3215 if (NILP (buffer))
3216 return Qnil;
3217
3218 b = XBUFFER (buffer);
3219
3220 specbind (Qinhibit_quit, Qt);
3221
3222 b->overlays_before = Fdelq (overlay, b->overlays_before);
3223 b->overlays_after = Fdelq (overlay, b->overlays_after);
3224
3225 modify_overlay (b,
3226 marker_position (OVERLAY_START (overlay)),
3227 marker_position (OVERLAY_END (overlay)));
3228
3229 Fset_marker (OVERLAY_START (overlay), Qnil, Qnil);
3230 Fset_marker (OVERLAY_END (overlay), Qnil, Qnil);
3231
3232 return unbind_to (count, Qnil);
3233}
3234\f
3235/* Overlay dissection functions. */
3236
3237DEFUN ("overlay-start", Foverlay_start, Soverlay_start, 1, 1, 0,
3238 "Return the position at which OVERLAY starts.")
3239 (overlay)
3240 Lisp_Object overlay;
3241{
3242 CHECK_OVERLAY (overlay, 0);
3243
3244 return (Fmarker_position (OVERLAY_START (overlay)));
3245}
3246
3247DEFUN ("overlay-end", Foverlay_end, Soverlay_end, 1, 1, 0,
3248 "Return the position at which OVERLAY ends.")
3249 (overlay)
3250 Lisp_Object overlay;
3251{
3252 CHECK_OVERLAY (overlay, 0);
3253
3254 return (Fmarker_position (OVERLAY_END (overlay)));
3255}
3256
3257DEFUN ("overlay-buffer", Foverlay_buffer, Soverlay_buffer, 1, 1, 0,
3258 "Return the buffer OVERLAY belongs to.")
3259 (overlay)
3260 Lisp_Object overlay;
3261{
3262 CHECK_OVERLAY (overlay, 0);
3263
3264 return Fmarker_buffer (OVERLAY_START (overlay));
3265}
3266
3267DEFUN ("overlay-properties", Foverlay_properties, Soverlay_properties, 1, 1, 0,
3268 "Return a list of the properties on OVERLAY.\n\
3269This is a copy of OVERLAY's plist; modifying its conses has no effect on\n\
3270OVERLAY.")
3271 (overlay)
3272 Lisp_Object overlay;
3273{
3274 CHECK_OVERLAY (overlay, 0);
3275
3276 return Fcopy_sequence (XOVERLAY (overlay)->plist);
3277}
3278
3279\f
3280DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 1, 0,
3281 "Return a list of the overlays that contain position POS.")
3282 (pos)
3283 Lisp_Object pos;
3284{
3285 int noverlays;
3286 Lisp_Object *overlay_vec;
3287 int len;
3288 Lisp_Object result;
3289
3290 CHECK_NUMBER_COERCE_MARKER (pos, 0);
3291
3292 len = 10;
3293 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
3294
3295 /* Put all the overlays we want in a vector in overlay_vec.
3296 Store the length in len. */
3297 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
3298 (int *) 0, (int *) 0);
3299
3300 /* Make a list of them all. */
3301 result = Flist (noverlays, overlay_vec);
3302
3303 xfree (overlay_vec);
3304 return result;
3305}
3306
3307DEFUN ("overlays-in", Foverlays_in, Soverlays_in, 2, 2, 0,
3308 "Return a list of the overlays that overlap the region BEG ... END.\n\
3309Overlap means that at least one character is contained within the overlay\n\
3310and also contained within the specified region.\n\
3311Empty overlays are included in the result if they are located at BEG\n\
3312or between BEG and END.")
3313 (beg, end)
3314 Lisp_Object beg, end;
3315{
3316 int noverlays;
3317 Lisp_Object *overlay_vec;
3318 int len;
3319 Lisp_Object result;
3320
3321 CHECK_NUMBER_COERCE_MARKER (beg, 0);
3322 CHECK_NUMBER_COERCE_MARKER (end, 0);
3323
3324 len = 10;
3325 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
3326
3327 /* Put all the overlays we want in a vector in overlay_vec.
3328 Store the length in len. */
3329 noverlays = overlays_in (XINT (beg), XINT (end), 1, &overlay_vec, &len,
3330 (int *) 0, (int *) 0);
3331
3332 /* Make a list of them all. */
3333 result = Flist (noverlays, overlay_vec);
3334
3335 xfree (overlay_vec);
3336 return result;
3337}
3338
3339DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
3340 1, 1, 0,
3341 "Return the next position after POS where an overlay starts or ends.\n\
3342If there are no more overlay boundaries after POS, return (point-max).")
3343 (pos)
3344 Lisp_Object pos;
3345{
3346 int noverlays;
3347 int endpos;
3348 Lisp_Object *overlay_vec;
3349 int len;
3350 int i;
3351
3352 CHECK_NUMBER_COERCE_MARKER (pos, 0);
3353
3354 len = 10;
3355 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
3356
3357 /* Put all the overlays we want in a vector in overlay_vec.
3358 Store the length in len.
3359 endpos gets the position where the next overlay starts. */
3360 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
3361 &endpos, (int *) 0);
3362
3363 /* If any of these overlays ends before endpos,
3364 use its ending point instead. */
3365 for (i = 0; i < noverlays; i++)
3366 {
3367 Lisp_Object oend;
3368 int oendpos;
3369
3370 oend = OVERLAY_END (overlay_vec[i]);
3371 oendpos = OVERLAY_POSITION (oend);
3372 if (oendpos < endpos)
3373 endpos = oendpos;
3374 }
3375
3376 xfree (overlay_vec);
3377 return make_number (endpos);
3378}
3379
3380DEFUN ("previous-overlay-change", Fprevious_overlay_change,
3381 Sprevious_overlay_change, 1, 1, 0,
3382 "Return the previous position before POS where an overlay starts or ends.\n\
3383If there are no more overlay boundaries before POS, return (point-min).")
3384 (pos)
3385 Lisp_Object pos;
3386{
3387 int noverlays;
3388 int prevpos;
3389 Lisp_Object *overlay_vec;
3390 int len;
3391
3392 CHECK_NUMBER_COERCE_MARKER (pos, 0);
3393
3394 len = 10;
3395 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
3396
3397 /* At beginning of buffer, we know the answer;
3398 avoid bug subtracting 1 below. */
3399 if (XINT (pos) == BEGV)
3400 return pos;
3401
3402 /* Put all the overlays we want in a vector in overlay_vec.
3403 Store the length in len.
3404 prevpos gets the position of the previous change. */
3405 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
3406 (int *) 0, &prevpos);
3407
3408 xfree (overlay_vec);
3409 return make_number (prevpos);
3410}
3411\f
3412/* These functions are for debugging overlays. */
3413
3414DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0,
3415 "Return a pair of lists giving all the overlays of the current buffer.\n\
3416The car has all the overlays before the overlay center;\n\
3417the cdr has all the overlays after the overlay center.\n\
3418Recentering overlays moves overlays between these lists.\n\
3419The lists you get are copies, so that changing them has no effect.\n\
3420However, the overlays you get are the real objects that the buffer uses.")
3421 ()
3422{
3423 Lisp_Object before, after;
3424 before = current_buffer->overlays_before;
3425 if (CONSP (before))
3426 before = Fcopy_sequence (before);
3427 after = current_buffer->overlays_after;
3428 if (CONSP (after))
3429 after = Fcopy_sequence (after);
3430
3431 return Fcons (before, after);
3432}
3433
3434DEFUN ("overlay-recenter", Foverlay_recenter, Soverlay_recenter, 1, 1, 0,
3435 "Recenter the overlays of the current buffer around position POS.")
3436 (pos)
3437 Lisp_Object pos;
3438{
3439 CHECK_NUMBER_COERCE_MARKER (pos, 0);
3440
3441 recenter_overlay_lists (current_buffer, XINT (pos));
3442 return Qnil;
3443}
3444\f
3445DEFUN ("overlay-get", Foverlay_get, Soverlay_get, 2, 2, 0,
3446 "Get the property of overlay OVERLAY with property name PROP.")
3447 (overlay, prop)
3448 Lisp_Object overlay, prop;
3449{
3450 Lisp_Object plist, fallback;
3451
3452 CHECK_OVERLAY (overlay, 0);
3453
3454 fallback = Qnil;
3455
3456 for (plist = XOVERLAY (overlay)->plist;
3457 CONSP (plist) && CONSP (XCDR (plist));
3458 plist = XCDR (XCDR (plist)))
3459 {
3460 if (EQ (XCAR (plist), prop))
3461 return XCAR (XCDR (plist));
3462 else if (EQ (XCAR (plist), Qcategory))
3463 {
3464 Lisp_Object tem;
3465 tem = Fcar (Fcdr (plist));
3466 if (SYMBOLP (tem))
3467 fallback = Fget (tem, prop);
3468 }
3469 }
3470
3471 return fallback;
3472}
3473
3474DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0,
3475 "Set one property of overlay OVERLAY: give property PROP value VALUE.")
3476 (overlay, prop, value)
3477 Lisp_Object overlay, prop, value;
3478{
3479 Lisp_Object tail, buffer;
3480 int changed;
3481
3482 CHECK_OVERLAY (overlay, 0);
3483
3484 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3485
3486 for (tail = XOVERLAY (overlay)->plist;
3487 CONSP (tail) && CONSP (XCDR (tail));
3488 tail = XCDR (XCDR (tail)))
3489 if (EQ (XCAR (tail), prop))
3490 {
3491 changed = !EQ (XCAR (XCDR (tail)), value);
3492 XCAR (XCDR (tail)) = value;
3493 goto found;
3494 }
3495 /* It wasn't in the list, so add it to the front. */
3496 changed = !NILP (value);
3497 XOVERLAY (overlay)->plist
3498 = Fcons (prop, Fcons (value, XOVERLAY (overlay)->plist));
3499 found:
3500 if (! NILP (buffer))
3501 {
3502 if (changed)
3503 modify_overlay (XBUFFER (buffer),
3504 marker_position (OVERLAY_START (overlay)),
3505 marker_position (OVERLAY_END (overlay)));
3506 if (EQ (prop, Qevaporate) && ! NILP (value)
3507 && (OVERLAY_POSITION (OVERLAY_START (overlay))
3508 == OVERLAY_POSITION (OVERLAY_END (overlay))))
3509 Fdelete_overlay (overlay);
3510 }
3511 return value;
3512}
3513\f
3514/* Subroutine of report_overlay_modification. */
3515
3516/* Lisp vector holding overlay hook functions to call.
3517 Vector elements come in pairs.
3518 Each even-index element is a list of hook functions.
3519 The following odd-index element is the overlay they came from.
3520
3521 Before the buffer change, we fill in this vector
3522 as we call overlay hook functions.
3523 After the buffer change, we get the functions to call from this vector.
3524 This way we always call the same functions before and after the change. */
3525static Lisp_Object last_overlay_modification_hooks;
3526
3527/* Number of elements actually used in last_overlay_modification_hooks. */
3528static int last_overlay_modification_hooks_used;
3529
3530/* Add one functionlist/overlay pair
3531 to the end of last_overlay_modification_hooks. */
3532
3533static void
3534add_overlay_mod_hooklist (functionlist, overlay)
3535 Lisp_Object functionlist, overlay;
3536{
3537 int oldsize = XVECTOR (last_overlay_modification_hooks)->size;
3538
3539 if (last_overlay_modification_hooks_used == oldsize)
3540 {
3541 Lisp_Object old;
3542 old = last_overlay_modification_hooks;
3543 last_overlay_modification_hooks
3544 = Fmake_vector (make_number (oldsize * 2), Qnil);
3545 bcopy (XVECTOR (old)->contents,
3546 XVECTOR (last_overlay_modification_hooks)->contents,
3547 sizeof (Lisp_Object) * oldsize);
3548 }
3549 XVECTOR (last_overlay_modification_hooks)->contents[last_overlay_modification_hooks_used++] = functionlist;
3550 XVECTOR (last_overlay_modification_hooks)->contents[last_overlay_modification_hooks_used++] = overlay;
3551}
3552\f
3553/* Run the modification-hooks of overlays that include
3554 any part of the text in START to END.
3555 If this change is an insertion, also
3556 run the insert-before-hooks of overlay starting at END,
3557 and the insert-after-hooks of overlay ending at START.
3558
3559 This is called both before and after the modification.
3560 AFTER is nonzero when we call after the modification.
3561
3562 ARG1, ARG2, ARG3 are arguments to pass to the hook functions.
3563 When AFTER is nonzero, they are the start position,
3564 the position after the inserted new text,
3565 and the length of deleted or replaced old text. */
3566
3567void
3568report_overlay_modification (start, end, after, arg1, arg2, arg3)
3569 Lisp_Object start, end;
3570 int after;
3571 Lisp_Object arg1, arg2, arg3;
3572{
3573 Lisp_Object prop, overlay, tail;
3574 /* 1 if this change is an insertion. */
3575 int insertion = (after ? XFASTINT (arg3) == 0 : EQ (start, end));
3576 int tail_copied;
3577 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3578
3579 overlay = Qnil;
3580 tail = Qnil;
3581 GCPRO5 (overlay, tail, arg1, arg2, arg3);
3582
3583 if (after)
3584 {
3585 /* Call the functions recorded in last_overlay_modification_hooks
3586 rather than scanning the overlays again.
3587 First copy the vector contents, in case some of these hooks
3588 do subsequent modification of the buffer. */
3589 int size = last_overlay_modification_hooks_used;
3590 Lisp_Object *copy = (Lisp_Object *) alloca (size * sizeof (Lisp_Object));
3591 int i;
3592
3593 bcopy (XVECTOR (last_overlay_modification_hooks)->contents,
3594 copy, size * sizeof (Lisp_Object));
3595 gcpro1.var = copy;
3596 gcpro1.nvars = size;
3597
3598 for (i = 0; i < size;)
3599 {
3600 Lisp_Object prop, overlay;
3601 prop = copy[i++];
3602 overlay = copy[i++];
3603 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3604 }
3605 UNGCPRO;
3606 return;
3607 }
3608
3609 /* We are being called before a change.
3610 Scan the overlays to find the functions to call. */
3611 last_overlay_modification_hooks_used = 0;
3612 tail_copied = 0;
3613 for (tail = current_buffer->overlays_before;
3614 CONSP (tail);
3615 tail = XCDR (tail))
3616 {
3617 int startpos, endpos;
3618 Lisp_Object ostart, oend;
3619
3620 overlay = XCAR (tail);
3621
3622 ostart = OVERLAY_START (overlay);
3623 oend = OVERLAY_END (overlay);
3624 endpos = OVERLAY_POSITION (oend);
3625 if (XFASTINT (start) > endpos)
3626 break;
3627 startpos = OVERLAY_POSITION (ostart);
3628 if (insertion && (XFASTINT (start) == startpos
3629 || XFASTINT (end) == startpos))
3630 {
3631 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
3632 if (!NILP (prop))
3633 {
3634 /* Copy TAIL in case the hook recenters the overlay lists. */
3635 if (!tail_copied)
3636 tail = Fcopy_sequence (tail);
3637 tail_copied = 1;
3638 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3639 }
3640 }
3641 if (insertion && (XFASTINT (start) == endpos
3642 || XFASTINT (end) == endpos))
3643 {
3644 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
3645 if (!NILP (prop))
3646 {
3647 if (!tail_copied)
3648 tail = Fcopy_sequence (tail);
3649 tail_copied = 1;
3650 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3651 }
3652 }
3653 /* Test for intersecting intervals. This does the right thing
3654 for both insertion and deletion. */
3655 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
3656 {
3657 prop = Foverlay_get (overlay, Qmodification_hooks);
3658 if (!NILP (prop))
3659 {
3660 if (!tail_copied)
3661 tail = Fcopy_sequence (tail);
3662 tail_copied = 1;
3663 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3664 }
3665 }
3666 }
3667
3668 tail_copied = 0;
3669 for (tail = current_buffer->overlays_after;
3670 CONSP (tail);
3671 tail = XCDR (tail))
3672 {
3673 int startpos, endpos;
3674 Lisp_Object ostart, oend;
3675
3676 overlay = XCAR (tail);
3677
3678 ostart = OVERLAY_START (overlay);
3679 oend = OVERLAY_END (overlay);
3680 startpos = OVERLAY_POSITION (ostart);
3681 endpos = OVERLAY_POSITION (oend);
3682 if (XFASTINT (end) < startpos)
3683 break;
3684 if (insertion && (XFASTINT (start) == startpos
3685 || XFASTINT (end) == startpos))
3686 {
3687 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
3688 if (!NILP (prop))
3689 {
3690 if (!tail_copied)
3691 tail = Fcopy_sequence (tail);
3692 tail_copied = 1;
3693 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3694 }
3695 }
3696 if (insertion && (XFASTINT (start) == endpos
3697 || XFASTINT (end) == endpos))
3698 {
3699 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
3700 if (!NILP (prop))
3701 {
3702 if (!tail_copied)
3703 tail = Fcopy_sequence (tail);
3704 tail_copied = 1;
3705 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3706 }
3707 }
3708 /* Test for intersecting intervals. This does the right thing
3709 for both insertion and deletion. */
3710 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
3711 {
3712 prop = Foverlay_get (overlay, Qmodification_hooks);
3713 if (!NILP (prop))
3714 {
3715 if (!tail_copied)
3716 tail = Fcopy_sequence (tail);
3717 tail_copied = 1;
3718 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
3719 }
3720 }
3721 }
3722
3723 UNGCPRO;
3724}
3725
3726static void
3727call_overlay_mod_hooks (list, overlay, after, arg1, arg2, arg3)
3728 Lisp_Object list, overlay;
3729 int after;
3730 Lisp_Object arg1, arg2, arg3;
3731{
3732 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3733
3734 GCPRO4 (list, arg1, arg2, arg3);
3735 if (! after)
3736 add_overlay_mod_hooklist (list, overlay);
3737
3738 while (!NILP (list))
3739 {
3740 if (NILP (arg3))
3741 call4 (Fcar (list), overlay, after ? Qt : Qnil, arg1, arg2);
3742 else
3743 call5 (Fcar (list), overlay, after ? Qt : Qnil, arg1, arg2, arg3);
3744 list = Fcdr (list);
3745 }
3746 UNGCPRO;
3747}
3748
3749/* Delete any zero-sized overlays at position POS, if the `evaporate'
3750 property is set. */
3751void
3752evaporate_overlays (pos)
3753 int pos;
3754{
3755 Lisp_Object tail, overlay, hit_list;
3756
3757 hit_list = Qnil;
3758 if (pos <= XFASTINT (current_buffer->overlay_center))
3759 for (tail = current_buffer->overlays_before; CONSP (tail);
3760 tail = XCDR (tail))
3761 {
3762 int endpos;
3763 overlay = XCAR (tail);
3764 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3765 if (endpos < pos)
3766 break;
3767 if (endpos == pos && OVERLAY_POSITION (OVERLAY_START (overlay)) == pos
3768 && ! NILP (Foverlay_get (overlay, Qevaporate)))
3769 hit_list = Fcons (overlay, hit_list);
3770 }
3771 else
3772 for (tail = current_buffer->overlays_after; CONSP (tail);
3773 tail = XCDR (tail))
3774 {
3775 int startpos;
3776 overlay = XCAR (tail);
3777 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3778 if (startpos > pos)
3779 break;
3780 if (startpos == pos && OVERLAY_POSITION (OVERLAY_END (overlay)) == pos
3781 && ! NILP (Foverlay_get (overlay, Qevaporate)))
3782 hit_list = Fcons (overlay, hit_list);
3783 }
3784 for (; CONSP (hit_list); hit_list = XCDR (hit_list))
3785 Fdelete_overlay (XCAR (hit_list));
3786}
3787\f
3788/* Somebody has tried to store a value with an unacceptable type
3789 in the slot with offset OFFSET. */
3790
3791void
3792buffer_slot_type_mismatch (offset)
3793 int offset;
3794{
3795 Lisp_Object sym;
3796 char *type_name;
3797 sym = *(Lisp_Object *)(offset + (char *)&buffer_local_symbols);
3798 switch (XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_types)))
3799 {
3800 case Lisp_Int: type_name = "integers"; break;
3801 case Lisp_String: type_name = "strings"; break;
3802 case Lisp_Symbol: type_name = "symbols"; break;
3803
3804 default:
3805 abort ();
3806 }
3807
3808 error ("Only %s should be stored in the buffer-local variable %s",
3809 type_name, XSYMBOL (sym)->name->data);
3810}
3811\f
3812void
3813init_buffer_once ()
3814{
3815 buffer_permanent_local_flags = 0;
3816
3817 /* Make sure all markable slots in buffer_defaults
3818 are initialized reasonably, so mark_buffer won't choke. */
3819 reset_buffer (&buffer_defaults);
3820 reset_buffer_local_variables (&buffer_defaults, 1);
3821 reset_buffer (&buffer_local_symbols);
3822 reset_buffer_local_variables (&buffer_local_symbols, 1);
3823 /* Prevent GC from getting confused. */
3824 buffer_defaults.text = &buffer_defaults.own_text;
3825 buffer_local_symbols.text = &buffer_local_symbols.own_text;
3826 BUF_INTERVALS (&buffer_defaults) = 0;
3827 BUF_INTERVALS (&buffer_local_symbols) = 0;
3828 XSETBUFFER (Vbuffer_defaults, &buffer_defaults);
3829 XSETBUFFER (Vbuffer_local_symbols, &buffer_local_symbols);
3830
3831 /* Set up the default values of various buffer slots. */
3832 /* Must do these before making the first buffer! */
3833
3834 /* real setup is done in loaddefs.el */
3835 buffer_defaults.mode_line_format = build_string ("%-");
3836 buffer_defaults.header_line_format = Qnil;
3837 buffer_defaults.abbrev_mode = Qnil;
3838 buffer_defaults.overwrite_mode = Qnil;
3839 buffer_defaults.case_fold_search = Qt;
3840 buffer_defaults.auto_fill_function = Qnil;
3841 buffer_defaults.selective_display = Qnil;
3842#ifndef old
3843 buffer_defaults.selective_display_ellipses = Qt;
3844#endif
3845 buffer_defaults.abbrev_table = Qnil;
3846 buffer_defaults.display_table = Qnil;
3847 buffer_defaults.undo_list = Qnil;
3848 buffer_defaults.mark_active = Qnil;
3849 buffer_defaults.file_format = Qnil;
3850 buffer_defaults.overlays_before = Qnil;
3851 buffer_defaults.overlays_after = Qnil;
3852 XSETFASTINT (buffer_defaults.overlay_center, BEG);
3853
3854 XSETFASTINT (buffer_defaults.tab_width, 8);
3855 buffer_defaults.truncate_lines = Qnil;
3856 buffer_defaults.ctl_arrow = Qt;
3857 buffer_defaults.direction_reversed = Qnil;
3858
3859#ifdef DOS_NT
3860 buffer_defaults.buffer_file_type = Qnil; /* TEXT */
3861#endif
3862 buffer_defaults.enable_multibyte_characters = Qt;
3863 buffer_defaults.buffer_file_coding_system = Qnil;
3864 XSETFASTINT (buffer_defaults.fill_column, 70);
3865 XSETFASTINT (buffer_defaults.left_margin, 0);
3866 buffer_defaults.cache_long_line_scans = Qnil;
3867 buffer_defaults.file_truename = Qnil;
3868 XSETFASTINT (buffer_defaults.display_count, 0);
3869 buffer_defaults.indicate_empty_lines = Qnil;
3870 buffer_defaults.scroll_up_aggressively = Qnil;
3871 buffer_defaults.scroll_down_aggressively = Qnil;
3872 buffer_defaults.display_time = Qnil;
3873
3874 /* Assign the local-flags to the slots that have default values.
3875 The local flag is a bit that is used in the buffer
3876 to say that it has its own local value for the slot.
3877 The local flag bits are in the local_var_flags slot of the buffer. */
3878
3879 /* Nothing can work if this isn't true */
3880 if (sizeof (EMACS_INT) != sizeof (Lisp_Object)) abort ();
3881
3882 /* 0 means not a lisp var, -1 means always local, else mask */
3883 bzero (&buffer_local_flags, sizeof buffer_local_flags);
3884 XSETINT (buffer_local_flags.filename, -1);
3885 XSETINT (buffer_local_flags.directory, -1);
3886 XSETINT (buffer_local_flags.backed_up, -1);
3887 XSETINT (buffer_local_flags.save_length, -1);
3888 XSETINT (buffer_local_flags.auto_save_file_name, -1);
3889 XSETINT (buffer_local_flags.read_only, -1);
3890 XSETINT (buffer_local_flags.major_mode, -1);
3891 XSETINT (buffer_local_flags.mode_name, -1);
3892 XSETINT (buffer_local_flags.undo_list, -1);
3893 XSETINT (buffer_local_flags.mark_active, -1);
3894 XSETINT (buffer_local_flags.point_before_scroll, -1);
3895 XSETINT (buffer_local_flags.file_truename, -1);
3896 XSETINT (buffer_local_flags.invisibility_spec, -1);
3897 XSETINT (buffer_local_flags.file_format, -1);
3898 XSETINT (buffer_local_flags.display_count, -1);
3899 XSETINT (buffer_local_flags.display_time, -1);
3900 XSETINT (buffer_local_flags.enable_multibyte_characters, -1);
3901
3902 XSETFASTINT (buffer_local_flags.mode_line_format, 1);
3903 XSETFASTINT (buffer_local_flags.abbrev_mode, 2);
3904 XSETFASTINT (buffer_local_flags.overwrite_mode, 4);
3905 XSETFASTINT (buffer_local_flags.case_fold_search, 8);
3906 XSETFASTINT (buffer_local_flags.auto_fill_function, 0x10);
3907 XSETFASTINT (buffer_local_flags.selective_display, 0x20);
3908#ifndef old
3909 XSETFASTINT (buffer_local_flags.selective_display_ellipses, 0x40);
3910#endif
3911 XSETFASTINT (buffer_local_flags.tab_width, 0x80);
3912 XSETFASTINT (buffer_local_flags.truncate_lines, 0x100);
3913 XSETFASTINT (buffer_local_flags.ctl_arrow, 0x200);
3914 XSETFASTINT (buffer_local_flags.fill_column, 0x400);
3915 XSETFASTINT (buffer_local_flags.left_margin, 0x800);
3916 XSETFASTINT (buffer_local_flags.abbrev_table, 0x1000);
3917 XSETFASTINT (buffer_local_flags.display_table, 0x2000);
3918#ifdef DOS_NT
3919 XSETFASTINT (buffer_local_flags.buffer_file_type, 0x4000);
3920 /* Make this one a permanent local. */
3921 buffer_permanent_local_flags |= 0x4000;
3922#endif
3923 XSETFASTINT (buffer_local_flags.syntax_table, 0x8000);
3924 XSETFASTINT (buffer_local_flags.cache_long_line_scans, 0x10000);
3925 XSETFASTINT (buffer_local_flags.category_table, 0x20000);
3926 XSETFASTINT (buffer_local_flags.direction_reversed, 0x40000);
3927 XSETFASTINT (buffer_local_flags.buffer_file_coding_system, 0x80000);
3928 /* Make this one a permanent local. */
3929 buffer_permanent_local_flags |= 0x80000;
3930 XSETFASTINT (buffer_local_flags.left_margin_width, 0x100000);
3931 XSETFASTINT (buffer_local_flags.right_margin_width, 0x200000);
3932 XSETFASTINT (buffer_local_flags.indicate_empty_lines, 0x400000);
3933 XSETFASTINT (buffer_local_flags.scroll_up_aggressively, 0x800000);
3934 XSETFASTINT (buffer_local_flags.scroll_down_aggressively, 0x1000000);
3935 XSETFASTINT (buffer_local_flags.header_line_format, 0x2000000);
3936
3937 Vbuffer_alist = Qnil;
3938 current_buffer = 0;
3939 all_buffers = 0;
3940
3941 QSFundamental = build_string ("Fundamental");
3942
3943 Qfundamental_mode = intern ("fundamental-mode");
3944 buffer_defaults.major_mode = Qfundamental_mode;
3945
3946 Qmode_class = intern ("mode-class");
3947
3948 Qprotected_field = intern ("protected-field");
3949
3950 Qpermanent_local = intern ("permanent-local");
3951
3952 Qkill_buffer_hook = intern ("kill-buffer-hook");
3953
3954 Vprin1_to_string_buffer = Fget_buffer_create (build_string (" prin1"));
3955
3956 /* super-magic invisible buffer */
3957 Vbuffer_alist = Qnil;
3958
3959 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
3960
3961 inhibit_modification_hooks = 0;
3962}
3963
3964void
3965init_buffer ()
3966{
3967 char buf[MAXPATHLEN+1];
3968 char *pwd;
3969 struct stat dotstat, pwdstat;
3970 Lisp_Object temp;
3971 int rc;
3972
3973 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
3974 if (NILP (buffer_defaults.enable_multibyte_characters))
3975 Fset_buffer_multibyte (Qnil);
3976
3977 /* If PWD is accurate, use it instead of calling getwd. This is faster
3978 when PWD is right, and may avoid a fatal error. */
3979 if ((pwd = getenv ("PWD")) != 0
3980 && (IS_DIRECTORY_SEP (*pwd) || (*pwd && IS_DEVICE_SEP (pwd[1])))
3981 && stat (pwd, &pwdstat) == 0
3982 && stat (".", &dotstat) == 0
3983 && dotstat.st_ino == pwdstat.st_ino
3984 && dotstat.st_dev == pwdstat.st_dev
3985 && strlen (pwd) < MAXPATHLEN)
3986 strcpy (buf, pwd);
3987#ifdef HAVE_GETCWD
3988 else if (getcwd (buf, MAXPATHLEN+1) == 0)
3989 fatal ("`getcwd' failed: %s\n", strerror (errno));
3990#else
3991 else if (getwd (buf) == 0)
3992 fatal ("`getwd' failed: %s\n", buf);
3993#endif
3994
3995#ifndef VMS
3996 /* Maybe this should really use some standard subroutine
3997 whose definition is filename syntax dependent. */
3998 rc = strlen (buf);
3999 if (!(IS_DIRECTORY_SEP (buf[rc - 1])))
4000 {
4001 buf[rc] = DIRECTORY_SEP;
4002 buf[rc + 1] = '\0';
4003 }
4004#endif /* not VMS */
4005
4006 current_buffer->directory = build_string (buf);
4007
4008 /* Add /: to the front of the name
4009 if it would otherwise be treated as magic. */
4010 temp = Ffind_file_name_handler (current_buffer->directory, Qt);
4011 if (! NILP (temp)
4012 /* If the default dir is just /, TEMP is non-nil
4013 because of the ange-ftp completion handler.
4014 However, it is not necessary to turn / into /:/.
4015 So avoid doing that. */
4016 && strcmp ("/", XSTRING (current_buffer->directory)->data))
4017 current_buffer->directory
4018 = concat2 (build_string ("/:"), current_buffer->directory);
4019
4020 temp = get_minibuffer (0);
4021 XBUFFER (temp)->directory = current_buffer->directory;
4022}
4023
4024/* initialize the buffer routines */
4025void
4026syms_of_buffer ()
4027{
4028 staticpro (&last_overlay_modification_hooks);
4029 last_overlay_modification_hooks
4030 = Fmake_vector (make_number (10), Qnil);
4031
4032 staticpro (&Vbuffer_defaults);
4033 staticpro (&Vbuffer_local_symbols);
4034 staticpro (&Qfundamental_mode);
4035 staticpro (&Qmode_class);
4036 staticpro (&QSFundamental);
4037 staticpro (&Vbuffer_alist);
4038 staticpro (&Qprotected_field);
4039 staticpro (&Qpermanent_local);
4040 staticpro (&Qkill_buffer_hook);
4041 Qoverlayp = intern ("overlayp");
4042 staticpro (&Qoverlayp);
4043 Qevaporate = intern ("evaporate");
4044 staticpro (&Qevaporate);
4045 Qmodification_hooks = intern ("modification-hooks");
4046 staticpro (&Qmodification_hooks);
4047 Qinsert_in_front_hooks = intern ("insert-in-front-hooks");
4048 staticpro (&Qinsert_in_front_hooks);
4049 Qinsert_behind_hooks = intern ("insert-behind-hooks");
4050 staticpro (&Qinsert_behind_hooks);
4051 Qget_file_buffer = intern ("get-file-buffer");
4052 staticpro (&Qget_file_buffer);
4053 Qpriority = intern ("priority");
4054 staticpro (&Qpriority);
4055 Qwindow = intern ("window");
4056 staticpro (&Qwindow);
4057 Qbefore_string = intern ("before-string");
4058 staticpro (&Qbefore_string);
4059 Qafter_string = intern ("after-string");
4060 staticpro (&Qafter_string);
4061 Qfirst_change_hook = intern ("first-change-hook");
4062 staticpro (&Qfirst_change_hook);
4063 Qbefore_change_functions = intern ("before-change-functions");
4064 staticpro (&Qbefore_change_functions);
4065 Qafter_change_functions = intern ("after-change-functions");
4066 staticpro (&Qafter_change_functions);
4067
4068 Fput (Qprotected_field, Qerror_conditions,
4069 Fcons (Qprotected_field, Fcons (Qerror, Qnil)));
4070 Fput (Qprotected_field, Qerror_message,
4071 build_string ("Attempt to modify a protected field"));
4072
4073 /* All these use DEFVAR_LISP_NOPRO because the slots in
4074 buffer_defaults will all be marked via Vbuffer_defaults. */
4075
4076 DEFVAR_LISP_NOPRO ("default-mode-line-format",
4077 &buffer_defaults.mode_line_format,
4078 "Default value of `mode-line-format' for buffers that don't override it.\n\
4079This is the same as (default-value 'mode-line-format).");
4080
4081 DEFVAR_LISP_NOPRO ("default-header-line-format",
4082 &buffer_defaults.header_line_format,
4083 "Default value of `header-line-format' for buffers that don't override it.\n\
4084This is the same as (default-value 'header-line-format).");
4085
4086 DEFVAR_LISP_NOPRO ("default-abbrev-mode",
4087 &buffer_defaults.abbrev_mode,
4088 "Default value of `abbrev-mode' for buffers that do not override it.\n\
4089This is the same as (default-value 'abbrev-mode).");
4090
4091 DEFVAR_LISP_NOPRO ("default-ctl-arrow",
4092 &buffer_defaults.ctl_arrow,
4093 "Default value of `ctl-arrow' for buffers that do not override it.\n\
4094This is the same as (default-value 'ctl-arrow).");
4095
4096 DEFVAR_LISP_NOPRO ("default-direction-reversed",
4097 &buffer_defaults.direction_reversed,
4098 "Default value of `direction_reversed' for buffers that do not override it.\n\
4099 This is the same as (default-value 'direction-reversed).");
4100
4101 DEFVAR_LISP_NOPRO ("default-enable-multibyte-characters",
4102 &buffer_defaults.enable_multibyte_characters,
4103 "*Default value of `enable-multibyte-characters' for buffers not overriding it.\n\
4104This is the same as (default-value 'enable-multibyte-characters).");
4105
4106 DEFVAR_LISP_NOPRO ("default-buffer-file-coding-system",
4107 &buffer_defaults.buffer_file_coding_system,
4108 "Default value of `buffer-file-coding-system' for buffers not overriding it.\n\
4109This is the same as (default-value 'buffer-file-coding-system).");
4110
4111 DEFVAR_LISP_NOPRO ("default-truncate-lines",
4112 &buffer_defaults.truncate_lines,
4113 "Default value of `truncate-lines' for buffers that do not override it.\n\
4114This is the same as (default-value 'truncate-lines).");
4115
4116 DEFVAR_LISP_NOPRO ("default-fill-column",
4117 &buffer_defaults.fill_column,
4118 "Default value of `fill-column' for buffers that do not override it.\n\
4119This is the same as (default-value 'fill-column).");
4120
4121 DEFVAR_LISP_NOPRO ("default-left-margin",
4122 &buffer_defaults.left_margin,
4123 "Default value of `left-margin' for buffers that do not override it.\n\
4124This is the same as (default-value 'left-margin).");
4125
4126 DEFVAR_LISP_NOPRO ("default-tab-width",
4127 &buffer_defaults.tab_width,
4128 "Default value of `tab-width' for buffers that do not override it.\n\
4129This is the same as (default-value 'tab-width).");
4130
4131 DEFVAR_LISP_NOPRO ("default-case-fold-search",
4132 &buffer_defaults.case_fold_search,
4133 "Default value of `case-fold-search' for buffers that don't override it.\n\
4134This is the same as (default-value 'case-fold-search).");
4135
4136#ifdef DOS_NT
4137 DEFVAR_LISP_NOPRO ("default-buffer-file-type",
4138 &buffer_defaults.buffer_file_type,
4139 "Default file type for buffers that do not override it.\n\
4140This is the same as (default-value 'buffer-file-type).\n\
4141The file type is nil for text, t for binary.");
4142#endif
4143
4144 DEFVAR_LISP_NOPRO ("default-left-margin-width",
4145 &buffer_defaults.left_margin_width,
4146 "Default value of `left-margin-width' for buffers that don't override it.\n\
4147This is the same as (default-value 'left-margin-width).");
4148
4149 DEFVAR_LISP_NOPRO ("default-right-margin-width",
4150 &buffer_defaults.right_margin_width,
4151 "Default value of `right_margin_width' for buffers that don't override it.\n\
4152This is the same as (default-value 'right-margin-width).");
4153
4154 DEFVAR_LISP_NOPRO ("default-indicate-empty-lines",
4155 &buffer_defaults.indicate_empty_lines,
4156 "Default value of `indicate-empty-lines' for buffers that don't override it.\n\
4157This is the same as (default-value 'indicate-empty-lines).");
4158
4159 DEFVAR_LISP_NOPRO ("default-scroll-up-aggressively",
4160 &buffer_defaults.scroll_up_aggressively,
4161 "Default value of `scroll-up-aggressively' for buffers that\n\
4162don't override it. This is the same as (default-value\n\
4163'scroll-up-aggressively).");
4164
4165 DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively",
4166 &buffer_defaults.scroll_down_aggressively,
4167 "Default value of `scroll-down-aggressively' for buffers that\n\
4168don't override it. This is the same as (default-value\n\
4169'scroll-down-aggressively).");
4170
4171 DEFVAR_PER_BUFFER ("header-line-format",
4172 &current_buffer->header_line_format,
4173 Qnil,
4174 "Analogous to `mode-line-format', but for a mode line displayed\n\
4175at the top of windows.");
4176
4177 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
4178 Qnil, 0);
4179
4180/* This doc string is too long for cpp; cpp dies if it isn't in a comment.
4181 But make-docfile finds it!
4182 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
4183 Qnil,
4184 "Template for displaying mode line for current buffer.\n\
4185Each buffer has its own value of this variable.\n\
4186Value may be nil, a string, a symbol or a list or cons cell.\n\
4187A value of nil means don't display a mode line.\n\
4188For a symbol, its value is used (but it is ignored if t or nil).\n\
4189 A string appearing directly as the value of a symbol is processed verbatim\n\
4190 in that the %-constructs below are not recognized.\n\
4191For a list of the form `(:eval FORM)', FORM is evaluated and the result\n\
4192 is used as a mode line element.\n\
4193For a list whose car is a symbol, the symbol's value is taken,\n\
4194 and if that is non-nil, the cadr of the list is processed recursively.\n\
4195 Otherwise, the caddr of the list (if there is one) is processed.\n\
4196For a list whose car is a string or list, each element is processed\n\
4197 recursively and the results are effectively concatenated.\n\
4198For a list whose car is an integer, the cdr of the list is processed\n\
4199 and padded (if the number is positive) or truncated (if negative)\n\
4200 to the width specified by that number.\n\
4201A string is printed verbatim in the mode line except for %-constructs:\n\
4202 (%-constructs are allowed when the string is the entire mode-line-format\n\
4203 or when it is found in a cons-cell or a list)\n\
4204 %b -- print buffer name. %f -- print visited file name.\n\
4205 %F -- print frame name.\n\
4206 %* -- print %, * or hyphen. %+ -- print *, % or hyphen.\n\
4207 % means buffer is read-only and * means it is modified.\n\
4208 For a modified read-only buffer, %* gives % and %+ gives *.\n\
4209 %s -- print process status. %l -- print the current line number.\n\
4210 %c -- print the current column number (this makes editing slower).\n\
4211 To make the column number update correctly in all cases,\n\
4212 `column-number-mode' must be non-nil.\n\
4213 %p -- print percent of buffer above top of window, or Top, Bot or All.\n\
4214 %P -- print percent of buffer above bottom of window, perhaps plus Top,\n\
4215 or print Bottom or All.\n\
4216 %n -- print Narrow if appropriate.\n\
4217 %t -- print T if file is text, B if binary.\n\
4218 %[ -- print one [ for each recursive editing level. %] similar.\n\
4219 %% -- print %. %- -- print infinitely many dashes.\n\
4220Decimal digits after the % specify field width to which to pad.");
4221*/
4222
4223 DEFVAR_LISP_NOPRO ("default-major-mode", &buffer_defaults.major_mode,
4224 "*Major mode for new buffers. Defaults to `fundamental-mode'.\n\
4225nil here means use current buffer's major mode.");
4226
4227 DEFVAR_PER_BUFFER ("major-mode", &current_buffer->major_mode,
4228 make_number (Lisp_Symbol),
4229 "Symbol for current buffer's major mode.");
4230
4231 DEFVAR_PER_BUFFER ("mode-name", &current_buffer->mode_name,
4232 make_number (Lisp_String),
4233 "Pretty name of current buffer's major mode (a string).");
4234
4235 DEFVAR_PER_BUFFER ("abbrev-mode", &current_buffer->abbrev_mode, Qnil,
4236 "Non-nil turns on automatic expansion of abbrevs as they are inserted.\n\
4237Automatically becomes buffer-local when set in any fashion.");
4238
4239 DEFVAR_PER_BUFFER ("case-fold-search", &current_buffer->case_fold_search,
4240 Qnil,
4241 "*Non-nil if searches and matches should ignore case.\n\
4242Automatically becomes buffer-local when set in any fashion.");
4243
4244 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column,
4245 make_number (Lisp_Int),
4246 "*Column beyond which automatic line-wrapping should happen.\n\
4247Automatically becomes buffer-local when set in any fashion.");
4248
4249 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin,
4250 make_number (Lisp_Int),
4251 "*Column for the default indent-line-function to indent to.\n\
4252Linefeed indents to this column in Fundamental mode.\n\
4253Automatically becomes buffer-local when set in any fashion.");
4254
4255 DEFVAR_PER_BUFFER ("tab-width", &current_buffer->tab_width,
4256 make_number (Lisp_Int),
4257 "*Distance between tab stops (for display of tab characters), in columns.\n\
4258Automatically becomes buffer-local when set in any fashion.");
4259
4260 DEFVAR_PER_BUFFER ("ctl-arrow", &current_buffer->ctl_arrow, Qnil,
4261 "*Non-nil means display control chars with uparrow.\n\
4262A value of nil means use backslash and octal digits.\n\
4263Automatically becomes buffer-local when set in any fashion.\n\
4264This variable does not apply to characters whose display is specified\n\
4265in the current display table (if there is one).");
4266
4267 DEFVAR_PER_BUFFER ("enable-multibyte-characters",
4268 &current_buffer->enable_multibyte_characters,
4269 make_number (-1),
4270 "Non-nil means the buffer contents are regarded as multi-byte characters.\n\
4271Otherwise they are regarded as unibyte. This affects the display,\n\
4272file I/O and the behavior of various editing commands.\n\
4273\n\
4274This variable is buffer-local but you cannot set it directly;\n\
4275use the function `set-buffer-multibyte' to change a buffer's representation.\n\
4276Changing its default value with `setq-default' is supported.\n\
4277See also variable `default-enable-multibyte-characters' and Info node\n\
4278`(elisp)Text Representations'.");
4279
4280 DEFVAR_PER_BUFFER ("buffer-file-coding-system",
4281 &current_buffer->buffer_file_coding_system, Qnil,
4282 "Coding system to be used for encoding the buffer contents on saving.\n\
4283This variable applies to saving the buffer, and also to `write-region'\n\
4284and other functions that use `write-region'.\n\
4285It does not apply to sending output to subprocesses, however.\n\
4286\n\
4287If this is nil, the buffer is saved without any code conversion\n\
4288unless some coding system is specified in `file-coding-system-alist'\n\
4289for the buffer file.\n\
4290\n\
4291The variable `coding-system-for-write', if non-nil, overrides this variable.\n\
4292\n\
4293This variable is never applied to a way of decoding\n\
4294a file while reading it.");
4295
4296 DEFVAR_PER_BUFFER ("direction-reversed", &current_buffer->direction_reversed,
4297 Qnil,
4298 "*Non-nil means lines in the buffer are displayed right to left.");
4299
4300 DEFVAR_PER_BUFFER ("truncate-lines", &current_buffer->truncate_lines, Qnil,
4301 "*Non-nil means do not display continuation lines;\n\
4302give each line of text one screen line.\n\
4303Automatically becomes buffer-local when set in any fashion.\n\
4304\n\
4305Note that this is overridden by the variable\n\
4306`truncate-partial-width-windows' if that variable is non-nil\n\
4307and this buffer is not full-frame width.");
4308
4309#ifdef DOS_NT
4310 DEFVAR_PER_BUFFER ("buffer-file-type", &current_buffer->buffer_file_type,
4311 Qnil,
4312 "Non-nil if the visited file is a binary file.\n\
4313This variable is meaningful on MS-DOG and Windows NT.\n\
4314On those systems, it is automatically local in every buffer.\n\
4315On other systems, this variable is normally always nil.");
4316#endif
4317
4318 DEFVAR_PER_BUFFER ("default-directory", &current_buffer->directory,
4319 make_number (Lisp_String),
4320 "Name of default directory of current buffer. Should end with slash.\n\
4321Each buffer has its own value of this variable.");
4322
4323 DEFVAR_PER_BUFFER ("auto-fill-function", &current_buffer->auto_fill_function,
4324 Qnil,
4325 "Function called (if non-nil) to perform auto-fill.\n\
4326It is called after self-inserting a space or newline.\n\
4327Each buffer has its own value of this variable.\n\
4328NOTE: This variable is not a hook;\n\
4329its value may not be a list of functions.");
4330
4331 DEFVAR_PER_BUFFER ("buffer-file-name", &current_buffer->filename,
4332 make_number (Lisp_String),
4333 "Name of file visited in current buffer, or nil if not visiting a file.\n\
4334Each buffer has its own value of this variable.");
4335
4336 DEFVAR_PER_BUFFER ("buffer-file-truename", &current_buffer->file_truename,
4337 make_number (Lisp_String),
4338 "Abbreviated truename of file visited in current buffer, or nil if none.\n\
4339The truename of a file is calculated by `file-truename'\n\
4340and then abbreviated with `abbreviate-file-name'.\n\
4341Each buffer has its own value of this variable.");
4342
4343 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
4344 &current_buffer->auto_save_file_name,
4345 make_number (Lisp_String),
4346 "Name of file for auto-saving current buffer,\n\
4347or nil if buffer should not be auto-saved.\n\
4348Each buffer has its own value of this variable.");
4349
4350 DEFVAR_PER_BUFFER ("buffer-read-only", &current_buffer->read_only, Qnil,
4351 "Non-nil if this buffer is read-only.\n\
4352Each buffer has its own value of this variable.");
4353
4354 DEFVAR_PER_BUFFER ("buffer-backed-up", &current_buffer->backed_up, Qnil,
4355 "Non-nil if this buffer's file has been backed up.\n\
4356Backing up is done before the first time the file is saved.\n\
4357Each buffer has its own value of this variable.");
4358
4359 DEFVAR_PER_BUFFER ("buffer-saved-size", &current_buffer->save_length,
4360 make_number (Lisp_Int),
4361 "Length of current buffer when last read in, saved or auto-saved.\n\
43620 initially.\n\
4363Each buffer has its own value of this variable.");
4364
4365 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
4366 Qnil,
4367 "Non-nil enables selective display:\n\
4368Integer N as value means display only lines\n\
4369 that start with less than n columns of space.\n\
4370A value of t means, after a ^M, all the rest of the line is invisible.\n\
4371 Then ^M's in the file are written into files as newlines.\n\n\
4372Automatically becomes buffer-local when set in any fashion.");
4373
4374#ifndef old
4375 DEFVAR_PER_BUFFER ("selective-display-ellipses",
4376 &current_buffer->selective_display_ellipses,
4377 Qnil,
4378 "t means display ... on previous line when a line is invisible.\n\
4379Automatically becomes buffer-local when set in any fashion.");
4380#endif
4381
4382 DEFVAR_PER_BUFFER ("overwrite-mode", &current_buffer->overwrite_mode, Qnil,
4383 "Non-nil if self-insertion should replace existing text.\n\
4384The value should be one of `overwrite-mode-textual',\n\
4385`overwrite-mode-binary', or nil.\n\
4386If it is `overwrite-mode-textual', self-insertion still\n\
4387inserts at the end of a line, and inserts when point is before a tab,\n\
4388until the tab is filled in.\n\
4389If `overwrite-mode-binary', self-insertion replaces newlines and tabs too.\n\
4390Automatically becomes buffer-local when set in any fashion.");
4391
4392#if 0 /* The doc string is too long for some compilers,
4393 but make-docfile can find it in this comment. */
4394 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
4395 Qnil,
4396 "Display table that controls display of the contents of current buffer.\n\
4397Automatically becomes buffer-local when set in any fashion.\n\
4398The display table is a char-table created with `make-display-table'.\n\
4399The ordinary char-table elements control how to display each possible text\n\
4400character. Each value should be a vector of characters or nil;\n\
4401nil means display the character in the default fashion.\n\
4402There are six extra slots to control the display of\n\
4403 the end of a truncated screen line (extra-slot 0, a single character);\n\
4404 the end of a continued line (extra-slot 1, a single character);\n\
4405 the escape character used to display character codes in octal\n\
4406 (extra-slot 2, a single character);\n\
4407 the character used as an arrow for control characters (extra-slot 3,\n\
4408 a single character);\n\
4409 the decoration indicating the presence of invisible lines (extra-slot 4,\n\
4410 a vector of characters);\n\
4411 the character used to draw the border between side-by-side windows\n\
4412 (extra-slot 5, a single character).\n\
4413See also the functions `display-table-slot' and `set-display-table-slot'.\n\
4414If this variable is nil, the value of `standard-display-table' is used.\n\
4415Each window can have its own, overriding display table.");
4416#endif
4417 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
4418 Qnil, 0);
4419
4420 DEFVAR_PER_BUFFER ("left-margin-width", &current_buffer->left_margin_width,
4421 Qnil,
4422 "*Width of left marginal area for display of a buffer.\n\
4423Automatically becomes buffer-local when set in any fashion.\n\
4424A value of nil means no marginal area.");
4425
4426 DEFVAR_PER_BUFFER ("right-margin-width", &current_buffer->right_margin_width,
4427 Qnil,
4428 "*Width of right marginal area for display of a buffer.\n\
4429Automatically becomes buffer-local when set in any fashion.\n\
4430A value of nil means no marginal area.");
4431
4432 DEFVAR_PER_BUFFER ("indicate-empty-lines",
4433 &current_buffer->indicate_empty_lines, Qnil,
4434 "*Visually indicate empty lines after the buffer end.\n\
4435If non-nil, a bitmap is displayed in the left fringe of a window on\n\
4436window-systems.\n\
4437Automatically becomes buffer-local when set in any fashion.\n");
4438
4439 DEFVAR_PER_BUFFER ("scroll-up-aggressively",
4440 &current_buffer->scroll_up_aggressively, Qnil,
4441 "*If a number, scroll display up aggressively.\n\
4442If scrolling a window because point is above the window start, choose\n\
4443a new window start so that point ends up that fraction of the window's\n\
4444height from the bottom of the window.\n\
4445Automatically becomes buffer-local when set in any fashion.");
4446
4447 DEFVAR_PER_BUFFER ("scroll-down-aggressively",
4448 &current_buffer->scroll_down_aggressively, Qnil,
4449 "*If a number, scroll display down aggressively.\n\
4450If scrolling a window because point is below the window end, choose\n\
4451a new window start so that point ends up that fraction of the window's\n\
4452height from the top of the window.\n\
4453Automatically becomes buffer-local when set in any fashion.");
4454
4455/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
4456 "Don't ask.");
4457*/
4458 DEFVAR_LISP ("before-change-function", &Vbefore_change_function,
4459 "If non-nil, a function to call before each text change (obsolete).\n\
4460Two arguments are passed to the function: the positions of\n\
4461the beginning and end of the range of old text to be changed.\n\
4462\(For an insertion, the beginning and end are at the same place.)\n\
4463No information is given about the length of the text after the change.\n\
4464\n\
4465Buffer changes made while executing the `before-change-function'\n\
4466don't call any before-change or after-change functions.\n\
4467That's because these variables are temporarily set to nil.\n\
4468As a result, a hook function cannot straightforwardly alter the value of\n\
4469these variables. See the Emacs Lisp manual for a way of\n\
4470accomplishing an equivalent result by using other variables.\n\n\
4471This variable is obsolete; use `before-change-functions' instead.");
4472 Vbefore_change_function = Qnil;
4473
4474 DEFVAR_LISP ("after-change-function", &Vafter_change_function,
4475 "If non-nil, a Function to call after each text change (obsolete).\n\
4476Three arguments are passed to the function: the positions of\n\
4477the beginning and end of the range of changed text,\n\
4478and the length of the pre-change text replaced by that range.\n\
4479\(For an insertion, the pre-change length is zero;\n\
4480for a deletion, that length is the number of bytes deleted,\n\
4481and the post-change beginning and end are at the same place.)\n\
4482\n\
4483Buffer changes made while executing the `after-change-function'\n\
4484don't call any before-change or after-change functions.\n\
4485That's because these variables are temporarily set to nil.\n\
4486As a result, a hook function cannot straightforwardly alter the value of\n\
4487these variables. See the Emacs Lisp manual for a way of\n\
4488accomplishing an equivalent result by using other variables.\n\n\
4489This variable is obsolete; use `after-change-functions' instead.");
4490 Vafter_change_function = Qnil;
4491
4492 DEFVAR_LISP ("before-change-functions", &Vbefore_change_functions,
4493 "List of functions to call before each text change.\n\
4494Two arguments are passed to each function: the positions of\n\
4495the beginning and end of the range of old text to be changed.\n\
4496\(For an insertion, the beginning and end are at the same place.)\n\
4497No information is given about the length of the text after the change.\n\
4498\n\
4499Buffer changes made while executing the `before-change-functions'\n\
4500don't call any before-change or after-change functions.\n\
4501That's because these variables are temporarily set to nil.\n\
4502As a result, a hook function cannot straightforwardly alter the value of\n\
4503these variables. See the Emacs Lisp manual for a way of\n\
4504accomplishing an equivalent result by using other variables.\n\
4505\n\
4506If an unhandled error happens in running these functions,\n\
4507the variable's value remains nil. That prevents the error\n\
4508from happening repeatedly and making Emacs nonfunctional.");
4509 Vbefore_change_functions = Qnil;
4510
4511 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions,
4512 "List of function to call after each text change.\n\
4513Three arguments are passed to each function: the positions of\n\
4514the beginning and end of the range of changed text,\n\
4515and the length in bytes of the pre-change text replaced by that range.\n\
4516\(For an insertion, the pre-change length is zero;\n\
4517for a deletion, that length is the number of bytes deleted,\n\
4518and the post-change beginning and end are at the same place.)\n\
4519\n\
4520Buffer changes made while executing the `after-change-functions'\n\
4521don't call any before-change or after-change functions.\n\
4522That's because these variables are temporarily set to nil.\n\
4523As a result, a hook function cannot straightforwardly alter the value of\n\
4524these variables. See the Emacs Lisp manual for a way of\n\
4525accomplishing an equivalent result by using other variables.\n\
4526\n\
4527If an unhandled error happens in running these functions,\n\
4528the variable's value remains nil. That prevents the error\n\
4529from happening repeatedly and making Emacs nonfunctional.");
4530 Vafter_change_functions = Qnil;
4531
4532 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook,
4533 "A list of functions to call before changing a buffer which is unmodified.\n\
4534The functions are run using the `run-hooks' function.");
4535 Vfirst_change_hook = Qnil;
4536
4537#if 0 /* The doc string is too long for some compilers,
4538 but make-docfile can find it in this comment. */
4539 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
4540 "List of undo entries in current buffer.\n\
4541This variable is always local in all buffers.\n\
4542Recent changes come first; older changes follow newer.\n\
4543\n\
4544An entry (BEG . END) represents an insertion which begins at\n\
4545position BEG and ends at position END.\n\
4546\n\
4547An entry (TEXT . POSITION) represents the deletion of the string TEXT\n\
4548from (abs POSITION). If POSITION is positive, point was at the front\n\
4549of the text being deleted; if negative, point was at the end.\n\
4550\n\
4551An entry (t HIGH . LOW) indicates that the buffer previously had\n\
4552\"unmodified\" status. HIGH and LOW are the high and low 16-bit portions\n\
4553of the visited file's modification time, as of that time. If the\n\
4554modification time of the most recent save is different, this entry is\n\
4555obsolete.\n\
4556\n\
4557An entry (nil PROPERTY VALUE BEG . END) indicates that a text property\n\
4558was modified between BEG and END. PROPERTY is the property name,\n\
4559and VALUE is the old value.\n\
4560\n\
4561An entry (MARKER . DISTANCE) indicates that the marker MARKER\n\
4562was adjusted in position by the offset DISTANCE (an integer).\n\
4563\n\
4564An entry of the form POSITION indicates that point was at the buffer\n\
4565location given by the integer. Undoing an entry of this form places\n\
4566point at POSITION.\n\
4567\n\
4568nil marks undo boundaries. The undo command treats the changes\n\
4569between two undo boundaries as a single step to be undone.\n\
4570\n\
4571If the value of the variable is t, undo information is not recorded.");
4572#endif
4573 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
4574 0);
4575
4576 DEFVAR_PER_BUFFER ("mark-active", &current_buffer->mark_active, Qnil,
4577 "Non-nil means the mark and region are currently active in this buffer.\n\
4578Automatically local in all buffers.");
4579
4580 DEFVAR_PER_BUFFER ("cache-long-line-scans", &current_buffer->cache_long_line_scans, Qnil,
4581 "Non-nil means that Emacs should use caches to handle long lines more quickly.\n\
4582This variable is buffer-local, in all buffers.\n\
4583\n\
4584Normally, the line-motion functions work by scanning the buffer for\n\
4585newlines. Columnar operations (like move-to-column and\n\
4586compute-motion) also work by scanning the buffer, summing character\n\
4587widths as they go. This works well for ordinary text, but if the\n\
4588buffer's lines are very long (say, more than 500 characters), these\n\
4589motion functions will take longer to execute. Emacs may also take\n\
4590longer to update the display.\n\
4591\n\
4592If cache-long-line-scans is non-nil, these motion functions cache the\n\
4593results of their scans, and consult the cache to avoid rescanning\n\
4594regions of the buffer until the text is modified. The caches are most\n\
4595beneficial when they prevent the most searching---that is, when the\n\
4596buffer contains long lines and large regions of characters with the\n\
4597same, fixed screen width.\n\
4598\n\
4599When cache-long-line-scans is non-nil, processing short lines will\n\
4600become slightly slower (because of the overhead of consulting the\n\
4601cache), and the caches will use memory roughly proportional to the\n\
4602number of newlines and characters whose screen width varies.\n\
4603\n\
4604The caches require no explicit maintenance; their accuracy is\n\
4605maintained internally by the Emacs primitives. Enabling or disabling\n\
4606the cache should not affect the behavior of any of the motion\n\
4607functions; it should only affect their performance.");
4608
4609 DEFVAR_PER_BUFFER ("point-before-scroll", &current_buffer->point_before_scroll, Qnil,
4610 "Value of point before the last series of scroll operations, or nil.\n\
4611This variable is always local in all buffers.");
4612
4613 DEFVAR_PER_BUFFER ("buffer-file-format", &current_buffer->file_format, Qnil,
4614 "List of formats to use when saving this buffer.\n\
4615This variable is always local in all buffers.\n\
4616Formats are defined by `format-alist'. This variable is\n\
4617set when a file is visited. Automatically local in all buffers.");
4618
4619 DEFVAR_PER_BUFFER ("buffer-invisibility-spec",
4620 &current_buffer->invisibility_spec, Qnil,
4621 "Invisibility spec of this buffer.\n\
4622This variable is always local in all buffers.\n\
4623The default is t, which means that text is invisible\n\
4624if it has a non-nil `invisible' property.\n\
4625If the value is a list, a text character is invisible if its `invisible'\n\
4626property is an element in that list.\n\
4627If an element is a cons cell of the form (PROP . ELLIPSIS),\n\
4628then characters with property value PROP are invisible,\n\
4629and they have an ellipsis as well if ELLIPSIS is non-nil.");
4630
4631 DEFVAR_PER_BUFFER ("buffer-display-count",
4632 &current_buffer->display_count, Qnil,
4633 "A number incremented each time this buffer is displayed in a window.\n\
4634This variable is always local in all buffers.\n\
4635The function `set-window-buffer increments it.");
4636
4637 DEFVAR_PER_BUFFER ("buffer-display-time",
4638 &current_buffer->display_time, Qnil,
4639 "Time stamp updated each time this buffer is displayed in a window.\n\
4640This variable is always local in all buffers.\n\
4641The function `set-window-buffer' updates this variable\n\
4642to the value obtained by calling `current-time'.\n\
4643If the buffer has never been shown in a window, the value is nil.");
4644
4645 DEFVAR_LISP ("transient-mark-mode", &Vtransient_mark_mode,
4646 "*Non-nil means deactivate the mark when the buffer contents change.\n\
4647Non-nil also enables highlighting of the region whenever the mark is active.\n\
4648The variable `highlight-nonselected-windows' controls whether to highlight\n\
4649all windows or just the selected window.");
4650 Vtransient_mark_mode = Qnil;
4651
4652 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only,
4653 "*Non-nil means disregard read-only status of buffers or characters.\n\
4654If the value is t, disregard `buffer-read-only' and all `read-only'\n\
4655text properties. If the value is a list, disregard `buffer-read-only'\n\
4656and disregard a `read-only' text property if the property value\n\
4657is a member of the list.");
4658 Vinhibit_read_only = Qnil;
4659
4660 DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions,
4661 "List of functions called with no args to query before killing a buffer.");
4662 Vkill_buffer_query_functions = Qnil;
4663
4664 defsubr (&Sbuffer_live_p);
4665 defsubr (&Sbuffer_list);
4666 defsubr (&Sget_buffer);
4667 defsubr (&Sget_file_buffer);
4668 defsubr (&Sget_buffer_create);
4669 defsubr (&Smake_indirect_buffer);
4670 defsubr (&Sgenerate_new_buffer_name);
4671 defsubr (&Sbuffer_name);
4672/*defsubr (&Sbuffer_number);*/
4673 defsubr (&Sbuffer_file_name);
4674 defsubr (&Sbuffer_base_buffer);
4675 defsubr (&Sbuffer_local_variables);
4676 defsubr (&Sbuffer_modified_p);
4677 defsubr (&Sset_buffer_modified_p);
4678 defsubr (&Sbuffer_modified_tick);
4679 defsubr (&Srename_buffer);
4680 defsubr (&Sother_buffer);
4681 defsubr (&Sbuffer_disable_undo);
4682 defsubr (&Sbuffer_enable_undo);
4683 defsubr (&Skill_buffer);
4684 defsubr (&Sset_buffer_major_mode);
4685 defsubr (&Sswitch_to_buffer);
4686 defsubr (&Spop_to_buffer);
4687 defsubr (&Scurrent_buffer);
4688 defsubr (&Sset_buffer);
4689 defsubr (&Sbarf_if_buffer_read_only);
4690 defsubr (&Sbury_buffer);
4691 defsubr (&Serase_buffer);
4692 defsubr (&Sset_buffer_multibyte);
4693 defsubr (&Skill_all_local_variables);
4694
4695 defsubr (&Soverlayp);
4696 defsubr (&Smake_overlay);
4697 defsubr (&Sdelete_overlay);
4698 defsubr (&Smove_overlay);
4699 defsubr (&Soverlay_start);
4700 defsubr (&Soverlay_end);
4701 defsubr (&Soverlay_buffer);
4702 defsubr (&Soverlay_properties);
4703 defsubr (&Soverlays_at);
4704 defsubr (&Soverlays_in);
4705 defsubr (&Snext_overlay_change);
4706 defsubr (&Sprevious_overlay_change);
4707 defsubr (&Soverlay_recenter);
4708 defsubr (&Soverlay_lists);
4709 defsubr (&Soverlay_get);
4710 defsubr (&Soverlay_put);
4711}
4712
4713void
4714keys_of_buffer ()
4715{
4716 initial_define_key (control_x_map, 'b', "switch-to-buffer");
4717 initial_define_key (control_x_map, 'k', "kill-buffer");
4718
4719 /* This must not be in syms_of_buffer, because Qdisabled is not
4720 initialized when that function gets called. */
4721 Fput (intern ("erase-buffer"), Qdisabled, Qt);
4722}