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