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