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