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