merge trunk
[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 #ifdef subprocesses
2544 /* Update coding systems of this buffer's process (if any). */
2545 {
2546 Lisp_Object process;
2547
2548 process = Fget_buffer_process (Fcurrent_buffer ());
2549 if (PROCESSP (process))
2550 setup_process_coding_systems (process);
2551 }
2552 #endif /* subprocesses */
2553
2554 return flag;
2555 }
2556 \f
2557 DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables,
2558 0, 0, 0,
2559 doc: /* Switch to Fundamental mode by killing current buffer's local variables.
2560 Most local variable bindings are eliminated so that the default values
2561 become effective once more. Also, the syntax table is set from
2562 `standard-syntax-table', the local keymap is set to nil,
2563 and the abbrev table from `fundamental-mode-abbrev-table'.
2564 This function also forces redisplay of the mode line.
2565
2566 Every function to select a new major mode starts by
2567 calling this function.
2568
2569 As a special exception, local variables whose names have
2570 a non-nil `permanent-local' property are not eliminated by this function.
2571
2572 The first thing this function does is run
2573 the normal hook `change-major-mode-hook'. */)
2574 (void)
2575 {
2576 if (!NILP (Vrun_hooks))
2577 call1 (Vrun_hooks, Qchange_major_mode_hook);
2578
2579 /* Make sure none of the bindings in local_var_alist
2580 remain swapped in, in their symbols. */
2581
2582 swap_out_buffer_local_variables (current_buffer);
2583
2584 /* Actually eliminate all local bindings of this buffer. */
2585
2586 reset_buffer_local_variables (current_buffer, 0);
2587
2588 /* Force mode-line redisplay. Useful here because all major mode
2589 commands call this function. */
2590 update_mode_lines++;
2591
2592 return Qnil;
2593 }
2594
2595 /* Make sure no local variables remain set up with buffer B
2596 for their current values. */
2597
2598 static void
2599 swap_out_buffer_local_variables (struct buffer *b)
2600 {
2601 Lisp_Object oalist, alist, buffer;
2602
2603 XSETBUFFER (buffer, b);
2604 oalist = b->local_var_alist;
2605
2606 for (alist = oalist; CONSP (alist); alist = XCDR (alist))
2607 {
2608 Lisp_Object sym = XCAR (XCAR (alist));
2609 eassert (XSYMBOL (sym)->redirect == SYMBOL_LOCALIZED);
2610 /* Need not do anything if some other buffer's binding is
2611 now encached. */
2612 if (EQ (SYMBOL_BLV (XSYMBOL (sym))->where, buffer))
2613 {
2614 /* Symbol is set up for this buffer's old local value:
2615 swap it out! */
2616 swap_in_global_binding (XSYMBOL (sym));
2617 }
2618 }
2619 }
2620 \f
2621 /* Find all the overlays in the current buffer that contain position POS.
2622 Return the number found, and store them in a vector in *VEC_PTR.
2623 Store in *LEN_PTR the size allocated for the vector.
2624 Store in *NEXT_PTR the next position after POS where an overlay starts,
2625 or ZV if there are no more overlays between POS and ZV.
2626 Store in *PREV_PTR the previous position before POS where an overlay ends,
2627 or where an overlay starts which ends at or after POS;
2628 or BEGV if there are no such overlays from BEGV to POS.
2629 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2630
2631 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2632 when this function is called.
2633
2634 If EXTEND is non-zero, we make the vector bigger if necessary.
2635 If EXTEND is zero, we never extend the vector,
2636 and we store only as many overlays as will fit.
2637 But we still return the total number of overlays.
2638
2639 If CHANGE_REQ is true, then any position written into *PREV_PTR or
2640 *NEXT_PTR is guaranteed to be not equal to POS, unless it is the
2641 default (BEGV or ZV). */
2642
2643 int
2644 overlays_at (EMACS_INT pos, int extend, Lisp_Object **vec_ptr, int *len_ptr,
2645 EMACS_INT *next_ptr, EMACS_INT *prev_ptr, int change_req)
2646 {
2647 Lisp_Object overlay, start, end;
2648 struct Lisp_Overlay *tail;
2649 int idx = 0;
2650 int len = *len_ptr;
2651 Lisp_Object *vec = *vec_ptr;
2652 int next = ZV;
2653 int prev = BEGV;
2654 int inhibit_storing = 0;
2655
2656 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
2657 {
2658 int startpos, endpos;
2659
2660 XSETMISC (overlay, tail);
2661
2662 start = OVERLAY_START (overlay);
2663 end = OVERLAY_END (overlay);
2664 endpos = OVERLAY_POSITION (end);
2665 if (endpos < pos)
2666 {
2667 if (prev < endpos)
2668 prev = endpos;
2669 break;
2670 }
2671 startpos = OVERLAY_POSITION (start);
2672 /* This one ends at or after POS
2673 so its start counts for PREV_PTR if it's before POS. */
2674 if (prev < startpos && startpos < pos)
2675 prev = startpos;
2676 if (endpos == pos)
2677 continue;
2678 if (startpos <= pos)
2679 {
2680 if (idx == len)
2681 {
2682 /* The supplied vector is full.
2683 Either make it bigger, or don't store any more in it. */
2684 if (extend)
2685 {
2686 /* Make it work with an initial len == 0. */
2687 len *= 2;
2688 if (len == 0)
2689 len = 4;
2690 *len_ptr = len;
2691 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2692 *vec_ptr = vec;
2693 }
2694 else
2695 inhibit_storing = 1;
2696 }
2697
2698 if (!inhibit_storing)
2699 vec[idx] = overlay;
2700 /* Keep counting overlays even if we can't return them all. */
2701 idx++;
2702 }
2703 else if (startpos < next)
2704 next = startpos;
2705 }
2706
2707 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
2708 {
2709 int startpos, endpos;
2710
2711 XSETMISC (overlay, tail);
2712
2713 start = OVERLAY_START (overlay);
2714 end = OVERLAY_END (overlay);
2715 startpos = OVERLAY_POSITION (start);
2716 if (pos < startpos)
2717 {
2718 if (startpos < next)
2719 next = startpos;
2720 break;
2721 }
2722 endpos = OVERLAY_POSITION (end);
2723 if (pos < endpos)
2724 {
2725 if (idx == len)
2726 {
2727 if (extend)
2728 {
2729 /* Make it work with an initial len == 0. */
2730 len *= 2;
2731 if (len == 0)
2732 len = 4;
2733 *len_ptr = len;
2734 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2735 *vec_ptr = vec;
2736 }
2737 else
2738 inhibit_storing = 1;
2739 }
2740
2741 if (!inhibit_storing)
2742 vec[idx] = overlay;
2743 idx++;
2744
2745 if (startpos < pos && startpos > prev)
2746 prev = startpos;
2747 }
2748 else if (endpos < pos && endpos > prev)
2749 prev = endpos;
2750 else if (endpos == pos && startpos > prev
2751 && (!change_req || startpos < pos))
2752 prev = startpos;
2753 }
2754
2755 if (next_ptr)
2756 *next_ptr = next;
2757 if (prev_ptr)
2758 *prev_ptr = prev;
2759 return idx;
2760 }
2761 \f
2762 /* Find all the overlays in the current buffer that overlap the range
2763 BEG-END, or are empty at BEG, or are empty at END provided END
2764 denotes the position at the end of the current buffer.
2765
2766 Return the number found, and store them in a vector in *VEC_PTR.
2767 Store in *LEN_PTR the size allocated for the vector.
2768 Store in *NEXT_PTR the next position after POS where an overlay starts,
2769 or ZV if there are no more overlays.
2770 Store in *PREV_PTR the previous position before POS where an overlay ends,
2771 or BEGV if there are no previous overlays.
2772 NEXT_PTR and/or PREV_PTR may be 0, meaning don't store that info.
2773
2774 *VEC_PTR and *LEN_PTR should contain a valid vector and size
2775 when this function is called.
2776
2777 If EXTEND is non-zero, we make the vector bigger if necessary.
2778 If EXTEND is zero, we never extend the vector,
2779 and we store only as many overlays as will fit.
2780 But we still return the total number of overlays. */
2781
2782 static int
2783 overlays_in (int beg, int end, int extend, Lisp_Object **vec_ptr, int *len_ptr,
2784 int *next_ptr, int *prev_ptr)
2785 {
2786 Lisp_Object overlay, ostart, oend;
2787 struct Lisp_Overlay *tail;
2788 int idx = 0;
2789 int len = *len_ptr;
2790 Lisp_Object *vec = *vec_ptr;
2791 int next = ZV;
2792 int prev = BEGV;
2793 int inhibit_storing = 0;
2794 int end_is_Z = end == Z;
2795
2796 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
2797 {
2798 int startpos, endpos;
2799
2800 XSETMISC (overlay, tail);
2801
2802 ostart = OVERLAY_START (overlay);
2803 oend = OVERLAY_END (overlay);
2804 endpos = OVERLAY_POSITION (oend);
2805 if (endpos < beg)
2806 {
2807 if (prev < endpos)
2808 prev = endpos;
2809 break;
2810 }
2811 startpos = OVERLAY_POSITION (ostart);
2812 /* Count an interval if it overlaps the range, is empty at the
2813 start of the range, or is empty at END provided END denotes the
2814 end of the buffer. */
2815 if ((beg < endpos && startpos < end)
2816 || (startpos == endpos
2817 && (beg == endpos || (end_is_Z && endpos == end))))
2818 {
2819 if (idx == len)
2820 {
2821 /* The supplied vector is full.
2822 Either make it bigger, or don't store any more in it. */
2823 if (extend)
2824 {
2825 /* Make it work with an initial len == 0. */
2826 len *= 2;
2827 if (len == 0)
2828 len = 4;
2829 *len_ptr = len;
2830 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2831 *vec_ptr = vec;
2832 }
2833 else
2834 inhibit_storing = 1;
2835 }
2836
2837 if (!inhibit_storing)
2838 vec[idx] = overlay;
2839 /* Keep counting overlays even if we can't return them all. */
2840 idx++;
2841 }
2842 else if (startpos < next)
2843 next = startpos;
2844 }
2845
2846 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
2847 {
2848 int startpos, endpos;
2849
2850 XSETMISC (overlay, tail);
2851
2852 ostart = OVERLAY_START (overlay);
2853 oend = OVERLAY_END (overlay);
2854 startpos = OVERLAY_POSITION (ostart);
2855 if (end < startpos)
2856 {
2857 if (startpos < next)
2858 next = startpos;
2859 break;
2860 }
2861 endpos = OVERLAY_POSITION (oend);
2862 /* Count an interval if it overlaps the range, is empty at the
2863 start of the range, or is empty at END provided END denotes the
2864 end of the buffer. */
2865 if ((beg < endpos && startpos < end)
2866 || (startpos == endpos
2867 && (beg == endpos || (end_is_Z && endpos == end))))
2868 {
2869 if (idx == len)
2870 {
2871 if (extend)
2872 {
2873 /* Make it work with an initial len == 0. */
2874 len *= 2;
2875 if (len == 0)
2876 len = 4;
2877 *len_ptr = len;
2878 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
2879 *vec_ptr = vec;
2880 }
2881 else
2882 inhibit_storing = 1;
2883 }
2884
2885 if (!inhibit_storing)
2886 vec[idx] = overlay;
2887 idx++;
2888 }
2889 else if (endpos < beg && endpos > prev)
2890 prev = endpos;
2891 }
2892
2893 if (next_ptr)
2894 *next_ptr = next;
2895 if (prev_ptr)
2896 *prev_ptr = prev;
2897 return idx;
2898 }
2899
2900
2901 /* Return non-zero if there exists an overlay with a non-nil
2902 `mouse-face' property overlapping OVERLAY. */
2903
2904 int
2905 mouse_face_overlay_overlaps (Lisp_Object overlay)
2906 {
2907 int start = OVERLAY_POSITION (OVERLAY_START (overlay));
2908 int end = OVERLAY_POSITION (OVERLAY_END (overlay));
2909 int n, i, size;
2910 Lisp_Object *v, tem;
2911
2912 size = 10;
2913 v = (Lisp_Object *) alloca (size * sizeof *v);
2914 n = overlays_in (start, end, 0, &v, &size, NULL, NULL);
2915 if (n > size)
2916 {
2917 v = (Lisp_Object *) alloca (n * sizeof *v);
2918 overlays_in (start, end, 0, &v, &n, NULL, NULL);
2919 }
2920
2921 for (i = 0; i < n; ++i)
2922 if (!EQ (v[i], overlay)
2923 && (tem = Foverlay_get (overlay, Qmouse_face),
2924 !NILP (tem)))
2925 break;
2926
2927 return i < n;
2928 }
2929
2930
2931 \f
2932 /* Fast function to just test if we're at an overlay boundary. */
2933 int
2934 overlay_touches_p (int pos)
2935 {
2936 Lisp_Object overlay;
2937 struct Lisp_Overlay *tail;
2938
2939 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
2940 {
2941 int endpos;
2942
2943 XSETMISC (overlay ,tail);
2944 if (!OVERLAYP (overlay))
2945 abort ();
2946
2947 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
2948 if (endpos < pos)
2949 break;
2950 if (endpos == pos || OVERLAY_POSITION (OVERLAY_START (overlay)) == pos)
2951 return 1;
2952 }
2953
2954 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
2955 {
2956 int startpos;
2957
2958 XSETMISC (overlay, tail);
2959 if (!OVERLAYP (overlay))
2960 abort ();
2961
2962 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
2963 if (pos < startpos)
2964 break;
2965 if (startpos == pos || OVERLAY_POSITION (OVERLAY_END (overlay)) == pos)
2966 return 1;
2967 }
2968 return 0;
2969 }
2970 \f
2971 struct sortvec
2972 {
2973 Lisp_Object overlay;
2974 int beg, end;
2975 int priority;
2976 };
2977
2978 static int
2979 compare_overlays (const void *v1, const void *v2)
2980 {
2981 const struct sortvec *s1 = (const struct sortvec *) v1;
2982 const struct sortvec *s2 = (const struct sortvec *) v2;
2983 if (s1->priority != s2->priority)
2984 return s1->priority - s2->priority;
2985 if (s1->beg != s2->beg)
2986 return s1->beg - s2->beg;
2987 if (s1->end != s2->end)
2988 return s2->end - s1->end;
2989 return 0;
2990 }
2991
2992 /* Sort an array of overlays by priority. The array is modified in place.
2993 The return value is the new size; this may be smaller than the original
2994 size if some of the overlays were invalid or were window-specific. */
2995 int
2996 sort_overlays (Lisp_Object *overlay_vec, int noverlays, struct window *w)
2997 {
2998 int i, j;
2999 struct sortvec *sortvec;
3000 sortvec = (struct sortvec *) alloca (noverlays * sizeof (struct sortvec));
3001
3002 /* Put the valid and relevant overlays into sortvec. */
3003
3004 for (i = 0, j = 0; i < noverlays; i++)
3005 {
3006 Lisp_Object tem;
3007 Lisp_Object overlay;
3008
3009 overlay = overlay_vec[i];
3010 if (OVERLAY_VALID (overlay)
3011 && OVERLAY_POSITION (OVERLAY_START (overlay)) > 0
3012 && OVERLAY_POSITION (OVERLAY_END (overlay)) > 0)
3013 {
3014 /* If we're interested in a specific window, then ignore
3015 overlays that are limited to some other window. */
3016 if (w)
3017 {
3018 Lisp_Object window;
3019
3020 window = Foverlay_get (overlay, Qwindow);
3021 if (WINDOWP (window) && XWINDOW (window) != w)
3022 continue;
3023 }
3024
3025 /* This overlay is good and counts: put it into sortvec. */
3026 sortvec[j].overlay = overlay;
3027 sortvec[j].beg = OVERLAY_POSITION (OVERLAY_START (overlay));
3028 sortvec[j].end = OVERLAY_POSITION (OVERLAY_END (overlay));
3029 tem = Foverlay_get (overlay, Qpriority);
3030 if (INTEGERP (tem))
3031 sortvec[j].priority = XINT (tem);
3032 else
3033 sortvec[j].priority = 0;
3034 j++;
3035 }
3036 }
3037 noverlays = j;
3038
3039 /* Sort the overlays into the proper order: increasing priority. */
3040
3041 if (noverlays > 1)
3042 qsort (sortvec, noverlays, sizeof (struct sortvec), compare_overlays);
3043
3044 for (i = 0; i < noverlays; i++)
3045 overlay_vec[i] = sortvec[i].overlay;
3046 return (noverlays);
3047 }
3048 \f
3049 struct sortstr
3050 {
3051 Lisp_Object string, string2;
3052 int size;
3053 int priority;
3054 };
3055
3056 struct sortstrlist
3057 {
3058 struct sortstr *buf; /* An array that expands as needed; never freed. */
3059 int size; /* Allocated length of that array. */
3060 int used; /* How much of the array is currently in use. */
3061 int bytes; /* Total length of the strings in buf. */
3062 };
3063
3064 /* Buffers for storing information about the overlays touching a given
3065 position. These could be automatic variables in overlay_strings, but
3066 it's more efficient to hold onto the memory instead of repeatedly
3067 allocating and freeing it. */
3068 static struct sortstrlist overlay_heads, overlay_tails;
3069 static unsigned char *overlay_str_buf;
3070
3071 /* Allocated length of overlay_str_buf. */
3072 static int overlay_str_len;
3073
3074 /* A comparison function suitable for passing to qsort. */
3075 static int
3076 cmp_for_strings (const void *as1, const void *as2)
3077 {
3078 struct sortstr *s1 = (struct sortstr *)as1;
3079 struct sortstr *s2 = (struct sortstr *)as2;
3080 if (s1->size != s2->size)
3081 return s2->size - s1->size;
3082 if (s1->priority != s2->priority)
3083 return s1->priority - s2->priority;
3084 return 0;
3085 }
3086
3087 static void
3088 record_overlay_string (struct sortstrlist *ssl, Lisp_Object str, Lisp_Object str2, Lisp_Object pri, int size)
3089 {
3090 int nbytes;
3091
3092 if (ssl->used == ssl->size)
3093 {
3094 if (ssl->buf)
3095 ssl->size *= 2;
3096 else
3097 ssl->size = 5;
3098 ssl->buf = ((struct sortstr *)
3099 xrealloc (ssl->buf, ssl->size * sizeof (struct sortstr)));
3100 }
3101 ssl->buf[ssl->used].string = str;
3102 ssl->buf[ssl->used].string2 = str2;
3103 ssl->buf[ssl->used].size = size;
3104 ssl->buf[ssl->used].priority = (INTEGERP (pri) ? XINT (pri) : 0);
3105 ssl->used++;
3106
3107 if (NILP (current_buffer->enable_multibyte_characters))
3108 nbytes = SCHARS (str);
3109 else if (! STRING_MULTIBYTE (str))
3110 nbytes = count_size_as_multibyte (SDATA (str),
3111 SBYTES (str));
3112 else
3113 nbytes = SBYTES (str);
3114
3115 ssl->bytes += nbytes;
3116
3117 if (STRINGP (str2))
3118 {
3119 if (NILP (current_buffer->enable_multibyte_characters))
3120 nbytes = SCHARS (str2);
3121 else if (! STRING_MULTIBYTE (str2))
3122 nbytes = count_size_as_multibyte (SDATA (str2),
3123 SBYTES (str2));
3124 else
3125 nbytes = SBYTES (str2);
3126
3127 ssl->bytes += nbytes;
3128 }
3129 }
3130
3131 /* Return the concatenation of the strings associated with overlays that
3132 begin or end at POS, ignoring overlays that are specific to a window
3133 other than W. The strings are concatenated in the appropriate order:
3134 shorter overlays nest inside longer ones, and higher priority inside
3135 lower. Normally all of the after-strings come first, but zero-sized
3136 overlays have their after-strings ride along with the before-strings
3137 because it would look strange to print them inside-out.
3138
3139 Returns the string length, and stores the contents indirectly through
3140 PSTR, if that variable is non-null. The string may be overwritten by
3141 subsequent calls. */
3142
3143 int
3144 overlay_strings (EMACS_INT pos, struct window *w, unsigned char **pstr)
3145 {
3146 Lisp_Object overlay, window, str;
3147 struct Lisp_Overlay *ov;
3148 int startpos, endpos;
3149 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
3150
3151 overlay_heads.used = overlay_heads.bytes = 0;
3152 overlay_tails.used = overlay_tails.bytes = 0;
3153 for (ov = current_buffer->overlays_before; ov; ov = ov->next)
3154 {
3155 XSETMISC (overlay, ov);
3156 eassert (OVERLAYP (overlay));
3157
3158 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3159 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3160 if (endpos < pos)
3161 break;
3162 if (endpos != pos && startpos != pos)
3163 continue;
3164 window = Foverlay_get (overlay, Qwindow);
3165 if (WINDOWP (window) && XWINDOW (window) != w)
3166 continue;
3167 if (startpos == pos
3168 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
3169 record_overlay_string (&overlay_heads, str,
3170 (startpos == endpos
3171 ? Foverlay_get (overlay, Qafter_string)
3172 : Qnil),
3173 Foverlay_get (overlay, Qpriority),
3174 endpos - startpos);
3175 else if (endpos == pos
3176 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
3177 record_overlay_string (&overlay_tails, str, Qnil,
3178 Foverlay_get (overlay, Qpriority),
3179 endpos - startpos);
3180 }
3181 for (ov = current_buffer->overlays_after; ov; ov = ov->next)
3182 {
3183 XSETMISC (overlay, ov);
3184 eassert (OVERLAYP (overlay));
3185
3186 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3187 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3188 if (startpos > pos)
3189 break;
3190 if (endpos != pos && startpos != pos)
3191 continue;
3192 window = Foverlay_get (overlay, Qwindow);
3193 if (WINDOWP (window) && XWINDOW (window) != w)
3194 continue;
3195 if (startpos == pos
3196 && (str = Foverlay_get (overlay, Qbefore_string), STRINGP (str)))
3197 record_overlay_string (&overlay_heads, str,
3198 (startpos == endpos
3199 ? Foverlay_get (overlay, Qafter_string)
3200 : Qnil),
3201 Foverlay_get (overlay, Qpriority),
3202 endpos - startpos);
3203 else if (endpos == pos
3204 && (str = Foverlay_get (overlay, Qafter_string), STRINGP (str)))
3205 record_overlay_string (&overlay_tails, str, Qnil,
3206 Foverlay_get (overlay, Qpriority),
3207 endpos - startpos);
3208 }
3209 if (overlay_tails.used > 1)
3210 qsort (overlay_tails.buf, overlay_tails.used, sizeof (struct sortstr),
3211 cmp_for_strings);
3212 if (overlay_heads.used > 1)
3213 qsort (overlay_heads.buf, overlay_heads.used, sizeof (struct sortstr),
3214 cmp_for_strings);
3215 if (overlay_heads.bytes || overlay_tails.bytes)
3216 {
3217 Lisp_Object tem;
3218 int i;
3219 unsigned char *p;
3220 int total = overlay_heads.bytes + overlay_tails.bytes;
3221
3222 if (total > overlay_str_len)
3223 {
3224 overlay_str_len = total;
3225 overlay_str_buf = (unsigned char *)xrealloc (overlay_str_buf,
3226 total);
3227 }
3228 p = overlay_str_buf;
3229 for (i = overlay_tails.used; --i >= 0;)
3230 {
3231 int nbytes;
3232 tem = overlay_tails.buf[i].string;
3233 nbytes = copy_text (SDATA (tem), p,
3234 SBYTES (tem),
3235 STRING_MULTIBYTE (tem), multibyte);
3236 p += nbytes;
3237 }
3238 for (i = 0; i < overlay_heads.used; ++i)
3239 {
3240 int nbytes;
3241 tem = overlay_heads.buf[i].string;
3242 nbytes = copy_text (SDATA (tem), p,
3243 SBYTES (tem),
3244 STRING_MULTIBYTE (tem), multibyte);
3245 p += nbytes;
3246 tem = overlay_heads.buf[i].string2;
3247 if (STRINGP (tem))
3248 {
3249 nbytes = copy_text (SDATA (tem), p,
3250 SBYTES (tem),
3251 STRING_MULTIBYTE (tem), multibyte);
3252 p += nbytes;
3253 }
3254 }
3255 if (p != overlay_str_buf + total)
3256 abort ();
3257 if (pstr)
3258 *pstr = overlay_str_buf;
3259 return total;
3260 }
3261 return 0;
3262 }
3263 \f
3264 /* Shift overlays in BUF's overlay lists, to center the lists at POS. */
3265
3266 void
3267 recenter_overlay_lists (struct buffer *buf, EMACS_INT pos)
3268 {
3269 Lisp_Object overlay, beg, end;
3270 struct Lisp_Overlay *prev, *tail, *next;
3271
3272 /* See if anything in overlays_before should move to overlays_after. */
3273
3274 /* We don't strictly need prev in this loop; it should always be nil.
3275 But we use it for symmetry and in case that should cease to be true
3276 with some future change. */
3277 prev = NULL;
3278 for (tail = buf->overlays_before; tail; prev = tail, tail = next)
3279 {
3280 next = tail->next;
3281 XSETMISC (overlay, tail);
3282
3283 /* If the overlay is not valid, get rid of it. */
3284 if (!OVERLAY_VALID (overlay))
3285 #if 1
3286 abort ();
3287 #else
3288 {
3289 /* Splice the cons cell TAIL out of overlays_before. */
3290 if (!NILP (prev))
3291 XCDR (prev) = next;
3292 else
3293 buf->overlays_before = next;
3294 tail = prev;
3295 continue;
3296 }
3297 #endif
3298
3299 beg = OVERLAY_START (overlay);
3300 end = OVERLAY_END (overlay);
3301
3302 if (OVERLAY_POSITION (end) > pos)
3303 {
3304 /* OVERLAY needs to be moved. */
3305 int where = OVERLAY_POSITION (beg);
3306 struct Lisp_Overlay *other, *other_prev;
3307
3308 /* Splice the cons cell TAIL out of overlays_before. */
3309 if (prev)
3310 prev->next = next;
3311 else
3312 buf->overlays_before = next;
3313
3314 /* Search thru overlays_after for where to put it. */
3315 other_prev = NULL;
3316 for (other = buf->overlays_after; other;
3317 other_prev = other, other = other->next)
3318 {
3319 Lisp_Object otherbeg, otheroverlay;
3320
3321 XSETMISC (otheroverlay, other);
3322 eassert (OVERLAY_VALID (otheroverlay));
3323
3324 otherbeg = OVERLAY_START (otheroverlay);
3325 if (OVERLAY_POSITION (otherbeg) >= where)
3326 break;
3327 }
3328
3329 /* Add TAIL to overlays_after before OTHER. */
3330 tail->next = other;
3331 if (other_prev)
3332 other_prev->next = tail;
3333 else
3334 buf->overlays_after = tail;
3335 tail = prev;
3336 }
3337 else
3338 /* We've reached the things that should stay in overlays_before.
3339 All the rest of overlays_before must end even earlier,
3340 so stop now. */
3341 break;
3342 }
3343
3344 /* See if anything in overlays_after should be in overlays_before. */
3345 prev = NULL;
3346 for (tail = buf->overlays_after; tail; prev = tail, tail = next)
3347 {
3348 next = tail->next;
3349 XSETMISC (overlay, tail);
3350
3351 /* If the overlay is not valid, get rid of it. */
3352 if (!OVERLAY_VALID (overlay))
3353 #if 1
3354 abort ();
3355 #else
3356 {
3357 /* Splice the cons cell TAIL out of overlays_after. */
3358 if (!NILP (prev))
3359 XCDR (prev) = next;
3360 else
3361 buf->overlays_after = next;
3362 tail = prev;
3363 continue;
3364 }
3365 #endif
3366
3367 beg = OVERLAY_START (overlay);
3368 end = OVERLAY_END (overlay);
3369
3370 /* Stop looking, when we know that nothing further
3371 can possibly end before POS. */
3372 if (OVERLAY_POSITION (beg) > pos)
3373 break;
3374
3375 if (OVERLAY_POSITION (end) <= pos)
3376 {
3377 /* OVERLAY needs to be moved. */
3378 int where = OVERLAY_POSITION (end);
3379 struct Lisp_Overlay *other, *other_prev;
3380
3381 /* Splice the cons cell TAIL out of overlays_after. */
3382 if (prev)
3383 prev->next = next;
3384 else
3385 buf->overlays_after = next;
3386
3387 /* Search thru overlays_before for where to put it. */
3388 other_prev = NULL;
3389 for (other = buf->overlays_before; other;
3390 other_prev = other, other = other->next)
3391 {
3392 Lisp_Object otherend, otheroverlay;
3393
3394 XSETMISC (otheroverlay, other);
3395 eassert (OVERLAY_VALID (otheroverlay));
3396
3397 otherend = OVERLAY_END (otheroverlay);
3398 if (OVERLAY_POSITION (otherend) <= where)
3399 break;
3400 }
3401
3402 /* Add TAIL to overlays_before before OTHER. */
3403 tail->next = other;
3404 if (other_prev)
3405 other_prev->next = tail;
3406 else
3407 buf->overlays_before = tail;
3408 tail = prev;
3409 }
3410 }
3411
3412 buf->overlay_center = pos;
3413 }
3414
3415 void
3416 adjust_overlays_for_insert (EMACS_INT pos, EMACS_INT length)
3417 {
3418 /* After an insertion, the lists are still sorted properly,
3419 but we may need to update the value of the overlay center. */
3420 if (current_buffer->overlay_center >= pos)
3421 current_buffer->overlay_center += length;
3422 }
3423
3424 void
3425 adjust_overlays_for_delete (EMACS_INT pos, EMACS_INT length)
3426 {
3427 if (current_buffer->overlay_center < pos)
3428 /* The deletion was to our right. No change needed; the before- and
3429 after-lists are still consistent. */
3430 ;
3431 else if (current_buffer->overlay_center > pos + length)
3432 /* The deletion was to our left. We need to adjust the center value
3433 to account for the change in position, but the lists are consistent
3434 given the new value. */
3435 current_buffer->overlay_center -= length;
3436 else
3437 /* We're right in the middle. There might be things on the after-list
3438 that now belong on the before-list. Recentering will move them,
3439 and also update the center point. */
3440 recenter_overlay_lists (current_buffer, pos);
3441 }
3442
3443 /* Fix up overlays that were garbled as a result of permuting markers
3444 in the range START through END. Any overlay with at least one
3445 endpoint in this range will need to be unlinked from the overlay
3446 list and reinserted in its proper place.
3447 Such an overlay might even have negative size at this point.
3448 If so, we'll make the overlay empty. */
3449 void
3450 fix_start_end_in_overlays (register int start, register int end)
3451 {
3452 Lisp_Object overlay;
3453 struct Lisp_Overlay *before_list, *after_list;
3454 /* These are either nil, indicating that before_list or after_list
3455 should be assigned, or the cons cell the cdr of which should be
3456 assigned. */
3457 struct Lisp_Overlay *beforep = NULL, *afterp = NULL;
3458 /* 'Parent', likewise, indicates a cons cell or
3459 current_buffer->overlays_before or overlays_after, depending
3460 which loop we're in. */
3461 struct Lisp_Overlay *tail, *parent;
3462 int startpos, endpos;
3463
3464 /* This algorithm shifts links around instead of consing and GCing.
3465 The loop invariant is that before_list (resp. after_list) is a
3466 well-formed list except that its last element, the CDR of beforep
3467 (resp. afterp) if beforep (afterp) isn't nil or before_list
3468 (after_list) if it is, is still uninitialized. So it's not a bug
3469 that before_list isn't initialized, although it may look
3470 strange. */
3471 for (parent = NULL, tail = current_buffer->overlays_before; tail;)
3472 {
3473 XSETMISC (overlay, tail);
3474
3475 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3476 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3477
3478 /* If the overlay is backwards, make it empty. */
3479 if (endpos < startpos)
3480 {
3481 startpos = endpos;
3482 Fset_marker (OVERLAY_START (overlay), make_number (startpos),
3483 Qnil);
3484 }
3485
3486 if (endpos < start)
3487 break;
3488
3489 if (endpos < end
3490 || (startpos >= start && startpos < end))
3491 {
3492 /* Add it to the end of the wrong list. Later on,
3493 recenter_overlay_lists will move it to the right place. */
3494 if (endpos < current_buffer->overlay_center)
3495 {
3496 if (!afterp)
3497 after_list = tail;
3498 else
3499 afterp->next = tail;
3500 afterp = tail;
3501 }
3502 else
3503 {
3504 if (!beforep)
3505 before_list = tail;
3506 else
3507 beforep->next = tail;
3508 beforep = tail;
3509 }
3510 if (!parent)
3511 current_buffer->overlays_before = tail->next;
3512 else
3513 parent->next = tail->next;
3514 tail = tail->next;
3515 }
3516 else
3517 parent = tail, tail = parent->next;
3518 }
3519 for (parent = NULL, tail = current_buffer->overlays_after; tail;)
3520 {
3521 XSETMISC (overlay, tail);
3522
3523 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
3524 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
3525
3526 /* If the overlay is backwards, make it empty. */
3527 if (endpos < startpos)
3528 {
3529 startpos = endpos;
3530 Fset_marker (OVERLAY_START (overlay), make_number (startpos),
3531 Qnil);
3532 }
3533
3534 if (startpos >= end)
3535 break;
3536
3537 if (startpos >= start
3538 || (endpos >= start && endpos < end))
3539 {
3540 if (endpos < current_buffer->overlay_center)
3541 {
3542 if (!afterp)
3543 after_list = tail;
3544 else
3545 afterp->next = tail;
3546 afterp = tail;
3547 }
3548 else
3549 {
3550 if (!beforep)
3551 before_list = tail;
3552 else
3553 beforep->next = tail;
3554 beforep = tail;
3555 }
3556 if (!parent)
3557 current_buffer->overlays_after = tail->next;
3558 else
3559 parent->next = tail->next;
3560 tail = tail->next;
3561 }
3562 else
3563 parent = tail, tail = parent->next;
3564 }
3565
3566 /* Splice the constructed (wrong) lists into the buffer's lists,
3567 and let the recenter function make it sane again. */
3568 if (beforep)
3569 {
3570 beforep->next = current_buffer->overlays_before;
3571 current_buffer->overlays_before = before_list;
3572 }
3573 recenter_overlay_lists (current_buffer, current_buffer->overlay_center);
3574
3575 if (afterp)
3576 {
3577 afterp->next = current_buffer->overlays_after;
3578 current_buffer->overlays_after = after_list;
3579 }
3580 recenter_overlay_lists (current_buffer, current_buffer->overlay_center);
3581 }
3582
3583 /* We have two types of overlay: the one whose ending marker is
3584 after-insertion-marker (this is the usual case) and the one whose
3585 ending marker is before-insertion-marker. When `overlays_before'
3586 contains overlays of the latter type and the former type in this
3587 order and both overlays end at inserting position, inserting a text
3588 increases only the ending marker of the latter type, which results
3589 in incorrect ordering of `overlays_before'.
3590
3591 This function fixes ordering of overlays in the slot
3592 `overlays_before' of the buffer *BP. Before the insertion, `point'
3593 was at PREV, and now is at POS. */
3594
3595 void
3596 fix_overlays_before (struct buffer *bp, EMACS_INT prev, EMACS_INT pos)
3597 {
3598 /* If parent is nil, replace overlays_before; otherwise, parent->next. */
3599 struct Lisp_Overlay *tail = bp->overlays_before, *parent = NULL, *right_pair;
3600 Lisp_Object tem;
3601 EMACS_INT end;
3602
3603 /* After the insertion, the several overlays may be in incorrect
3604 order. The possibility is that, in the list `overlays_before',
3605 an overlay which ends at POS appears after an overlay which ends
3606 at PREV. Since POS is greater than PREV, we must fix the
3607 ordering of these overlays, by moving overlays ends at POS before
3608 the overlays ends at PREV. */
3609
3610 /* At first, find a place where disordered overlays should be linked
3611 in. It is where an overlay which end before POS exists. (i.e. an
3612 overlay whose ending marker is after-insertion-marker if disorder
3613 exists). */
3614 while (tail
3615 && (XSETMISC (tem, tail),
3616 (end = OVERLAY_POSITION (OVERLAY_END (tem))) >= pos))
3617 {
3618 parent = tail;
3619 tail = tail->next;
3620 }
3621
3622 /* If we don't find such an overlay,
3623 or the found one ends before PREV,
3624 or the found one is the last one in the list,
3625 we don't have to fix anything. */
3626 if (!tail || end < prev || !tail->next)
3627 return;
3628
3629 right_pair = parent;
3630 parent = tail;
3631 tail = tail->next;
3632
3633 /* Now, end position of overlays in the list TAIL should be before
3634 or equal to PREV. In the loop, an overlay which ends at POS is
3635 moved ahead to the place indicated by the CDR of RIGHT_PAIR. If
3636 we found an overlay which ends before PREV, the remaining
3637 overlays are in correct order. */
3638 while (tail)
3639 {
3640 XSETMISC (tem, tail);
3641 end = OVERLAY_POSITION (OVERLAY_END (tem));
3642
3643 if (end == pos)
3644 { /* This overlay is disordered. */
3645 struct Lisp_Overlay *found = tail;
3646
3647 /* Unlink the found overlay. */
3648 tail = found->next;
3649 parent->next = tail;
3650 /* Move an overlay at RIGHT_PLACE to the next of the found one,
3651 and link it into the right place. */
3652 if (!right_pair)
3653 {
3654 found->next = bp->overlays_before;
3655 bp->overlays_before = found;
3656 }
3657 else
3658 {
3659 found->next = right_pair->next;
3660 right_pair->next = found;
3661 }
3662 }
3663 else if (end == prev)
3664 {
3665 parent = tail;
3666 tail = tail->next;
3667 }
3668 else /* No more disordered overlay. */
3669 break;
3670 }
3671 }
3672 \f
3673 DEFUN ("overlayp", Foverlayp, Soverlayp, 1, 1, 0,
3674 doc: /* Return t if OBJECT is an overlay. */)
3675 (Lisp_Object object)
3676 {
3677 return (OVERLAYP (object) ? Qt : Qnil);
3678 }
3679
3680 DEFUN ("make-overlay", Fmake_overlay, Smake_overlay, 2, 5, 0,
3681 doc: /* Create a new overlay with range BEG to END in BUFFER.
3682 If omitted, BUFFER defaults to the current buffer.
3683 BEG and END may be integers or markers.
3684 The fourth arg FRONT-ADVANCE, if non-nil, makes the marker
3685 for the front of the overlay advance when text is inserted there
3686 \(which means the text *is not* included in the overlay).
3687 The fifth arg REAR-ADVANCE, if non-nil, makes the marker
3688 for the rear of the overlay advance when text is inserted there
3689 \(which means the text *is* included in the overlay). */)
3690 (Lisp_Object beg, Lisp_Object end, Lisp_Object buffer, Lisp_Object front_advance, Lisp_Object rear_advance)
3691 {
3692 Lisp_Object overlay;
3693 struct buffer *b;
3694
3695 if (NILP (buffer))
3696 XSETBUFFER (buffer, current_buffer);
3697 else
3698 CHECK_BUFFER (buffer);
3699 if (MARKERP (beg)
3700 && ! EQ (Fmarker_buffer (beg), buffer))
3701 error ("Marker points into wrong buffer");
3702 if (MARKERP (end)
3703 && ! EQ (Fmarker_buffer (end), buffer))
3704 error ("Marker points into wrong buffer");
3705
3706 CHECK_NUMBER_COERCE_MARKER (beg);
3707 CHECK_NUMBER_COERCE_MARKER (end);
3708
3709 if (XINT (beg) > XINT (end))
3710 {
3711 Lisp_Object temp;
3712 temp = beg; beg = end; end = temp;
3713 }
3714
3715 b = XBUFFER (buffer);
3716
3717 beg = Fset_marker (Fmake_marker (), beg, buffer);
3718 end = Fset_marker (Fmake_marker (), end, buffer);
3719
3720 if (!NILP (front_advance))
3721 XMARKER (beg)->insertion_type = 1;
3722 if (!NILP (rear_advance))
3723 XMARKER (end)->insertion_type = 1;
3724
3725 overlay = allocate_misc ();
3726 XMISCTYPE (overlay) = Lisp_Misc_Overlay;
3727 XOVERLAY (overlay)->start = beg;
3728 XOVERLAY (overlay)->end = end;
3729 XOVERLAY (overlay)->plist = Qnil;
3730 XOVERLAY (overlay)->next = NULL;
3731
3732 /* Put the new overlay on the wrong list. */
3733 end = OVERLAY_END (overlay);
3734 if (OVERLAY_POSITION (end) < b->overlay_center)
3735 {
3736 if (b->overlays_after)
3737 XOVERLAY (overlay)->next = b->overlays_after;
3738 b->overlays_after = XOVERLAY (overlay);
3739 }
3740 else
3741 {
3742 if (b->overlays_before)
3743 XOVERLAY (overlay)->next = b->overlays_before;
3744 b->overlays_before = XOVERLAY (overlay);
3745 }
3746
3747 /* This puts it in the right list, and in the right order. */
3748 recenter_overlay_lists (b, b->overlay_center);
3749
3750 /* We don't need to redisplay the region covered by the overlay, because
3751 the overlay has no properties at the moment. */
3752
3753 return overlay;
3754 }
3755 \f
3756 /* Mark a section of BUF as needing redisplay because of overlays changes. */
3757
3758 static void
3759 modify_overlay (struct buffer *buf, EMACS_INT start, EMACS_INT end)
3760 {
3761 if (start > end)
3762 {
3763 int temp = start;
3764 start = end;
3765 end = temp;
3766 }
3767
3768 BUF_COMPUTE_UNCHANGED (buf, start, end);
3769
3770 /* If this is a buffer not in the selected window,
3771 we must do other windows. */
3772 if (buf != XBUFFER (XWINDOW (selected_window)->buffer))
3773 windows_or_buffers_changed = 1;
3774 /* If multiple windows show this buffer, we must do other windows. */
3775 else if (buffer_shared > 1)
3776 windows_or_buffers_changed = 1;
3777 /* If we modify an overlay at the end of the buffer, we cannot
3778 be sure that window end is still valid. */
3779 else if (end >= ZV && start <= ZV)
3780 windows_or_buffers_changed = 1;
3781
3782 ++BUF_OVERLAY_MODIFF (buf);
3783 }
3784
3785 \f
3786 Lisp_Object Fdelete_overlay (Lisp_Object overlay);
3787
3788 static struct Lisp_Overlay *
3789 unchain_overlay (struct Lisp_Overlay *list, struct Lisp_Overlay *overlay)
3790 {
3791 struct Lisp_Overlay *tmp, *prev;
3792 for (tmp = list, prev = NULL; tmp; prev = tmp, tmp = tmp->next)
3793 if (tmp == overlay)
3794 {
3795 if (prev)
3796 prev->next = tmp->next;
3797 else
3798 list = tmp->next;
3799 overlay->next = NULL;
3800 break;
3801 }
3802 return list;
3803 }
3804
3805 DEFUN ("move-overlay", Fmove_overlay, Smove_overlay, 3, 4, 0,
3806 doc: /* Set the endpoints of OVERLAY to BEG and END in BUFFER.
3807 If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.
3808 If BUFFER is omitted, and OVERLAY is in no buffer, put it in the current
3809 buffer. */)
3810 (Lisp_Object overlay, Lisp_Object beg, Lisp_Object end, Lisp_Object buffer)
3811 {
3812 struct buffer *b, *ob;
3813 Lisp_Object obuffer;
3814 int count = SPECPDL_INDEX ();
3815
3816 CHECK_OVERLAY (overlay);
3817 if (NILP (buffer))
3818 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3819 if (NILP (buffer))
3820 XSETBUFFER (buffer, current_buffer);
3821 CHECK_BUFFER (buffer);
3822
3823 if (MARKERP (beg)
3824 && ! EQ (Fmarker_buffer (beg), buffer))
3825 error ("Marker points into wrong buffer");
3826 if (MARKERP (end)
3827 && ! EQ (Fmarker_buffer (end), buffer))
3828 error ("Marker points into wrong buffer");
3829
3830 CHECK_NUMBER_COERCE_MARKER (beg);
3831 CHECK_NUMBER_COERCE_MARKER (end);
3832
3833 if (XINT (beg) == XINT (end) && ! NILP (Foverlay_get (overlay, Qevaporate)))
3834 return Fdelete_overlay (overlay);
3835
3836 if (XINT (beg) > XINT (end))
3837 {
3838 Lisp_Object temp;
3839 temp = beg; beg = end; end = temp;
3840 }
3841
3842 specbind (Qinhibit_quit, Qt);
3843
3844 obuffer = Fmarker_buffer (OVERLAY_START (overlay));
3845 b = XBUFFER (buffer);
3846 ob = BUFFERP (obuffer) ? XBUFFER (obuffer) : (struct buffer *) 0;
3847
3848 /* If the overlay has changed buffers, do a thorough redisplay. */
3849 if (!EQ (buffer, obuffer))
3850 {
3851 /* Redisplay where the overlay was. */
3852 if (!NILP (obuffer))
3853 {
3854 int o_beg;
3855 int o_end;
3856
3857 o_beg = OVERLAY_POSITION (OVERLAY_START (overlay));
3858 o_end = OVERLAY_POSITION (OVERLAY_END (overlay));
3859
3860 modify_overlay (ob, o_beg, o_end);
3861 }
3862
3863 /* Redisplay where the overlay is going to be. */
3864 modify_overlay (b, XINT (beg), XINT (end));
3865 }
3866 else
3867 /* Redisplay the area the overlay has just left, or just enclosed. */
3868 {
3869 int o_beg, o_end;
3870
3871 o_beg = OVERLAY_POSITION (OVERLAY_START (overlay));
3872 o_end = OVERLAY_POSITION (OVERLAY_END (overlay));
3873
3874 if (o_beg == XINT (beg))
3875 modify_overlay (b, o_end, XINT (end));
3876 else if (o_end == XINT (end))
3877 modify_overlay (b, o_beg, XINT (beg));
3878 else
3879 {
3880 if (XINT (beg) < o_beg) o_beg = XINT (beg);
3881 if (XINT (end) > o_end) o_end = XINT (end);
3882 modify_overlay (b, o_beg, o_end);
3883 }
3884 }
3885
3886 if (!NILP (obuffer))
3887 {
3888 ob->overlays_before
3889 = unchain_overlay (ob->overlays_before, XOVERLAY (overlay));
3890 ob->overlays_after
3891 = unchain_overlay (ob->overlays_after, XOVERLAY (overlay));
3892 eassert (XOVERLAY (overlay)->next == NULL);
3893 }
3894
3895 Fset_marker (OVERLAY_START (overlay), beg, buffer);
3896 Fset_marker (OVERLAY_END (overlay), end, buffer);
3897
3898 /* Put the overlay on the wrong list. */
3899 end = OVERLAY_END (overlay);
3900 if (OVERLAY_POSITION (end) < b->overlay_center)
3901 {
3902 XOVERLAY (overlay)->next = b->overlays_after;
3903 b->overlays_after = XOVERLAY (overlay);
3904 }
3905 else
3906 {
3907 XOVERLAY (overlay)->next = b->overlays_before;
3908 b->overlays_before = XOVERLAY (overlay);
3909 }
3910
3911 /* This puts it in the right list, and in the right order. */
3912 recenter_overlay_lists (b, b->overlay_center);
3913
3914 return unbind_to (count, overlay);
3915 }
3916
3917 DEFUN ("delete-overlay", Fdelete_overlay, Sdelete_overlay, 1, 1, 0,
3918 doc: /* Delete the overlay OVERLAY from its buffer. */)
3919 (Lisp_Object overlay)
3920 {
3921 Lisp_Object buffer;
3922 struct buffer *b;
3923 int count = SPECPDL_INDEX ();
3924
3925 CHECK_OVERLAY (overlay);
3926
3927 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3928 if (NILP (buffer))
3929 return Qnil;
3930
3931 b = XBUFFER (buffer);
3932 specbind (Qinhibit_quit, Qt);
3933
3934 b->overlays_before = unchain_overlay (b->overlays_before,XOVERLAY (overlay));
3935 b->overlays_after = unchain_overlay (b->overlays_after, XOVERLAY (overlay));
3936 eassert (XOVERLAY (overlay)->next == NULL);
3937 modify_overlay (b,
3938 marker_position (OVERLAY_START (overlay)),
3939 marker_position (OVERLAY_END (overlay)));
3940 Fset_marker (OVERLAY_START (overlay), Qnil, Qnil);
3941 Fset_marker (OVERLAY_END (overlay), Qnil, Qnil);
3942
3943 /* When deleting an overlay with before or after strings, turn off
3944 display optimizations for the affected buffer, on the basis that
3945 these strings may contain newlines. This is easier to do than to
3946 check for that situation during redisplay. */
3947 if (!windows_or_buffers_changed
3948 && (!NILP (Foverlay_get (overlay, Qbefore_string))
3949 || !NILP (Foverlay_get (overlay, Qafter_string))))
3950 b->prevent_redisplay_optimizations_p = 1;
3951
3952 return unbind_to (count, Qnil);
3953 }
3954 \f
3955 /* Overlay dissection functions. */
3956
3957 DEFUN ("overlay-start", Foverlay_start, Soverlay_start, 1, 1, 0,
3958 doc: /* Return the position at which OVERLAY starts. */)
3959 (Lisp_Object overlay)
3960 {
3961 CHECK_OVERLAY (overlay);
3962
3963 return (Fmarker_position (OVERLAY_START (overlay)));
3964 }
3965
3966 DEFUN ("overlay-end", Foverlay_end, Soverlay_end, 1, 1, 0,
3967 doc: /* Return the position at which OVERLAY ends. */)
3968 (Lisp_Object overlay)
3969 {
3970 CHECK_OVERLAY (overlay);
3971
3972 return (Fmarker_position (OVERLAY_END (overlay)));
3973 }
3974
3975 DEFUN ("overlay-buffer", Foverlay_buffer, Soverlay_buffer, 1, 1, 0,
3976 doc: /* Return the buffer OVERLAY belongs to.
3977 Return nil if OVERLAY has been deleted. */)
3978 (Lisp_Object overlay)
3979 {
3980 CHECK_OVERLAY (overlay);
3981
3982 return Fmarker_buffer (OVERLAY_START (overlay));
3983 }
3984
3985 DEFUN ("overlay-properties", Foverlay_properties, Soverlay_properties, 1, 1, 0,
3986 doc: /* Return a list of the properties on OVERLAY.
3987 This is a copy of OVERLAY's plist; modifying its conses has no effect on
3988 OVERLAY. */)
3989 (Lisp_Object overlay)
3990 {
3991 CHECK_OVERLAY (overlay);
3992
3993 return Fcopy_sequence (XOVERLAY (overlay)->plist);
3994 }
3995
3996 \f
3997 DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 1, 0,
3998 doc: /* Return a list of the overlays that contain the character at POS. */)
3999 (Lisp_Object pos)
4000 {
4001 int noverlays;
4002 Lisp_Object *overlay_vec;
4003 int len;
4004 Lisp_Object result;
4005
4006 CHECK_NUMBER_COERCE_MARKER (pos);
4007
4008 len = 10;
4009 /* We can't use alloca here because overlays_at can call xrealloc. */
4010 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
4011
4012 /* Put all the overlays we want in a vector in overlay_vec.
4013 Store the length in len. */
4014 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
4015 (EMACS_INT *) 0, (EMACS_INT *) 0, 0);
4016
4017 /* Make a list of them all. */
4018 result = Flist (noverlays, overlay_vec);
4019
4020 xfree (overlay_vec);
4021 return result;
4022 }
4023
4024 DEFUN ("overlays-in", Foverlays_in, Soverlays_in, 2, 2, 0,
4025 doc: /* Return a list of the overlays that overlap the region BEG ... END.
4026 Overlap means that at least one character is contained within the overlay
4027 and also contained within the specified region.
4028 Empty overlays are included in the result if they are located at BEG,
4029 between BEG and END, or at END provided END denotes the position at the
4030 end of the buffer. */)
4031 (Lisp_Object beg, Lisp_Object end)
4032 {
4033 int noverlays;
4034 Lisp_Object *overlay_vec;
4035 int len;
4036 Lisp_Object result;
4037
4038 CHECK_NUMBER_COERCE_MARKER (beg);
4039 CHECK_NUMBER_COERCE_MARKER (end);
4040
4041 len = 10;
4042 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
4043
4044 /* Put all the overlays we want in a vector in overlay_vec.
4045 Store the length in len. */
4046 noverlays = overlays_in (XINT (beg), XINT (end), 1, &overlay_vec, &len,
4047 (int *) 0, (int *) 0);
4048
4049 /* Make a list of them all. */
4050 result = Flist (noverlays, overlay_vec);
4051
4052 xfree (overlay_vec);
4053 return result;
4054 }
4055
4056 DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
4057 1, 1, 0,
4058 doc: /* Return the next position after POS where an overlay starts or ends.
4059 If there are no overlay boundaries from POS to (point-max),
4060 the value is (point-max). */)
4061 (Lisp_Object pos)
4062 {
4063 int noverlays;
4064 EMACS_INT endpos;
4065 Lisp_Object *overlay_vec;
4066 int len;
4067 int i;
4068
4069 CHECK_NUMBER_COERCE_MARKER (pos);
4070
4071 len = 10;
4072 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
4073
4074 /* Put all the overlays we want in a vector in overlay_vec.
4075 Store the length in len.
4076 endpos gets the position where the next overlay starts. */
4077 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
4078 &endpos, (EMACS_INT *) 0, 1);
4079
4080 /* If any of these overlays ends before endpos,
4081 use its ending point instead. */
4082 for (i = 0; i < noverlays; i++)
4083 {
4084 Lisp_Object oend;
4085 EMACS_INT oendpos;
4086
4087 oend = OVERLAY_END (overlay_vec[i]);
4088 oendpos = OVERLAY_POSITION (oend);
4089 if (oendpos < endpos)
4090 endpos = oendpos;
4091 }
4092
4093 xfree (overlay_vec);
4094 return make_number (endpos);
4095 }
4096
4097 DEFUN ("previous-overlay-change", Fprevious_overlay_change,
4098 Sprevious_overlay_change, 1, 1, 0,
4099 doc: /* Return the previous position before POS where an overlay starts or ends.
4100 If there are no overlay boundaries from (point-min) to POS,
4101 the value is (point-min). */)
4102 (Lisp_Object pos)
4103 {
4104 int noverlays;
4105 EMACS_INT prevpos;
4106 Lisp_Object *overlay_vec;
4107 int len;
4108
4109 CHECK_NUMBER_COERCE_MARKER (pos);
4110
4111 /* At beginning of buffer, we know the answer;
4112 avoid bug subtracting 1 below. */
4113 if (XINT (pos) == BEGV)
4114 return pos;
4115
4116 len = 10;
4117 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
4118
4119 /* Put all the overlays we want in a vector in overlay_vec.
4120 Store the length in len.
4121 prevpos gets the position of the previous change. */
4122 noverlays = overlays_at (XINT (pos), 1, &overlay_vec, &len,
4123 (EMACS_INT *) 0, &prevpos, 1);
4124
4125 xfree (overlay_vec);
4126 return make_number (prevpos);
4127 }
4128 \f
4129 /* These functions are for debugging overlays. */
4130
4131 DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0,
4132 doc: /* Return a pair of lists giving all the overlays of the current buffer.
4133 The car has all the overlays before the overlay center;
4134 the cdr has all the overlays after the overlay center.
4135 Recentering overlays moves overlays between these lists.
4136 The lists you get are copies, so that changing them has no effect.
4137 However, the overlays you get are the real objects that the buffer uses. */)
4138 (void)
4139 {
4140 struct Lisp_Overlay *ol;
4141 Lisp_Object before = Qnil, after = Qnil, tmp;
4142 for (ol = current_buffer->overlays_before; ol; ol = ol->next)
4143 {
4144 XSETMISC (tmp, ol);
4145 before = Fcons (tmp, before);
4146 }
4147 for (ol = current_buffer->overlays_after; ol; ol = ol->next)
4148 {
4149 XSETMISC (tmp, ol);
4150 after = Fcons (tmp, after);
4151 }
4152 return Fcons (Fnreverse (before), Fnreverse (after));
4153 }
4154
4155 DEFUN ("overlay-recenter", Foverlay_recenter, Soverlay_recenter, 1, 1, 0,
4156 doc: /* Recenter the overlays of the current buffer around position POS.
4157 That makes overlay lookup faster for positions near POS (but perhaps slower
4158 for positions far away from POS). */)
4159 (Lisp_Object pos)
4160 {
4161 CHECK_NUMBER_COERCE_MARKER (pos);
4162
4163 recenter_overlay_lists (current_buffer, XINT (pos));
4164 return Qnil;
4165 }
4166 \f
4167 DEFUN ("overlay-get", Foverlay_get, Soverlay_get, 2, 2, 0,
4168 doc: /* Get the property of overlay OVERLAY with property name PROP. */)
4169 (Lisp_Object overlay, Lisp_Object prop)
4170 {
4171 CHECK_OVERLAY (overlay);
4172 return lookup_char_property (XOVERLAY (overlay)->plist, prop, 0);
4173 }
4174
4175 DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0,
4176 doc: /* Set one property of overlay OVERLAY: give property PROP value VALUE. */)
4177 (Lisp_Object overlay, Lisp_Object prop, Lisp_Object value)
4178 {
4179 Lisp_Object tail, buffer;
4180 int changed;
4181
4182 CHECK_OVERLAY (overlay);
4183
4184 buffer = Fmarker_buffer (OVERLAY_START (overlay));
4185
4186 for (tail = XOVERLAY (overlay)->plist;
4187 CONSP (tail) && CONSP (XCDR (tail));
4188 tail = XCDR (XCDR (tail)))
4189 if (EQ (XCAR (tail), prop))
4190 {
4191 changed = !EQ (XCAR (XCDR (tail)), value);
4192 XSETCAR (XCDR (tail), value);
4193 goto found;
4194 }
4195 /* It wasn't in the list, so add it to the front. */
4196 changed = !NILP (value);
4197 XOVERLAY (overlay)->plist
4198 = Fcons (prop, Fcons (value, XOVERLAY (overlay)->plist));
4199 found:
4200 if (! NILP (buffer))
4201 {
4202 if (changed)
4203 modify_overlay (XBUFFER (buffer),
4204 marker_position (OVERLAY_START (overlay)),
4205 marker_position (OVERLAY_END (overlay)));
4206 if (EQ (prop, Qevaporate) && ! NILP (value)
4207 && (OVERLAY_POSITION (OVERLAY_START (overlay))
4208 == OVERLAY_POSITION (OVERLAY_END (overlay))))
4209 Fdelete_overlay (overlay);
4210 }
4211
4212 return value;
4213 }
4214 \f
4215 /* Subroutine of report_overlay_modification. */
4216
4217 /* Lisp vector holding overlay hook functions to call.
4218 Vector elements come in pairs.
4219 Each even-index element is a list of hook functions.
4220 The following odd-index element is the overlay they came from.
4221
4222 Before the buffer change, we fill in this vector
4223 as we call overlay hook functions.
4224 After the buffer change, we get the functions to call from this vector.
4225 This way we always call the same functions before and after the change. */
4226 static Lisp_Object last_overlay_modification_hooks;
4227
4228 /* Number of elements actually used in last_overlay_modification_hooks. */
4229 static int last_overlay_modification_hooks_used;
4230
4231 /* Add one functionlist/overlay pair
4232 to the end of last_overlay_modification_hooks. */
4233
4234 static void
4235 add_overlay_mod_hooklist (Lisp_Object functionlist, Lisp_Object overlay)
4236 {
4237 int oldsize = XVECTOR (last_overlay_modification_hooks)->size;
4238
4239 if (last_overlay_modification_hooks_used == oldsize)
4240 last_overlay_modification_hooks = larger_vector
4241 (last_overlay_modification_hooks, oldsize * 2, Qnil);
4242 ASET (last_overlay_modification_hooks, last_overlay_modification_hooks_used,
4243 functionlist); last_overlay_modification_hooks_used++;
4244 ASET (last_overlay_modification_hooks, last_overlay_modification_hooks_used,
4245 overlay); last_overlay_modification_hooks_used++;
4246 }
4247 \f
4248 /* Run the modification-hooks of overlays that include
4249 any part of the text in START to END.
4250 If this change is an insertion, also
4251 run the insert-before-hooks of overlay starting at END,
4252 and the insert-after-hooks of overlay ending at START.
4253
4254 This is called both before and after the modification.
4255 AFTER is nonzero when we call after the modification.
4256
4257 ARG1, ARG2, ARG3 are arguments to pass to the hook functions.
4258 When AFTER is nonzero, they are the start position,
4259 the position after the inserted new text,
4260 and the length of deleted or replaced old text. */
4261
4262 void
4263 report_overlay_modification (Lisp_Object start, Lisp_Object end, int after,
4264 Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
4265 {
4266 Lisp_Object prop, overlay;
4267 struct Lisp_Overlay *tail;
4268 /* 1 if this change is an insertion. */
4269 int insertion = (after ? XFASTINT (arg3) == 0 : EQ (start, end));
4270 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4271
4272 overlay = Qnil;
4273 tail = NULL;
4274
4275 /* We used to run the functions as soon as we found them and only register
4276 them in last_overlay_modification_hooks for the purpose of the `after'
4277 case. But running elisp code as we traverse the list of overlays is
4278 painful because the list can be modified by the elisp code so we had to
4279 copy at several places. We now simply do a read-only traversal that
4280 only collects the functions to run and we run them afterwards. It's
4281 simpler, especially since all the code was already there. -stef */
4282
4283 if (!after)
4284 {
4285 /* We are being called before a change.
4286 Scan the overlays to find the functions to call. */
4287 last_overlay_modification_hooks_used = 0;
4288 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
4289 {
4290 int startpos, endpos;
4291 Lisp_Object ostart, oend;
4292
4293 XSETMISC (overlay, tail);
4294
4295 ostart = OVERLAY_START (overlay);
4296 oend = OVERLAY_END (overlay);
4297 endpos = OVERLAY_POSITION (oend);
4298 if (XFASTINT (start) > endpos)
4299 break;
4300 startpos = OVERLAY_POSITION (ostart);
4301 if (insertion && (XFASTINT (start) == startpos
4302 || XFASTINT (end) == startpos))
4303 {
4304 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
4305 if (!NILP (prop))
4306 add_overlay_mod_hooklist (prop, overlay);
4307 }
4308 if (insertion && (XFASTINT (start) == endpos
4309 || XFASTINT (end) == endpos))
4310 {
4311 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
4312 if (!NILP (prop))
4313 add_overlay_mod_hooklist (prop, overlay);
4314 }
4315 /* Test for intersecting intervals. This does the right thing
4316 for both insertion and deletion. */
4317 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
4318 {
4319 prop = Foverlay_get (overlay, Qmodification_hooks);
4320 if (!NILP (prop))
4321 add_overlay_mod_hooklist (prop, overlay);
4322 }
4323 }
4324
4325 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
4326 {
4327 int startpos, endpos;
4328 Lisp_Object ostart, oend;
4329
4330 XSETMISC (overlay, tail);
4331
4332 ostart = OVERLAY_START (overlay);
4333 oend = OVERLAY_END (overlay);
4334 startpos = OVERLAY_POSITION (ostart);
4335 endpos = OVERLAY_POSITION (oend);
4336 if (XFASTINT (end) < startpos)
4337 break;
4338 if (insertion && (XFASTINT (start) == startpos
4339 || XFASTINT (end) == startpos))
4340 {
4341 prop = Foverlay_get (overlay, Qinsert_in_front_hooks);
4342 if (!NILP (prop))
4343 add_overlay_mod_hooklist (prop, overlay);
4344 }
4345 if (insertion && (XFASTINT (start) == endpos
4346 || XFASTINT (end) == endpos))
4347 {
4348 prop = Foverlay_get (overlay, Qinsert_behind_hooks);
4349 if (!NILP (prop))
4350 add_overlay_mod_hooklist (prop, overlay);
4351 }
4352 /* Test for intersecting intervals. This does the right thing
4353 for both insertion and deletion. */
4354 if (XFASTINT (end) > startpos && XFASTINT (start) < endpos)
4355 {
4356 prop = Foverlay_get (overlay, Qmodification_hooks);
4357 if (!NILP (prop))
4358 add_overlay_mod_hooklist (prop, overlay);
4359 }
4360 }
4361 }
4362
4363 GCPRO4 (overlay, arg1, arg2, arg3);
4364 {
4365 /* Call the functions recorded in last_overlay_modification_hooks.
4366 First copy the vector contents, in case some of these hooks
4367 do subsequent modification of the buffer. */
4368 int size = last_overlay_modification_hooks_used;
4369 Lisp_Object *copy = (Lisp_Object *) alloca (size * sizeof (Lisp_Object));
4370 int i;
4371
4372 memcpy (copy, XVECTOR (last_overlay_modification_hooks)->contents,
4373 size * sizeof (Lisp_Object));
4374 gcpro1.var = copy;
4375 gcpro1.nvars = size;
4376
4377 for (i = 0; i < size;)
4378 {
4379 Lisp_Object prop, overlay;
4380 prop = copy[i++];
4381 overlay = copy[i++];
4382 call_overlay_mod_hooks (prop, overlay, after, arg1, arg2, arg3);
4383 }
4384 }
4385 UNGCPRO;
4386 }
4387
4388 static void
4389 call_overlay_mod_hooks (Lisp_Object list, Lisp_Object overlay, int after,
4390 Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
4391 {
4392 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
4393
4394 GCPRO4 (list, arg1, arg2, arg3);
4395
4396 while (CONSP (list))
4397 {
4398 if (NILP (arg3))
4399 call4 (XCAR (list), overlay, after ? Qt : Qnil, arg1, arg2);
4400 else
4401 call5 (XCAR (list), overlay, after ? Qt : Qnil, arg1, arg2, arg3);
4402 list = XCDR (list);
4403 }
4404 UNGCPRO;
4405 }
4406
4407 /* Delete any zero-sized overlays at position POS, if the `evaporate'
4408 property is set. */
4409 void
4410 evaporate_overlays (EMACS_INT pos)
4411 {
4412 Lisp_Object overlay, hit_list;
4413 struct Lisp_Overlay *tail;
4414
4415 hit_list = Qnil;
4416 if (pos <= current_buffer->overlay_center)
4417 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
4418 {
4419 int endpos;
4420 XSETMISC (overlay, tail);
4421 endpos = OVERLAY_POSITION (OVERLAY_END (overlay));
4422 if (endpos < pos)
4423 break;
4424 if (endpos == pos && OVERLAY_POSITION (OVERLAY_START (overlay)) == pos
4425 && ! NILP (Foverlay_get (overlay, Qevaporate)))
4426 hit_list = Fcons (overlay, hit_list);
4427 }
4428 else
4429 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
4430 {
4431 int startpos;
4432 XSETMISC (overlay, tail);
4433 startpos = OVERLAY_POSITION (OVERLAY_START (overlay));
4434 if (startpos > pos)
4435 break;
4436 if (startpos == pos && OVERLAY_POSITION (OVERLAY_END (overlay)) == pos
4437 && ! NILP (Foverlay_get (overlay, Qevaporate)))
4438 hit_list = Fcons (overlay, hit_list);
4439 }
4440 for (; CONSP (hit_list); hit_list = XCDR (hit_list))
4441 Fdelete_overlay (XCAR (hit_list));
4442 }
4443 \f
4444 /* Somebody has tried to store a value with an unacceptable type
4445 in the slot with offset OFFSET. */
4446
4447 void
4448 buffer_slot_type_mismatch (Lisp_Object newval, int type)
4449 {
4450 Lisp_Object predicate;
4451
4452 switch (type)
4453 {
4454 case_Lisp_Int: predicate = Qintegerp; break;
4455 case Lisp_String: predicate = Qstringp; break;
4456 case Lisp_Symbol: predicate = Qsymbolp; break;
4457 default: abort ();
4458 }
4459
4460 wrong_type_argument (predicate, newval);
4461 }
4462
4463 \f
4464 /***********************************************************************
4465 Allocation with mmap
4466 ***********************************************************************/
4467
4468 #ifdef USE_MMAP_FOR_BUFFERS
4469
4470 #include <sys/types.h>
4471 #include <sys/mman.h>
4472
4473 #ifndef MAP_ANON
4474 #ifdef MAP_ANONYMOUS
4475 #define MAP_ANON MAP_ANONYMOUS
4476 #else
4477 #define MAP_ANON 0
4478 #endif
4479 #endif
4480
4481 #ifndef MAP_FAILED
4482 #define MAP_FAILED ((void *) -1)
4483 #endif
4484
4485 #include <stdio.h>
4486
4487 #if MAP_ANON == 0
4488 #include <fcntl.h>
4489 #endif
4490
4491 #include "coding.h"
4492
4493
4494 /* Memory is allocated in regions which are mapped using mmap(2).
4495 The current implementation lets the system select mapped
4496 addresses; we're not using MAP_FIXED in general, except when
4497 trying to enlarge regions.
4498
4499 Each mapped region starts with a mmap_region structure, the user
4500 area starts after that structure, aligned to MEM_ALIGN.
4501
4502 +-----------------------+
4503 | struct mmap_info + |
4504 | padding |
4505 +-----------------------+
4506 | user data |
4507 | |
4508 | |
4509 +-----------------------+ */
4510
4511 struct mmap_region
4512 {
4513 /* User-specified size. */
4514 size_t nbytes_specified;
4515
4516 /* Number of bytes mapped */
4517 size_t nbytes_mapped;
4518
4519 /* Pointer to the location holding the address of the memory
4520 allocated with the mmap'd block. The variable actually points
4521 after this structure. */
4522 POINTER_TYPE **var;
4523
4524 /* Next and previous in list of all mmap'd regions. */
4525 struct mmap_region *next, *prev;
4526 };
4527
4528 /* Doubly-linked list of mmap'd regions. */
4529
4530 static struct mmap_region *mmap_regions;
4531
4532 /* File descriptor for mmap. If we don't have anonymous mapping,
4533 /dev/zero will be opened on it. */
4534
4535 static int mmap_fd;
4536
4537 /* Temporary storage for mmap_set_vars, see there. */
4538
4539 static struct mmap_region *mmap_regions_1;
4540 static int mmap_fd_1;
4541
4542 /* Page size on this system. */
4543
4544 static int mmap_page_size;
4545
4546 /* 1 means mmap has been intialized. */
4547
4548 static int mmap_initialized_p;
4549
4550 /* Value is X rounded up to the next multiple of N. */
4551
4552 #define ROUND(X, N) (((X) + (N) - 1) / (N) * (N))
4553
4554 /* Size of mmap_region structure plus padding. */
4555
4556 #define MMAP_REGION_STRUCT_SIZE \
4557 ROUND (sizeof (struct mmap_region), MEM_ALIGN)
4558
4559 /* Given a pointer P to the start of the user-visible part of a mapped
4560 region, return a pointer to the start of the region. */
4561
4562 #define MMAP_REGION(P) \
4563 ((struct mmap_region *) ((char *) (P) - MMAP_REGION_STRUCT_SIZE))
4564
4565 /* Given a pointer P to the start of a mapped region, return a pointer
4566 to the start of the user-visible part of the region. */
4567
4568 #define MMAP_USER_AREA(P) \
4569 ((POINTER_TYPE *) ((char *) (P) + MMAP_REGION_STRUCT_SIZE))
4570
4571 #define MEM_ALIGN sizeof (double)
4572
4573 /* Predicate returning true if part of the address range [START .. END]
4574 is currently mapped. Used to prevent overwriting an existing
4575 memory mapping.
4576
4577 Default is to conservativly assume the address range is occupied by
4578 something else. This can be overridden by system configuration
4579 files if system-specific means to determine this exists. */
4580
4581 #ifndef MMAP_ALLOCATED_P
4582 #define MMAP_ALLOCATED_P(start, end) 1
4583 #endif
4584
4585 /* Function prototypes. */
4586
4587 static int mmap_free_1 (struct mmap_region *);
4588 static int mmap_enlarge (struct mmap_region *, int);
4589 static struct mmap_region *mmap_find (POINTER_TYPE *, POINTER_TYPE *);
4590 static POINTER_TYPE *mmap_alloc (POINTER_TYPE **, size_t);
4591 static POINTER_TYPE *mmap_realloc (POINTER_TYPE **, size_t);
4592 static void mmap_free (POINTER_TYPE **ptr);
4593 static void mmap_init (void);
4594
4595
4596 /* Return a region overlapping address range START...END, or null if
4597 none. END is not including, i.e. the last byte in the range
4598 is at END - 1. */
4599
4600 static struct mmap_region *
4601 mmap_find (start, end)
4602 POINTER_TYPE *start, *end;
4603 {
4604 struct mmap_region *r;
4605 char *s = (char *) start, *e = (char *) end;
4606
4607 for (r = mmap_regions; r; r = r->next)
4608 {
4609 char *rstart = (char *) r;
4610 char *rend = rstart + r->nbytes_mapped;
4611
4612 if (/* First byte of range, i.e. START, in this region? */
4613 (s >= rstart && s < rend)
4614 /* Last byte of range, i.e. END - 1, in this region? */
4615 || (e > rstart && e <= rend)
4616 /* First byte of this region in the range? */
4617 || (rstart >= s && rstart < e)
4618 /* Last byte of this region in the range? */
4619 || (rend > s && rend <= e))
4620 break;
4621 }
4622
4623 return r;
4624 }
4625
4626
4627 /* Unmap a region. P is a pointer to the start of the user-araa of
4628 the region. Value is non-zero if successful. */
4629
4630 static int
4631 mmap_free_1 (r)
4632 struct mmap_region *r;
4633 {
4634 if (r->next)
4635 r->next->prev = r->prev;
4636 if (r->prev)
4637 r->prev->next = r->next;
4638 else
4639 mmap_regions = r->next;
4640
4641 if (munmap ((POINTER_TYPE *) r, r->nbytes_mapped) == -1)
4642 {
4643 fprintf (stderr, "munmap: %s\n", emacs_strerror (errno));
4644 return 0;
4645 }
4646
4647 return 1;
4648 }
4649
4650
4651 /* Enlarge region R by NPAGES pages. NPAGES < 0 means shrink R.
4652 Value is non-zero if successful. */
4653
4654 static int
4655 mmap_enlarge (r, npages)
4656 struct mmap_region *r;
4657 int npages;
4658 {
4659 char *region_end = (char *) r + r->nbytes_mapped;
4660 size_t nbytes;
4661 int success = 0;
4662
4663 if (npages < 0)
4664 {
4665 /* Unmap pages at the end of the region. */
4666 nbytes = - npages * mmap_page_size;
4667 if (munmap (region_end - nbytes, nbytes) == -1)
4668 fprintf (stderr, "munmap: %s\n", emacs_strerror (errno));
4669 else
4670 {
4671 r->nbytes_mapped -= nbytes;
4672 success = 1;
4673 }
4674 }
4675 else if (npages > 0)
4676 {
4677 nbytes = npages * mmap_page_size;
4678
4679 /* Try to map additional pages at the end of the region. We
4680 cannot do this if the address range is already occupied by
4681 something else because mmap deletes any previous mapping.
4682 I'm not sure this is worth doing, let's see. */
4683 if (!MMAP_ALLOCATED_P (region_end, region_end + nbytes))
4684 {
4685 POINTER_TYPE *p;
4686
4687 p = mmap (region_end, nbytes, PROT_READ | PROT_WRITE,
4688 MAP_ANON | MAP_PRIVATE | MAP_FIXED, mmap_fd, 0);
4689 if (p == MAP_FAILED)
4690 ; /* fprintf (stderr, "mmap: %s\n", emacs_strerror (errno)); */
4691 else if (p != (POINTER_TYPE *) region_end)
4692 {
4693 /* Kernels are free to choose a different address. In
4694 that case, unmap what we've mapped above; we have
4695 no use for it. */
4696 if (munmap (p, nbytes) == -1)
4697 fprintf (stderr, "munmap: %s\n", emacs_strerror (errno));
4698 }
4699 else
4700 {
4701 r->nbytes_mapped += nbytes;
4702 success = 1;
4703 }
4704 }
4705 }
4706
4707 return success;
4708 }
4709
4710
4711 /* Set or reset variables holding references to mapped regions. If
4712 RESTORE_P is zero, set all variables to null. If RESTORE_P is
4713 non-zero, set all variables to the start of the user-areas
4714 of mapped regions.
4715
4716 This function is called from Fdump_emacs to ensure that the dumped
4717 Emacs doesn't contain references to memory that won't be mapped
4718 when Emacs starts. */
4719
4720 void
4721 mmap_set_vars (restore_p)
4722 int restore_p;
4723 {
4724 struct mmap_region *r;
4725
4726 if (restore_p)
4727 {
4728 mmap_regions = mmap_regions_1;
4729 mmap_fd = mmap_fd_1;
4730 for (r = mmap_regions; r; r = r->next)
4731 *r->var = MMAP_USER_AREA (r);
4732 }
4733 else
4734 {
4735 for (r = mmap_regions; r; r = r->next)
4736 *r->var = NULL;
4737 mmap_regions_1 = mmap_regions;
4738 mmap_regions = NULL;
4739 mmap_fd_1 = mmap_fd;
4740 mmap_fd = -1;
4741 }
4742 }
4743
4744
4745 /* Allocate a block of storage large enough to hold NBYTES bytes of
4746 data. A pointer to the data is returned in *VAR. VAR is thus the
4747 address of some variable which will use the data area.
4748
4749 The allocation of 0 bytes is valid.
4750
4751 If we can't allocate the necessary memory, set *VAR to null, and
4752 return null. */
4753
4754 static POINTER_TYPE *
4755 mmap_alloc (var, nbytes)
4756 POINTER_TYPE **var;
4757 size_t nbytes;
4758 {
4759 void *p;
4760 size_t map;
4761
4762 mmap_init ();
4763
4764 map = ROUND (nbytes + MMAP_REGION_STRUCT_SIZE, mmap_page_size);
4765 p = mmap (NULL, map, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE,
4766 mmap_fd, 0);
4767
4768 if (p == MAP_FAILED)
4769 {
4770 if (errno != ENOMEM)
4771 fprintf (stderr, "mmap: %s\n", emacs_strerror (errno));
4772 p = NULL;
4773 }
4774 else
4775 {
4776 struct mmap_region *r = (struct mmap_region *) p;
4777
4778 r->nbytes_specified = nbytes;
4779 r->nbytes_mapped = map;
4780 r->var = var;
4781 r->prev = NULL;
4782 r->next = mmap_regions;
4783 if (r->next)
4784 r->next->prev = r;
4785 mmap_regions = r;
4786
4787 p = MMAP_USER_AREA (p);
4788 }
4789
4790 return *var = p;
4791 }
4792
4793
4794 /* Given a pointer at address VAR to data allocated with mmap_alloc,
4795 resize it to size NBYTES. Change *VAR to reflect the new block,
4796 and return this value. If more memory cannot be allocated, then
4797 leave *VAR unchanged, and return null. */
4798
4799 static POINTER_TYPE *
4800 mmap_realloc (var, nbytes)
4801 POINTER_TYPE **var;
4802 size_t nbytes;
4803 {
4804 POINTER_TYPE *result;
4805
4806 mmap_init ();
4807
4808 if (*var == NULL)
4809 result = mmap_alloc (var, nbytes);
4810 else if (nbytes == 0)
4811 {
4812 mmap_free (var);
4813 result = mmap_alloc (var, nbytes);
4814 }
4815 else
4816 {
4817 struct mmap_region *r = MMAP_REGION (*var);
4818 size_t room = r->nbytes_mapped - MMAP_REGION_STRUCT_SIZE;
4819
4820 if (room < nbytes)
4821 {
4822 /* Must enlarge. */
4823 POINTER_TYPE *old_ptr = *var;
4824
4825 /* Try to map additional pages at the end of the region.
4826 If that fails, allocate a new region, copy data
4827 from the old region, then free it. */
4828 if (mmap_enlarge (r, (ROUND (nbytes - room, mmap_page_size)
4829 / mmap_page_size)))
4830 {
4831 r->nbytes_specified = nbytes;
4832 *var = result = old_ptr;
4833 }
4834 else if (mmap_alloc (var, nbytes))
4835 {
4836 memcpy (*var, old_ptr, r->nbytes_specified);
4837 mmap_free_1 (MMAP_REGION (old_ptr));
4838 result = *var;
4839 r = MMAP_REGION (result);
4840 r->nbytes_specified = nbytes;
4841 }
4842 else
4843 {
4844 *var = old_ptr;
4845 result = NULL;
4846 }
4847 }
4848 else if (room - nbytes >= mmap_page_size)
4849 {
4850 /* Shrinking by at least a page. Let's give some
4851 memory back to the system.
4852
4853 The extra parens are to make the division happens first,
4854 on positive values, so we know it will round towards
4855 zero. */
4856 mmap_enlarge (r, - ((room - nbytes) / mmap_page_size));
4857 result = *var;
4858 r->nbytes_specified = nbytes;
4859 }
4860 else
4861 {
4862 /* Leave it alone. */
4863 result = *var;
4864 r->nbytes_specified = nbytes;
4865 }
4866 }
4867
4868 return result;
4869 }
4870
4871
4872 /* Free a block of relocatable storage whose data is pointed to by
4873 PTR. Store 0 in *PTR to show there's no block allocated. */
4874
4875 static void
4876 mmap_free (var)
4877 POINTER_TYPE **var;
4878 {
4879 mmap_init ();
4880
4881 if (*var)
4882 {
4883 mmap_free_1 (MMAP_REGION (*var));
4884 *var = NULL;
4885 }
4886 }
4887
4888
4889 /* Perform necessary intializations for the use of mmap. */
4890
4891 static void
4892 mmap_init ()
4893 {
4894 #if MAP_ANON == 0
4895 /* The value of mmap_fd is initially 0 in temacs, and -1
4896 in a dumped Emacs. */
4897 if (mmap_fd <= 0)
4898 {
4899 /* No anonymous mmap -- we need the file descriptor. */
4900 mmap_fd = open ("/dev/zero", O_RDONLY);
4901 if (mmap_fd == -1)
4902 fatal ("Cannot open /dev/zero: %s", emacs_strerror (errno));
4903 }
4904 #endif /* MAP_ANON == 0 */
4905
4906 if (mmap_initialized_p)
4907 return;
4908 mmap_initialized_p = 1;
4909
4910 #if MAP_ANON != 0
4911 mmap_fd = -1;
4912 #endif
4913
4914 mmap_page_size = getpagesize ();
4915 }
4916
4917 #endif /* USE_MMAP_FOR_BUFFERS */
4918
4919
4920 \f
4921 /***********************************************************************
4922 Buffer-text Allocation
4923 ***********************************************************************/
4924
4925 #ifdef REL_ALLOC
4926 extern POINTER_TYPE *r_alloc (POINTER_TYPE **, size_t);
4927 extern POINTER_TYPE *r_re_alloc (POINTER_TYPE **, size_t);
4928 extern void r_alloc_free (POINTER_TYPE **ptr);
4929 #endif /* REL_ALLOC */
4930
4931
4932 /* Allocate NBYTES bytes for buffer B's text buffer. */
4933
4934 static void
4935 alloc_buffer_text (struct buffer *b, size_t nbytes)
4936 {
4937 POINTER_TYPE *p;
4938
4939 BLOCK_INPUT;
4940 #if defined USE_MMAP_FOR_BUFFERS
4941 p = mmap_alloc ((POINTER_TYPE **) &b->text->beg, nbytes);
4942 #elif defined REL_ALLOC
4943 p = r_alloc ((POINTER_TYPE **) &b->text->beg, nbytes);
4944 #else
4945 p = xmalloc (nbytes);
4946 #endif
4947
4948 if (p == NULL)
4949 {
4950 UNBLOCK_INPUT;
4951 memory_full ();
4952 }
4953
4954 b->text->beg = (unsigned char *) p;
4955 UNBLOCK_INPUT;
4956 }
4957
4958 /* Enlarge buffer B's text buffer by DELTA bytes. DELTA < 0 means
4959 shrink it. */
4960
4961 void
4962 enlarge_buffer_text (struct buffer *b, EMACS_INT delta)
4963 {
4964 POINTER_TYPE *p;
4965 size_t nbytes = (BUF_Z_BYTE (b) - BUF_BEG_BYTE (b) + BUF_GAP_SIZE (b) + 1
4966 + delta);
4967 BLOCK_INPUT;
4968 #if defined USE_MMAP_FOR_BUFFERS
4969 p = mmap_realloc ((POINTER_TYPE **) &b->text->beg, nbytes);
4970 #elif defined REL_ALLOC
4971 p = r_re_alloc ((POINTER_TYPE **) &b->text->beg, nbytes);
4972 #else
4973 p = xrealloc (b->text->beg, nbytes);
4974 #endif
4975
4976 if (p == NULL)
4977 {
4978 UNBLOCK_INPUT;
4979 memory_full ();
4980 }
4981
4982 BUF_BEG_ADDR (b) = (unsigned char *) p;
4983 UNBLOCK_INPUT;
4984 }
4985
4986
4987 /* Free buffer B's text buffer. */
4988
4989 static void
4990 free_buffer_text (struct buffer *b)
4991 {
4992 BLOCK_INPUT;
4993
4994 #if defined USE_MMAP_FOR_BUFFERS
4995 mmap_free ((POINTER_TYPE **) &b->text->beg);
4996 #elif defined REL_ALLOC
4997 r_alloc_free ((POINTER_TYPE **) &b->text->beg);
4998 #else
4999 xfree (b->text->beg);
5000 #endif
5001
5002 BUF_BEG_ADDR (b) = NULL;
5003 UNBLOCK_INPUT;
5004 }
5005
5006
5007 \f
5008 /***********************************************************************
5009 Initialization
5010 ***********************************************************************/
5011
5012 void
5013 init_buffer_once (void)
5014 {
5015 int idx;
5016
5017 memset (buffer_permanent_local_flags, 0, sizeof buffer_permanent_local_flags);
5018
5019 /* Make sure all markable slots in buffer_defaults
5020 are initialized reasonably, so mark_buffer won't choke. */
5021 reset_buffer (&buffer_defaults);
5022 eassert (EQ (buffer_defaults.name, make_number (0)));
5023 reset_buffer_local_variables (&buffer_defaults, 1);
5024 eassert (EQ (buffer_local_symbols.name, make_number (0)));
5025 reset_buffer (&buffer_local_symbols);
5026 reset_buffer_local_variables (&buffer_local_symbols, 1);
5027 /* Prevent GC from getting confused. */
5028 buffer_defaults.text = &buffer_defaults.own_text;
5029 buffer_local_symbols.text = &buffer_local_symbols.own_text;
5030 BUF_INTERVALS (&buffer_defaults) = 0;
5031 BUF_INTERVALS (&buffer_local_symbols) = 0;
5032 XSETPVECTYPE (&buffer_defaults, PVEC_BUFFER);
5033 XSETBUFFER (Vbuffer_defaults, &buffer_defaults);
5034 XSETPVECTYPE (&buffer_local_symbols, PVEC_BUFFER);
5035 XSETBUFFER (Vbuffer_local_symbols, &buffer_local_symbols);
5036
5037 /* Set up the default values of various buffer slots. */
5038 /* Must do these before making the first buffer! */
5039
5040 /* real setup is done in bindings.el */
5041 buffer_defaults.mode_line_format = make_pure_c_string ("%-");
5042 buffer_defaults.header_line_format = Qnil;
5043 buffer_defaults.abbrev_mode = Qnil;
5044 buffer_defaults.overwrite_mode = Qnil;
5045 buffer_defaults.case_fold_search = Qt;
5046 buffer_defaults.auto_fill_function = Qnil;
5047 buffer_defaults.selective_display = Qnil;
5048 #ifndef old
5049 buffer_defaults.selective_display_ellipses = Qt;
5050 #endif
5051 buffer_defaults.abbrev_table = Qnil;
5052 buffer_defaults.display_table = Qnil;
5053 buffer_defaults.undo_list = Qnil;
5054 buffer_defaults.mark_active = Qnil;
5055 buffer_defaults.file_format = Qnil;
5056 buffer_defaults.auto_save_file_format = Qt;
5057 buffer_defaults.overlays_before = NULL;
5058 buffer_defaults.overlays_after = NULL;
5059 buffer_defaults.overlay_center = BEG;
5060
5061 XSETFASTINT (buffer_defaults.tab_width, 8);
5062 buffer_defaults.truncate_lines = Qnil;
5063 buffer_defaults.word_wrap = Qnil;
5064 buffer_defaults.ctl_arrow = Qt;
5065 buffer_defaults.bidi_display_reordering = Qnil;
5066 buffer_defaults.bidi_paragraph_direction = Qnil;
5067 buffer_defaults.cursor_type = Qt;
5068 buffer_defaults.extra_line_spacing = Qnil;
5069 buffer_defaults.cursor_in_non_selected_windows = Qt;
5070
5071 #ifdef DOS_NT
5072 buffer_defaults.buffer_file_type = Qnil; /* TEXT */
5073 #endif
5074 buffer_defaults.enable_multibyte_characters = Qt;
5075 buffer_defaults.buffer_file_coding_system = Qnil;
5076 XSETFASTINT (buffer_defaults.fill_column, 70);
5077 XSETFASTINT (buffer_defaults.left_margin, 0);
5078 buffer_defaults.cache_long_line_scans = Qnil;
5079 buffer_defaults.file_truename = Qnil;
5080 XSETFASTINT (buffer_defaults.display_count, 0);
5081 XSETFASTINT (buffer_defaults.left_margin_cols, 0);
5082 XSETFASTINT (buffer_defaults.right_margin_cols, 0);
5083 buffer_defaults.left_fringe_width = Qnil;
5084 buffer_defaults.right_fringe_width = Qnil;
5085 buffer_defaults.fringes_outside_margins = Qnil;
5086 buffer_defaults.scroll_bar_width = Qnil;
5087 buffer_defaults.vertical_scroll_bar_type = Qt;
5088 buffer_defaults.indicate_empty_lines = Qnil;
5089 buffer_defaults.indicate_buffer_boundaries = Qnil;
5090 buffer_defaults.fringe_indicator_alist = Qnil;
5091 buffer_defaults.fringe_cursor_alist = Qnil;
5092 buffer_defaults.scroll_up_aggressively = Qnil;
5093 buffer_defaults.scroll_down_aggressively = Qnil;
5094 buffer_defaults.display_time = Qnil;
5095
5096 /* Assign the local-flags to the slots that have default values.
5097 The local flag is a bit that is used in the buffer
5098 to say that it has its own local value for the slot.
5099 The local flag bits are in the local_var_flags slot of the buffer. */
5100
5101 /* Nothing can work if this isn't true */
5102 if (sizeof (EMACS_INT) != sizeof (Lisp_Object)) abort ();
5103
5104 /* 0 means not a lisp var, -1 means always local, else mask */
5105 memset (&buffer_local_flags, 0, sizeof buffer_local_flags);
5106 XSETINT (buffer_local_flags.filename, -1);
5107 XSETINT (buffer_local_flags.directory, -1);
5108 XSETINT (buffer_local_flags.backed_up, -1);
5109 XSETINT (buffer_local_flags.save_length, -1);
5110 XSETINT (buffer_local_flags.auto_save_file_name, -1);
5111 XSETINT (buffer_local_flags.read_only, -1);
5112 XSETINT (buffer_local_flags.major_mode, -1);
5113 XSETINT (buffer_local_flags.mode_name, -1);
5114 XSETINT (buffer_local_flags.undo_list, -1);
5115 XSETINT (buffer_local_flags.mark_active, -1);
5116 XSETINT (buffer_local_flags.point_before_scroll, -1);
5117 XSETINT (buffer_local_flags.file_truename, -1);
5118 XSETINT (buffer_local_flags.invisibility_spec, -1);
5119 XSETINT (buffer_local_flags.file_format, -1);
5120 XSETINT (buffer_local_flags.auto_save_file_format, -1);
5121 XSETINT (buffer_local_flags.display_count, -1);
5122 XSETINT (buffer_local_flags.display_time, -1);
5123 XSETINT (buffer_local_flags.enable_multibyte_characters, -1);
5124
5125 idx = 1;
5126 XSETFASTINT (buffer_local_flags.mode_line_format, idx); ++idx;
5127 XSETFASTINT (buffer_local_flags.abbrev_mode, idx); ++idx;
5128 XSETFASTINT (buffer_local_flags.overwrite_mode, idx); ++idx;
5129 XSETFASTINT (buffer_local_flags.case_fold_search, idx); ++idx;
5130 XSETFASTINT (buffer_local_flags.auto_fill_function, idx); ++idx;
5131 XSETFASTINT (buffer_local_flags.selective_display, idx); ++idx;
5132 #ifndef old
5133 XSETFASTINT (buffer_local_flags.selective_display_ellipses, idx); ++idx;
5134 #endif
5135 XSETFASTINT (buffer_local_flags.tab_width, idx); ++idx;
5136 XSETFASTINT (buffer_local_flags.truncate_lines, idx); ++idx;
5137 XSETFASTINT (buffer_local_flags.word_wrap, idx); ++idx;
5138 XSETFASTINT (buffer_local_flags.ctl_arrow, idx); ++idx;
5139 XSETFASTINT (buffer_local_flags.fill_column, idx); ++idx;
5140 XSETFASTINT (buffer_local_flags.left_margin, idx); ++idx;
5141 XSETFASTINT (buffer_local_flags.abbrev_table, idx); ++idx;
5142 XSETFASTINT (buffer_local_flags.display_table, idx); ++idx;
5143 #ifdef DOS_NT
5144 XSETFASTINT (buffer_local_flags.buffer_file_type, idx);
5145 /* Make this one a permanent local. */
5146 buffer_permanent_local_flags[idx++] = 1;
5147 #endif
5148 XSETFASTINT (buffer_local_flags.syntax_table, idx); ++idx;
5149 XSETFASTINT (buffer_local_flags.cache_long_line_scans, idx); ++idx;
5150 XSETFASTINT (buffer_local_flags.category_table, idx); ++idx;
5151 XSETFASTINT (buffer_local_flags.bidi_display_reordering, idx); ++idx;
5152 XSETFASTINT (buffer_local_flags.bidi_paragraph_direction, idx); ++idx;
5153 XSETFASTINT (buffer_local_flags.buffer_file_coding_system, idx);
5154 /* Make this one a permanent local. */
5155 buffer_permanent_local_flags[idx++] = 1;
5156 XSETFASTINT (buffer_local_flags.left_margin_cols, idx); ++idx;
5157 XSETFASTINT (buffer_local_flags.right_margin_cols, idx); ++idx;
5158 XSETFASTINT (buffer_local_flags.left_fringe_width, idx); ++idx;
5159 XSETFASTINT (buffer_local_flags.right_fringe_width, idx); ++idx;
5160 XSETFASTINT (buffer_local_flags.fringes_outside_margins, idx); ++idx;
5161 XSETFASTINT (buffer_local_flags.scroll_bar_width, idx); ++idx;
5162 XSETFASTINT (buffer_local_flags.vertical_scroll_bar_type, idx); ++idx;
5163 XSETFASTINT (buffer_local_flags.indicate_empty_lines, idx); ++idx;
5164 XSETFASTINT (buffer_local_flags.indicate_buffer_boundaries, idx); ++idx;
5165 XSETFASTINT (buffer_local_flags.fringe_indicator_alist, idx); ++idx;
5166 XSETFASTINT (buffer_local_flags.fringe_cursor_alist, idx); ++idx;
5167 XSETFASTINT (buffer_local_flags.scroll_up_aggressively, idx); ++idx;
5168 XSETFASTINT (buffer_local_flags.scroll_down_aggressively, idx); ++idx;
5169 XSETFASTINT (buffer_local_flags.header_line_format, idx); ++idx;
5170 XSETFASTINT (buffer_local_flags.cursor_type, idx); ++idx;
5171 XSETFASTINT (buffer_local_flags.extra_line_spacing, idx); ++idx;
5172 XSETFASTINT (buffer_local_flags.cursor_in_non_selected_windows, idx); ++idx;
5173
5174 /* Need more room? */
5175 if (idx >= MAX_PER_BUFFER_VARS)
5176 abort ();
5177 last_per_buffer_idx = idx;
5178
5179 Vbuffer_alist = Qnil;
5180 current_buffer = 0;
5181 all_buffers = 0;
5182
5183 QSFundamental = make_pure_c_string ("Fundamental");
5184
5185 Qfundamental_mode = intern_c_string ("fundamental-mode");
5186 buffer_defaults.major_mode = Qfundamental_mode;
5187
5188 Qmode_class = intern_c_string ("mode-class");
5189
5190 Qprotected_field = intern_c_string ("protected-field");
5191
5192 Qpermanent_local = intern_c_string ("permanent-local");
5193
5194 Qkill_buffer_hook = intern_c_string ("kill-buffer-hook");
5195 Fput (Qkill_buffer_hook, Qpermanent_local, Qt);
5196
5197 Qucs_set_table_for_input = intern_c_string ("ucs-set-table-for-input");
5198
5199 /* super-magic invisible buffer */
5200 Vprin1_to_string_buffer = Fget_buffer_create (make_pure_c_string (" prin1"));
5201 Vbuffer_alist = Qnil;
5202
5203 Fset_buffer (Fget_buffer_create (make_pure_c_string ("*scratch*")));
5204
5205 inhibit_modification_hooks = 0;
5206 }
5207
5208 void
5209 init_buffer (void)
5210 {
5211 char *pwd;
5212 Lisp_Object temp;
5213 int len;
5214
5215 #ifdef USE_MMAP_FOR_BUFFERS
5216 {
5217 /* When using the ralloc implementation based on mmap(2), buffer
5218 text pointers will have been set to null in the dumped Emacs.
5219 Map new memory. */
5220 struct buffer *b;
5221
5222 for (b = all_buffers; b; b = b->next)
5223 if (b->text->beg == NULL)
5224 enlarge_buffer_text (b, 0);
5225 }
5226 #endif /* USE_MMAP_FOR_BUFFERS */
5227
5228 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
5229 if (NILP (buffer_defaults.enable_multibyte_characters))
5230 Fset_buffer_multibyte (Qnil);
5231
5232 pwd = get_current_dir_name ();
5233
5234 if (!pwd)
5235 fatal ("`get_current_dir_name' failed: %s\n", strerror (errno));
5236
5237 /* Maybe this should really use some standard subroutine
5238 whose definition is filename syntax dependent. */
5239 len = strlen (pwd);
5240 if (!(IS_DIRECTORY_SEP (pwd[len - 1])))
5241 {
5242 /* Grow buffer to add directory separator and '\0'. */
5243 pwd = (char *) realloc (pwd, len + 2);
5244 if (!pwd)
5245 fatal ("`get_current_dir_name' failed: %s\n", strerror (errno));
5246 pwd[len] = DIRECTORY_SEP;
5247 pwd[len + 1] = '\0';
5248 }
5249
5250 current_buffer->directory = make_unibyte_string (pwd, strlen (pwd));
5251 if (! NILP (buffer_defaults.enable_multibyte_characters))
5252 /* At this moment, we still don't know how to decode the
5253 directory name. So, we keep the bytes in multibyte form so
5254 that ENCODE_FILE correctly gets the original bytes. */
5255 current_buffer->directory
5256 = string_to_multibyte (current_buffer->directory);
5257
5258 /* Add /: to the front of the name
5259 if it would otherwise be treated as magic. */
5260 temp = Ffind_file_name_handler (current_buffer->directory, Qt);
5261 if (! NILP (temp)
5262 /* If the default dir is just /, TEMP is non-nil
5263 because of the ange-ftp completion handler.
5264 However, it is not necessary to turn / into /:/.
5265 So avoid doing that. */
5266 && strcmp ("/", SDATA (current_buffer->directory)))
5267 current_buffer->directory
5268 = concat2 (build_string ("/:"), current_buffer->directory);
5269
5270 temp = get_minibuffer (0);
5271 XBUFFER (temp)->directory = current_buffer->directory;
5272
5273 free (pwd);
5274 }
5275
5276 /* Similar to defvar_lisp but define a variable whose value is the Lisp
5277 Object stored in the current buffer. address is the address of the slot
5278 in the buffer that is current now. */
5279
5280 /* TYPE is nil for a general Lisp variable.
5281 An integer specifies a type; then only Lisp values
5282 with that type code are allowed (except that nil is allowed too).
5283 LNAME is the Lisp-level variable name.
5284 VNAME is the name of the buffer slot.
5285 DOC is a dummy where you write the doc string as a comment. */
5286 #define DEFVAR_PER_BUFFER(lname, vname, type, doc) \
5287 do { \
5288 static struct Lisp_Buffer_Objfwd bo_fwd; \
5289 defvar_per_buffer (&bo_fwd, lname, vname, type, 0); \
5290 } while (0)
5291
5292 static void
5293 defvar_per_buffer (struct Lisp_Buffer_Objfwd *bo_fwd, char *namestring,
5294 Lisp_Object *address, Lisp_Object type, char *doc)
5295 {
5296 struct Lisp_Symbol *sym;
5297 int offset;
5298
5299 sym = XSYMBOL (intern (namestring));
5300 offset = (char *)address - (char *)current_buffer;
5301
5302 bo_fwd->type = Lisp_Fwd_Buffer_Obj;
5303 bo_fwd->offset = offset;
5304 bo_fwd->slottype = type;
5305 sym->redirect = SYMBOL_FORWARDED;
5306 {
5307 /* I tried to do the job without a cast, but it seems impossible.
5308 union Lisp_Fwd *fwd; &(fwd->u_buffer_objfwd) = bo_fwd; */
5309 SET_SYMBOL_FWD (sym, (union Lisp_Fwd *)bo_fwd);
5310 }
5311 XSETSYMBOL (PER_BUFFER_SYMBOL (offset), sym);
5312
5313 if (PER_BUFFER_IDX (offset) == 0)
5314 /* Did a DEFVAR_PER_BUFFER without initializing the corresponding
5315 slot of buffer_local_flags */
5316 abort ();
5317 }
5318
5319
5320 /* initialize the buffer routines */
5321 void
5322 syms_of_buffer (void)
5323 {
5324 staticpro (&last_overlay_modification_hooks);
5325 last_overlay_modification_hooks
5326 = Fmake_vector (make_number (10), Qnil);
5327
5328 staticpro (&Vbuffer_defaults);
5329 staticpro (&Vbuffer_local_symbols);
5330 staticpro (&Qfundamental_mode);
5331 staticpro (&Qmode_class);
5332 staticpro (&QSFundamental);
5333 staticpro (&Vbuffer_alist);
5334 staticpro (&Qprotected_field);
5335 staticpro (&Qpermanent_local);
5336 Qpermanent_local_hook = intern_c_string ("permanent-local-hook");
5337 staticpro (&Qpermanent_local_hook);
5338 staticpro (&Qkill_buffer_hook);
5339 Qoverlayp = intern_c_string ("overlayp");
5340 staticpro (&Qoverlayp);
5341 Qevaporate = intern_c_string ("evaporate");
5342 staticpro (&Qevaporate);
5343 Qmodification_hooks = intern_c_string ("modification-hooks");
5344 staticpro (&Qmodification_hooks);
5345 Qinsert_in_front_hooks = intern_c_string ("insert-in-front-hooks");
5346 staticpro (&Qinsert_in_front_hooks);
5347 Qinsert_behind_hooks = intern_c_string ("insert-behind-hooks");
5348 staticpro (&Qinsert_behind_hooks);
5349 Qget_file_buffer = intern_c_string ("get-file-buffer");
5350 staticpro (&Qget_file_buffer);
5351 Qpriority = intern_c_string ("priority");
5352 staticpro (&Qpriority);
5353 Qwindow = intern_c_string ("window");
5354 staticpro (&Qwindow);
5355 Qbefore_string = intern_c_string ("before-string");
5356 staticpro (&Qbefore_string);
5357 Qafter_string = intern_c_string ("after-string");
5358 staticpro (&Qafter_string);
5359 Qfirst_change_hook = intern_c_string ("first-change-hook");
5360 staticpro (&Qfirst_change_hook);
5361 Qbefore_change_functions = intern_c_string ("before-change-functions");
5362 staticpro (&Qbefore_change_functions);
5363 Qafter_change_functions = intern_c_string ("after-change-functions");
5364 staticpro (&Qafter_change_functions);
5365 /* The next one is initialized in init_buffer_once. */
5366 staticpro (&Qucs_set_table_for_input);
5367
5368 Qkill_buffer_query_functions = intern_c_string ("kill-buffer-query-functions");
5369 staticpro (&Qkill_buffer_query_functions);
5370
5371 Fput (Qprotected_field, Qerror_conditions,
5372 pure_cons (Qprotected_field, pure_cons (Qerror, Qnil)));
5373 Fput (Qprotected_field, Qerror_message,
5374 make_pure_c_string ("Attempt to modify a protected field"));
5375
5376 /* All these use DEFVAR_LISP_NOPRO because the slots in
5377 buffer_defaults will all be marked via Vbuffer_defaults. */
5378
5379 DEFVAR_LISP_NOPRO ("default-mode-line-format",
5380 &buffer_defaults.mode_line_format,
5381 doc: /* Default value of `mode-line-format' for buffers that don't override it.
5382 This is the same as (default-value 'mode-line-format). */);
5383
5384 DEFVAR_LISP_NOPRO ("default-header-line-format",
5385 &buffer_defaults.header_line_format,
5386 doc: /* Default value of `header-line-format' for buffers that don't override it.
5387 This is the same as (default-value 'header-line-format). */);
5388
5389 DEFVAR_LISP_NOPRO ("default-cursor-type", &buffer_defaults.cursor_type,
5390 doc: /* Default value of `cursor-type' for buffers that don't override it.
5391 This is the same as (default-value 'cursor-type). */);
5392
5393 DEFVAR_LISP_NOPRO ("default-line-spacing",
5394 &buffer_defaults.extra_line_spacing,
5395 doc: /* Default value of `line-spacing' for buffers that don't override it.
5396 This is the same as (default-value 'line-spacing). */);
5397
5398 DEFVAR_LISP_NOPRO ("default-cursor-in-non-selected-windows",
5399 &buffer_defaults.cursor_in_non_selected_windows,
5400 doc: /* Default value of `cursor-in-non-selected-windows'.
5401 This is the same as (default-value 'cursor-in-non-selected-windows). */);
5402
5403 DEFVAR_LISP_NOPRO ("default-abbrev-mode",
5404 &buffer_defaults.abbrev_mode,
5405 doc: /* Default value of `abbrev-mode' for buffers that do not override it.
5406 This is the same as (default-value 'abbrev-mode). */);
5407
5408 DEFVAR_LISP_NOPRO ("default-ctl-arrow",
5409 &buffer_defaults.ctl_arrow,
5410 doc: /* Default value of `ctl-arrow' for buffers that do not override it.
5411 This is the same as (default-value 'ctl-arrow). */);
5412
5413 DEFVAR_LISP_NOPRO ("default-enable-multibyte-characters",
5414 &buffer_defaults.enable_multibyte_characters,
5415 doc: /* *Default value of `enable-multibyte-characters' for buffers not overriding it.
5416 This is the same as (default-value 'enable-multibyte-characters). */);
5417
5418 DEFVAR_LISP_NOPRO ("default-buffer-file-coding-system",
5419 &buffer_defaults.buffer_file_coding_system,
5420 doc: /* Default value of `buffer-file-coding-system' for buffers not overriding it.
5421 This is the same as (default-value 'buffer-file-coding-system). */);
5422
5423 DEFVAR_LISP_NOPRO ("default-truncate-lines",
5424 &buffer_defaults.truncate_lines,
5425 doc: /* Default value of `truncate-lines' for buffers that do not override it.
5426 This is the same as (default-value 'truncate-lines). */);
5427
5428 DEFVAR_LISP_NOPRO ("default-fill-column",
5429 &buffer_defaults.fill_column,
5430 doc: /* Default value of `fill-column' for buffers that do not override it.
5431 This is the same as (default-value 'fill-column). */);
5432
5433 DEFVAR_LISP_NOPRO ("default-left-margin",
5434 &buffer_defaults.left_margin,
5435 doc: /* Default value of `left-margin' for buffers that do not override it.
5436 This is the same as (default-value 'left-margin). */);
5437
5438 DEFVAR_LISP_NOPRO ("default-tab-width",
5439 &buffer_defaults.tab_width,
5440 doc: /* Default value of `tab-width' for buffers that do not override it.
5441 This is the same as (default-value 'tab-width). */);
5442
5443 DEFVAR_LISP_NOPRO ("default-case-fold-search",
5444 &buffer_defaults.case_fold_search,
5445 doc: /* Default value of `case-fold-search' for buffers that don't override it.
5446 This is the same as (default-value 'case-fold-search). */);
5447
5448 #ifdef DOS_NT
5449 DEFVAR_LISP_NOPRO ("default-buffer-file-type",
5450 &buffer_defaults.buffer_file_type,
5451 doc: /* Default file type for buffers that do not override it.
5452 This is the same as (default-value 'buffer-file-type).
5453 The file type is nil for text, t for binary. */);
5454 #endif
5455
5456 DEFVAR_LISP_NOPRO ("default-left-margin-width",
5457 &buffer_defaults.left_margin_cols,
5458 doc: /* Default value of `left-margin-width' for buffers that don't override it.
5459 This is the same as (default-value 'left-margin-width). */);
5460
5461 DEFVAR_LISP_NOPRO ("default-right-margin-width",
5462 &buffer_defaults.right_margin_cols,
5463 doc: /* Default value of `right-margin-width' for buffers that don't override it.
5464 This is the same as (default-value 'right-margin-width). */);
5465
5466 DEFVAR_LISP_NOPRO ("default-left-fringe-width",
5467 &buffer_defaults.left_fringe_width,
5468 doc: /* Default value of `left-fringe-width' for buffers that don't override it.
5469 This is the same as (default-value 'left-fringe-width). */);
5470
5471 DEFVAR_LISP_NOPRO ("default-right-fringe-width",
5472 &buffer_defaults.right_fringe_width,
5473 doc: /* Default value of `right-fringe-width' for buffers that don't override it.
5474 This is the same as (default-value 'right-fringe-width). */);
5475
5476 DEFVAR_LISP_NOPRO ("default-fringes-outside-margins",
5477 &buffer_defaults.fringes_outside_margins,
5478 doc: /* Default value of `fringes-outside-margins' for buffers that don't override it.
5479 This is the same as (default-value 'fringes-outside-margins). */);
5480
5481 DEFVAR_LISP_NOPRO ("default-scroll-bar-width",
5482 &buffer_defaults.scroll_bar_width,
5483 doc: /* Default value of `scroll-bar-width' for buffers that don't override it.
5484 This is the same as (default-value 'scroll-bar-width). */);
5485
5486 DEFVAR_LISP_NOPRO ("default-vertical-scroll-bar",
5487 &buffer_defaults.vertical_scroll_bar_type,
5488 doc: /* Default value of `vertical-scroll-bar' for buffers that don't override it.
5489 This is the same as (default-value 'vertical-scroll-bar). */);
5490
5491 DEFVAR_LISP_NOPRO ("default-indicate-empty-lines",
5492 &buffer_defaults.indicate_empty_lines,
5493 doc: /* Default value of `indicate-empty-lines' for buffers that don't override it.
5494 This is the same as (default-value 'indicate-empty-lines). */);
5495
5496 DEFVAR_LISP_NOPRO ("default-indicate-buffer-boundaries",
5497 &buffer_defaults.indicate_buffer_boundaries,
5498 doc: /* Default value of `indicate-buffer-boundaries' for buffers that don't override it.
5499 This is the same as (default-value 'indicate-buffer-boundaries). */);
5500
5501 DEFVAR_LISP_NOPRO ("default-fringe-indicator-alist",
5502 &buffer_defaults.fringe_indicator_alist,
5503 doc: /* Default value of `fringe-indicator-alist' for buffers that don't override it.
5504 This is the same as (default-value 'fringe-indicator-alist'). */);
5505
5506 DEFVAR_LISP_NOPRO ("default-fringe-cursor-alist",
5507 &buffer_defaults.fringe_cursor_alist,
5508 doc: /* Default value of `fringe-cursor-alist' for buffers that don't override it.
5509 This is the same as (default-value 'fringe-cursor-alist'). */);
5510
5511 DEFVAR_LISP_NOPRO ("default-scroll-up-aggressively",
5512 &buffer_defaults.scroll_up_aggressively,
5513 doc: /* Default value of `scroll-up-aggressively'.
5514 This value applies in buffers that don't have their own local values.
5515 This is the same as (default-value 'scroll-up-aggressively). */);
5516
5517 DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively",
5518 &buffer_defaults.scroll_down_aggressively,
5519 doc: /* Default value of `scroll-down-aggressively'.
5520 This value applies in buffers that don't have their own local values.
5521 This is the same as (default-value 'scroll-down-aggressively). */);
5522
5523 DEFVAR_PER_BUFFER ("header-line-format",
5524 &current_buffer->header_line_format,
5525 Qnil,
5526 doc: /* Analogous to `mode-line-format', but controls the header line.
5527 The header line appears, optionally, at the top of a window;
5528 the mode line appears at the bottom. */);
5529
5530 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
5531 Qnil,
5532 doc: /* Template for displaying mode line for current buffer.
5533 Each buffer has its own value of this variable.
5534 Value may be nil, a string, a symbol or a list or cons cell.
5535 A value of nil means don't display a mode line.
5536 For a symbol, its value is used (but it is ignored if t or nil).
5537 A string appearing directly as the value of a symbol is processed verbatim
5538 in that the %-constructs below are not recognized.
5539 Note that unless the symbol is marked as a `risky-local-variable', all
5540 properties in any strings, as well as all :eval and :propertize forms
5541 in the value of that symbol will be ignored.
5542 For a list of the form `(:eval FORM)', FORM is evaluated and the result
5543 is used as a mode line element. Be careful--FORM should not load any files,
5544 because that can cause an infinite recursion.
5545 For a list of the form `(:propertize ELT PROPS...)', ELT is displayed
5546 with the specified properties PROPS applied.
5547 For a list whose car is a symbol, the symbol's value is taken,
5548 and if that is non-nil, the cadr of the list is processed recursively.
5549 Otherwise, the caddr of the list (if there is one) is processed.
5550 For a list whose car is a string or list, each element is processed
5551 recursively and the results are effectively concatenated.
5552 For a list whose car is an integer, the cdr of the list is processed
5553 and padded (if the number is positive) or truncated (if negative)
5554 to the width specified by that number.
5555 A string is printed verbatim in the mode line except for %-constructs:
5556 (%-constructs are allowed when the string is the entire mode-line-format
5557 or when it is found in a cons-cell or a list)
5558 %b -- print buffer name. %f -- print visited file name.
5559 %F -- print frame name.
5560 %* -- print %, * or hyphen. %+ -- print *, % or hyphen.
5561 %& is like %*, but ignore read-only-ness.
5562 % means buffer is read-only and * means it is modified.
5563 For a modified read-only buffer, %* gives % and %+ gives *.
5564 %s -- print process status. %l -- print the current line number.
5565 %c -- print the current column number (this makes editing slower).
5566 To make the column number update correctly in all cases,
5567 `column-number-mode' must be non-nil.
5568 %i -- print the size of the buffer.
5569 %I -- like %i, but use k, M, G, etc., to abbreviate.
5570 %p -- print percent of buffer above top of window, or Top, Bot or All.
5571 %P -- print percent of buffer above bottom of window, perhaps plus Top,
5572 or print Bottom or All.
5573 %n -- print Narrow if appropriate.
5574 %t -- visited file is text or binary (if OS supports this distinction).
5575 %z -- print mnemonics of keyboard, terminal, and buffer coding systems.
5576 %Z -- like %z, but including the end-of-line format.
5577 %e -- print error message about full memory.
5578 %@ -- print @ or hyphen. @ means that default-directory is on a
5579 remote machine.
5580 %[ -- print one [ for each recursive editing level. %] similar.
5581 %% -- print %. %- -- print infinitely many dashes.
5582 Decimal digits after the % specify field width to which to pad. */);
5583
5584 DEFVAR_LISP_NOPRO ("default-major-mode", &buffer_defaults.major_mode,
5585 doc: /* *Value of `major-mode' for new buffers. */);
5586
5587 DEFVAR_PER_BUFFER ("major-mode", &current_buffer->major_mode,
5588 make_number (Lisp_Symbol),
5589 doc: /* Symbol for current buffer's major mode.
5590 The default value (normally `fundamental-mode') affects new buffers.
5591 A value of nil means to use the current buffer's major mode, provided
5592 it is not marked as "special".
5593
5594 When a mode is used by default, `find-file' switches to it before it
5595 reads the contents into the buffer and before it finishes setting up
5596 the buffer. Thus, the mode and its hooks should not expect certain
5597 variables such as `buffer-read-only' and `buffer-file-coding-system'
5598 to be set up. */);
5599
5600 DEFVAR_PER_BUFFER ("mode-name", &current_buffer->mode_name,
5601 Qnil,
5602 doc: /* Pretty name of current buffer's major mode.
5603 Usually a string, but can use any of the constructs for `mode-line-format',
5604 which see.
5605 Format with `format-mode-line' to produce a string value. */);
5606
5607 DEFVAR_PER_BUFFER ("local-abbrev-table", &current_buffer->abbrev_table, Qnil,
5608 doc: /* Local (mode-specific) abbrev table of current buffer. */);
5609
5610 DEFVAR_PER_BUFFER ("abbrev-mode", &current_buffer->abbrev_mode, Qnil,
5611 doc: /* Non-nil turns on automatic expansion of abbrevs as they are inserted. */);
5612
5613 DEFVAR_PER_BUFFER ("case-fold-search", &current_buffer->case_fold_search,
5614 Qnil,
5615 doc: /* *Non-nil if searches and matches should ignore case. */);
5616
5617 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column,
5618 make_number (LISP_INT_TAG),
5619 doc: /* *Column beyond which automatic line-wrapping should happen.
5620 Interactively, you can set the buffer local value using \\[set-fill-column]. */);
5621
5622 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin,
5623 make_number (LISP_INT_TAG),
5624 doc: /* *Column for the default `indent-line-function' to indent to.
5625 Linefeed indents to this column in Fundamental mode. */);
5626
5627 DEFVAR_PER_BUFFER ("tab-width", &current_buffer->tab_width,
5628 make_number (LISP_INT_TAG),
5629 doc: /* *Distance between tab stops (for display of tab characters), in columns. */);
5630
5631 DEFVAR_PER_BUFFER ("ctl-arrow", &current_buffer->ctl_arrow, Qnil,
5632 doc: /* *Non-nil means display control chars with uparrow.
5633 A value of nil means use backslash and octal digits.
5634 This variable does not apply to characters whose display is specified
5635 in the current display table (if there is one). */);
5636
5637 DEFVAR_PER_BUFFER ("enable-multibyte-characters",
5638 &current_buffer->enable_multibyte_characters,
5639 Qnil,
5640 doc: /* Non-nil means the buffer contents are regarded as multi-byte characters.
5641 Otherwise they are regarded as unibyte. This affects the display,
5642 file I/O and the behavior of various editing commands.
5643
5644 This variable is buffer-local but you cannot set it directly;
5645 use the function `set-buffer-multibyte' to change a buffer's representation.
5646 Changing its default value with `setq-default' is supported.
5647 See also variable `default-enable-multibyte-characters' and Info node
5648 `(elisp)Text Representations'. */);
5649 XSYMBOL (intern_c_string ("enable-multibyte-characters"))->constant = 1;
5650
5651 DEFVAR_PER_BUFFER ("buffer-file-coding-system",
5652 &current_buffer->buffer_file_coding_system, Qnil,
5653 doc: /* Coding system to be used for encoding the buffer contents on saving.
5654 This variable applies to saving the buffer, and also to `write-region'
5655 and other functions that use `write-region'.
5656 It does not apply to sending output to subprocesses, however.
5657
5658 If this is nil, the buffer is saved without any code conversion
5659 unless some coding system is specified in `file-coding-system-alist'
5660 for the buffer file.
5661
5662 If the text to be saved cannot be encoded as specified by this variable,
5663 an alternative encoding is selected by `select-safe-coding-system', which see.
5664
5665 The variable `coding-system-for-write', if non-nil, overrides this variable.
5666
5667 This variable is never applied to a way of decoding a file while reading it. */);
5668
5669 DEFVAR_PER_BUFFER ("bidi-display-reordering",
5670 &current_buffer->bidi_display_reordering, Qnil,
5671 doc: /* Non-nil means reorder bidirectional text for display in the visual order. */);
5672
5673 DEFVAR_PER_BUFFER ("bidi-paragraph-direction",
5674 &current_buffer->bidi_paragraph_direction, Qnil,
5675 doc: /* *If non-nil, forces directionality of text paragraphs in the buffer.
5676
5677 If this is nil (the default), the direction of each paragraph is
5678 determined by the first strong directional character of its text.
5679 The values of `right-to-left' and `left-to-right' override that.
5680 Any other value is treated as nil.
5681
5682 This variable has no effect unless the buffer's value of
5683 \`bidi-display-reordering' is non-nil. */);
5684
5685 DEFVAR_PER_BUFFER ("truncate-lines", &current_buffer->truncate_lines, Qnil,
5686 doc: /* *Non-nil means do not display continuation lines.
5687 Instead, give each line of text just one screen line.
5688
5689 Note that this is overridden by the variable
5690 `truncate-partial-width-windows' if that variable is non-nil
5691 and this buffer is not full-frame width. */);
5692
5693 DEFVAR_PER_BUFFER ("word-wrap", &current_buffer->word_wrap, Qnil,
5694 doc: /* *Non-nil means to use word-wrapping for continuation lines.
5695 When word-wrapping is on, continuation lines are wrapped at the space
5696 or tab character nearest to the right window edge.
5697 If nil, continuation lines are wrapped at the right screen edge.
5698
5699 This variable has no effect if long lines are truncated (see
5700 `truncate-lines' and `truncate-partial-width-windows'). If you use
5701 word-wrapping, you might want to reduce the value of
5702 `truncate-partial-width-windows', since wrapping can make text readable
5703 in narrower windows. */);
5704
5705 #ifdef DOS_NT
5706 DEFVAR_PER_BUFFER ("buffer-file-type", &current_buffer->buffer_file_type,
5707 Qnil,
5708 doc: /* Non-nil if the visited file is a binary file.
5709 This variable is meaningful on MS-DOG and Windows NT.
5710 On those systems, it is automatically local in every buffer.
5711 On other systems, this variable is normally always nil. */);
5712 #endif
5713
5714 DEFVAR_PER_BUFFER ("default-directory", &current_buffer->directory,
5715 make_number (Lisp_String),
5716 doc: /* Name of default directory of current buffer. Should end with slash.
5717 To interactively change the default directory, use command `cd'. */);
5718
5719 DEFVAR_PER_BUFFER ("auto-fill-function", &current_buffer->auto_fill_function,
5720 Qnil,
5721 doc: /* Function called (if non-nil) to perform auto-fill.
5722 It is called after self-inserting any character specified in
5723 the `auto-fill-chars' table.
5724 NOTE: This variable is not a hook;
5725 its value may not be a list of functions. */);
5726
5727 DEFVAR_PER_BUFFER ("buffer-file-name", &current_buffer->filename,
5728 make_number (Lisp_String),
5729 doc: /* Name of file visited in current buffer, or nil if not visiting a file. */);
5730
5731 DEFVAR_PER_BUFFER ("buffer-file-truename", &current_buffer->file_truename,
5732 make_number (Lisp_String),
5733 doc: /* Abbreviated truename of file visited in current buffer, or nil if none.
5734 The truename of a file is calculated by `file-truename'
5735 and then abbreviated with `abbreviate-file-name'. */);
5736
5737 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
5738 &current_buffer->auto_save_file_name,
5739 make_number (Lisp_String),
5740 doc: /* Name of file for auto-saving current buffer.
5741 If it is nil, that means don't auto-save this buffer. */);
5742
5743 DEFVAR_PER_BUFFER ("buffer-read-only", &current_buffer->read_only, Qnil,
5744 doc: /* Non-nil if this buffer is read-only. */);
5745
5746 DEFVAR_PER_BUFFER ("buffer-backed-up", &current_buffer->backed_up, Qnil,
5747 doc: /* Non-nil if this buffer's file has been backed up.
5748 Backing up is done before the first time the file is saved. */);
5749
5750 DEFVAR_PER_BUFFER ("buffer-saved-size", &current_buffer->save_length,
5751 make_number (LISP_INT_TAG),
5752 doc: /* Length of current buffer when last read in, saved or auto-saved.
5753 0 initially.
5754 -1 means auto-saving turned off until next real save.
5755
5756 If you set this to -2, that means don't turn off auto-saving in this buffer
5757 if its text size shrinks. If you use `buffer-swap-text' on a buffer,
5758 you probably should set this to -2 in that buffer. */);
5759
5760 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
5761 Qnil,
5762 doc: /* Non-nil enables selective display.
5763 An integer N as value means display only lines
5764 that start with less than N columns of space.
5765 A value of t means that the character ^M makes itself and
5766 all the rest of the line invisible; also, when saving the buffer
5767 in a file, save the ^M as a newline. */);
5768
5769 #ifndef old
5770 DEFVAR_PER_BUFFER ("selective-display-ellipses",
5771 &current_buffer->selective_display_ellipses,
5772 Qnil,
5773 doc: /* Non-nil means display ... on previous line when a line is invisible. */);
5774 #endif
5775
5776 DEFVAR_PER_BUFFER ("overwrite-mode", &current_buffer->overwrite_mode, Qnil,
5777 doc: /* Non-nil if self-insertion should replace existing text.
5778 The value should be one of `overwrite-mode-textual',
5779 `overwrite-mode-binary', or nil.
5780 If it is `overwrite-mode-textual', self-insertion still
5781 inserts at the end of a line, and inserts when point is before a tab,
5782 until the tab is filled in.
5783 If `overwrite-mode-binary', self-insertion replaces newlines and tabs too. */);
5784
5785 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
5786 Qnil,
5787 doc: /* Display table that controls display of the contents of current buffer.
5788
5789 If this variable is nil, the value of `standard-display-table' is used.
5790 Each window can have its own, overriding display table, see
5791 `set-window-display-table' and `window-display-table'.
5792
5793 The display table is a char-table created with `make-display-table'.
5794 A char-table is an array indexed by character codes. Normal array
5795 primitives `aref' and `aset' can be used to access elements of a char-table.
5796
5797 Each of the char-table elements control how to display the corresponding
5798 text character: the element at index C in the table says how to display
5799 the character whose code is C. Each element should be a vector of
5800 characters or nil. The value nil means display the character in the
5801 default fashion; otherwise, the characters from the vector are delivered
5802 to the screen instead of the original character.
5803
5804 For example, (aset buffer-display-table ?X [?Y]) tells Emacs
5805 to display a capital Y instead of each X character.
5806
5807 In addition, a char-table has six extra slots to control the display of:
5808
5809 the end of a truncated screen line (extra-slot 0, a single character);
5810 the end of a continued line (extra-slot 1, a single character);
5811 the escape character used to display character codes in octal
5812 (extra-slot 2, a single character);
5813 the character used as an arrow for control characters (extra-slot 3,
5814 a single character);
5815 the decoration indicating the presence of invisible lines (extra-slot 4,
5816 a vector of characters);
5817 the character used to draw the border between side-by-side windows
5818 (extra-slot 5, a single character).
5819
5820 See also the functions `display-table-slot' and `set-display-table-slot'. */);
5821
5822 DEFVAR_PER_BUFFER ("left-margin-width", &current_buffer->left_margin_cols,
5823 Qnil,
5824 doc: /* *Width of left marginal area for display of a buffer.
5825 A value of nil means no marginal area. */);
5826
5827 DEFVAR_PER_BUFFER ("right-margin-width", &current_buffer->right_margin_cols,
5828 Qnil,
5829 doc: /* *Width of right marginal area for display of a buffer.
5830 A value of nil means no marginal area. */);
5831
5832 DEFVAR_PER_BUFFER ("left-fringe-width", &current_buffer->left_fringe_width,
5833 Qnil,
5834 doc: /* *Width of this buffer's left fringe (in pixels).
5835 A value of 0 means no left fringe is shown in this buffer's window.
5836 A value of nil means to use the left fringe width from the window's frame. */);
5837
5838 DEFVAR_PER_BUFFER ("right-fringe-width", &current_buffer->right_fringe_width,
5839 Qnil,
5840 doc: /* *Width of this buffer's right fringe (in pixels).
5841 A value of 0 means no right fringe is shown in this buffer's window.
5842 A value of nil means to use the right fringe width from the window's frame. */);
5843
5844 DEFVAR_PER_BUFFER ("fringes-outside-margins", &current_buffer->fringes_outside_margins,
5845 Qnil,
5846 doc: /* *Non-nil means to display fringes outside display margins.
5847 A value of nil means to display fringes between margins and buffer text. */);
5848
5849 DEFVAR_PER_BUFFER ("scroll-bar-width", &current_buffer->scroll_bar_width,
5850 Qnil,
5851 doc: /* *Width of this buffer's scroll bars in pixels.
5852 A value of nil means to use the scroll bar width from the window's frame. */);
5853
5854 DEFVAR_PER_BUFFER ("vertical-scroll-bar", &current_buffer->vertical_scroll_bar_type,
5855 Qnil,
5856 doc: /* *Position of this buffer's vertical scroll bar.
5857 The value takes effect whenever you tell a window to display this buffer;
5858 for instance, with `set-window-buffer' or when `display-buffer' displays it.
5859
5860 A value of `left' or `right' means put the vertical scroll bar at that side
5861 of the window; a value of nil means don't show any vertical scroll bars.
5862 A value of t (the default) means do whatever the window's frame specifies. */);
5863
5864 DEFVAR_PER_BUFFER ("indicate-empty-lines",
5865 &current_buffer->indicate_empty_lines, Qnil,
5866 doc: /* *Visually indicate empty lines after the buffer end.
5867 If non-nil, a bitmap is displayed in the left fringe of a window on
5868 window-systems. */);
5869
5870 DEFVAR_PER_BUFFER ("indicate-buffer-boundaries",
5871 &current_buffer->indicate_buffer_boundaries, Qnil,
5872 doc: /* *Visually indicate buffer boundaries and scrolling.
5873 If non-nil, the first and last line of the buffer are marked in the fringe
5874 of a window on window-systems with angle bitmaps, or if the window can be
5875 scrolled, the top and bottom line of the window are marked with up and down
5876 arrow bitmaps.
5877
5878 If value is a symbol `left' or `right', both angle and arrow bitmaps
5879 are displayed in the left or right fringe, resp. Any other value
5880 that doesn't look like an alist means display the angle bitmaps in
5881 the left fringe but no arrows.
5882
5883 You can exercise more precise control by using an alist as the
5884 value. Each alist element (INDICATOR . POSITION) specifies
5885 where to show one of the indicators. INDICATOR is one of `top',
5886 `bottom', `up', `down', or t, which specifies the default position,
5887 and POSITION is one of `left', `right', or nil, meaning do not show
5888 this indicator.
5889
5890 For example, ((top . left) (t . right)) places the top angle bitmap in
5891 left fringe, the bottom angle bitmap in right fringe, and both arrow
5892 bitmaps in right fringe. To show just the angle bitmaps in the left
5893 fringe, but no arrow bitmaps, use ((top . left) (bottom . left)). */);
5894
5895 DEFVAR_PER_BUFFER ("fringe-indicator-alist",
5896 &current_buffer->fringe_indicator_alist, Qnil,
5897 doc: /* *Mapping from logical to physical fringe indicator bitmaps.
5898 The value is an alist where each element (INDICATOR . BITMAPS)
5899 specifies the fringe bitmaps used to display a specific logical
5900 fringe indicator.
5901
5902 INDICATOR specifies the logical indicator type which is one of the
5903 following symbols: `truncation' , `continuation', `overlay-arrow',
5904 `top', `bottom', `up', `down', `one-line', `empty-line', or `unknown'.
5905
5906 BITMAPS is list of symbols (LEFT RIGHT [LEFT1 RIGHT1]) which specifies
5907 the actual bitmap shown in the left or right fringe for the logical
5908 indicator. LEFT and RIGHT are the bitmaps shown in the left and/or
5909 right fringe for the specific indicator. The LEFT1 or RIGHT1 bitmaps
5910 are used only for the `bottom' and `one-line' indicators when the last
5911 \(only) line in has no final newline. BITMAPS may also be a single
5912 symbol which is used in both left and right fringes. */);
5913
5914 DEFVAR_PER_BUFFER ("fringe-cursor-alist",
5915 &current_buffer->fringe_cursor_alist, Qnil,
5916 doc: /* *Mapping from logical to physical fringe cursor bitmaps.
5917 The value is an alist where each element (CURSOR . BITMAP)
5918 specifies the fringe bitmaps used to display a specific logical
5919 cursor type in the fringe.
5920
5921 CURSOR specifies the logical cursor type which is one of the following
5922 symbols: `box' , `hollow', `bar', `hbar', or `hollow-small'. The last
5923 one is used to show a hollow cursor on narrow lines display lines
5924 where the normal hollow cursor will not fit.
5925
5926 BITMAP is the corresponding fringe bitmap shown for the logical
5927 cursor type. */);
5928
5929 DEFVAR_PER_BUFFER ("scroll-up-aggressively",
5930 &current_buffer->scroll_up_aggressively, Qnil,
5931 doc: /* How far to scroll windows upward.
5932 If you move point off the bottom, the window scrolls automatically.
5933 This variable controls how far it scrolls. The value nil, the default,
5934 means scroll to center point. A fraction means scroll to put point
5935 that fraction of the window's height from the bottom of the window.
5936 When the value is 0.0, point goes at the bottom line, which in the
5937 simple case that you moved off with C-f means scrolling just one line.
5938 1.0 means point goes at the top, so that in that simple case, the
5939 window scrolls by a full window height. Meaningful values are
5940 between 0.0 and 1.0, inclusive. */);
5941
5942 DEFVAR_PER_BUFFER ("scroll-down-aggressively",
5943 &current_buffer->scroll_down_aggressively, Qnil,
5944 doc: /* How far to scroll windows downward.
5945 If you move point off the top, the window scrolls automatically.
5946 This variable controls how far it scrolls. The value nil, the default,
5947 means scroll to center point. A fraction means scroll to put point
5948 that fraction of the window's height from the top of the window.
5949 When the value is 0.0, point goes at the top line, which in the
5950 simple case that you moved off with C-b means scrolling just one line.
5951 1.0 means point goes at the bottom, so that in that simple case, the
5952 window scrolls by a full window height. Meaningful values are
5953 between 0.0 and 1.0, inclusive. */);
5954
5955 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
5956 "Don't ask.");
5957 */
5958
5959 DEFVAR_LISP ("before-change-functions", &Vbefore_change_functions,
5960 doc: /* List of functions to call before each text change.
5961 Two arguments are passed to each function: the positions of
5962 the beginning and end of the range of old text to be changed.
5963 \(For an insertion, the beginning and end are at the same place.)
5964 No information is given about the length of the text after the change.
5965
5966 Buffer changes made while executing the `before-change-functions'
5967 don't call any before-change or after-change functions.
5968 That's because these variables are temporarily set to nil.
5969 As a result, a hook function cannot straightforwardly alter the
5970 value of these variables. See the Emacs Lisp manual for a way of
5971 accomplishing an equivalent result by using other variables.
5972
5973 If an unhandled error happens in running these functions,
5974 the variable's value remains nil. That prevents the error
5975 from happening repeatedly and making Emacs nonfunctional. */);
5976 Vbefore_change_functions = Qnil;
5977
5978 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions,
5979 doc: /* List of functions to call after each text change.
5980 Three arguments are passed to each function: the positions of
5981 the beginning and end of the range of changed text,
5982 and the length in bytes of the pre-change text replaced by that range.
5983 \(For an insertion, the pre-change length is zero;
5984 for a deletion, that length is the number of bytes deleted,
5985 and the post-change beginning and end are at the same place.)
5986
5987 Buffer changes made while executing the `after-change-functions'
5988 don't call any before-change or after-change functions.
5989 That's because these variables are temporarily set to nil.
5990 As a result, a hook function cannot straightforwardly alter the
5991 value of these variables. See the Emacs Lisp manual for a way of
5992 accomplishing an equivalent result by using other variables.
5993
5994 If an unhandled error happens in running these functions,
5995 the variable's value remains nil. That prevents the error
5996 from happening repeatedly and making Emacs nonfunctional. */);
5997 Vafter_change_functions = Qnil;
5998
5999 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook,
6000 doc: /* A list of functions to call before changing a buffer which is unmodified.
6001 The functions are run using the `run-hooks' function. */);
6002 Vfirst_change_hook = Qnil;
6003
6004 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
6005 doc: /* List of undo entries in current buffer.
6006 Recent changes come first; older changes follow newer.
6007
6008 An entry (BEG . END) represents an insertion which begins at
6009 position BEG and ends at position END.
6010
6011 An entry (TEXT . POSITION) represents the deletion of the string TEXT
6012 from (abs POSITION). If POSITION is positive, point was at the front
6013 of the text being deleted; if negative, point was at the end.
6014
6015 An entry (t HIGH . LOW) indicates that the buffer previously had
6016 \"unmodified\" status. HIGH and LOW are the high and low 16-bit portions
6017 of the visited file's modification time, as of that time. If the
6018 modification time of the most recent save is different, this entry is
6019 obsolete.
6020
6021 An entry (nil PROPERTY VALUE BEG . END) indicates that a text property
6022 was modified between BEG and END. PROPERTY is the property name,
6023 and VALUE is the old value.
6024
6025 An entry (apply FUN-NAME . ARGS) means undo the change with
6026 \(apply FUN-NAME ARGS).
6027
6028 An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo
6029 in the active region. BEG and END is the range affected by this entry
6030 and DELTA is the number of bytes added or deleted in that range by
6031 this change.
6032
6033 An entry (MARKER . DISTANCE) indicates that the marker MARKER
6034 was adjusted in position by the offset DISTANCE (an integer).
6035
6036 An entry of the form POSITION indicates that point was at the buffer
6037 location given by the integer. Undoing an entry of this form places
6038 point at POSITION.
6039
6040 Entries with value `nil' mark undo boundaries. The undo command treats
6041 the changes between two undo boundaries as a single step to be undone.
6042
6043 If the value of the variable is t, undo information is not recorded. */);
6044
6045 DEFVAR_PER_BUFFER ("mark-active", &current_buffer->mark_active, Qnil,
6046 doc: /* Non-nil means the mark and region are currently active in this buffer. */);
6047
6048 DEFVAR_PER_BUFFER ("cache-long-line-scans", &current_buffer->cache_long_line_scans, Qnil,
6049 doc: /* Non-nil means that Emacs should use caches to handle long lines more quickly.
6050
6051 Normally, the line-motion functions work by scanning the buffer for
6052 newlines. Columnar operations (like `move-to-column' and
6053 `compute-motion') also work by scanning the buffer, summing character
6054 widths as they go. This works well for ordinary text, but if the
6055 buffer's lines are very long (say, more than 500 characters), these
6056 motion functions will take longer to execute. Emacs may also take
6057 longer to update the display.
6058
6059 If `cache-long-line-scans' is non-nil, these motion functions cache the
6060 results of their scans, and consult the cache to avoid rescanning
6061 regions of the buffer until the text is modified. The caches are most
6062 beneficial when they prevent the most searching---that is, when the
6063 buffer contains long lines and large regions of characters with the
6064 same, fixed screen width.
6065
6066 When `cache-long-line-scans' is non-nil, processing short lines will
6067 become slightly slower (because of the overhead of consulting the
6068 cache), and the caches will use memory roughly proportional to the
6069 number of newlines and characters whose screen width varies.
6070
6071 The caches require no explicit maintenance; their accuracy is
6072 maintained internally by the Emacs primitives. Enabling or disabling
6073 the cache should not affect the behavior of any of the motion
6074 functions; it should only affect their performance. */);
6075
6076 DEFVAR_PER_BUFFER ("point-before-scroll", &current_buffer->point_before_scroll, Qnil,
6077 doc: /* Value of point before the last series of scroll operations, or nil. */);
6078
6079 DEFVAR_PER_BUFFER ("buffer-file-format", &current_buffer->file_format, Qnil,
6080 doc: /* List of formats to use when saving this buffer.
6081 Formats are defined by `format-alist'. This variable is
6082 set when a file is visited. */);
6083
6084 DEFVAR_PER_BUFFER ("buffer-auto-save-file-format",
6085 &current_buffer->auto_save_file_format, Qnil,
6086 doc: /* *Format in which to write auto-save files.
6087 Should be a list of symbols naming formats that are defined in `format-alist'.
6088 If it is t, which is the default, auto-save files are written in the
6089 same format as a regular save would use. */);
6090
6091 DEFVAR_PER_BUFFER ("buffer-invisibility-spec",
6092 &current_buffer->invisibility_spec, Qnil,
6093 doc: /* Invisibility spec of this buffer.
6094 The default is t, which means that text is invisible
6095 if it has a non-nil `invisible' property.
6096 If the value is a list, a text character is invisible if its `invisible'
6097 property is an element in that list (or is a list with members in common).
6098 If an element is a cons cell of the form (PROP . ELLIPSIS),
6099 then characters with property value PROP are invisible,
6100 and they have an ellipsis as well if ELLIPSIS is non-nil. */);
6101
6102 DEFVAR_PER_BUFFER ("buffer-display-count",
6103 &current_buffer->display_count, Qnil,
6104 doc: /* A number incremented each time this buffer is displayed in a window.
6105 The function `set-window-buffer' increments it. */);
6106
6107 DEFVAR_PER_BUFFER ("buffer-display-time",
6108 &current_buffer->display_time, Qnil,
6109 doc: /* Time stamp updated each time this buffer is displayed in a window.
6110 The function `set-window-buffer' updates this variable
6111 to the value obtained by calling `current-time'.
6112 If the buffer has never been shown in a window, the value is nil. */);
6113
6114 DEFVAR_LISP ("transient-mark-mode", &Vtransient_mark_mode,
6115 doc: /* */);
6116 Vtransient_mark_mode = Qnil;
6117 /* The docstring is in simple.el. If we put it here, it would be
6118 overwritten when transient-mark-mode is defined using
6119 define-minor-mode. */
6120
6121 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only,
6122 doc: /* *Non-nil means disregard read-only status of buffers or characters.
6123 If the value is t, disregard `buffer-read-only' and all `read-only'
6124 text properties. If the value is a list, disregard `buffer-read-only'
6125 and disregard a `read-only' text property if the property value
6126 is a member of the list. */);
6127 Vinhibit_read_only = Qnil;
6128
6129 DEFVAR_PER_BUFFER ("cursor-type", &current_buffer->cursor_type, Qnil,
6130 doc: /* Cursor to use when this buffer is in the selected window.
6131 Values are interpreted as follows:
6132
6133 t use the cursor specified for the frame
6134 nil don't display a cursor
6135 box display a filled box cursor
6136 hollow display a hollow box cursor
6137 bar display a vertical bar cursor with default width
6138 (bar . WIDTH) display a vertical bar cursor with width WIDTH
6139 hbar display a horizontal bar cursor with default height
6140 (hbar . HEIGHT) display a horizontal bar cursor with height HEIGHT
6141 ANYTHING ELSE display a hollow box cursor
6142
6143 When the buffer is displayed in a non-selected window, the
6144 cursor's appearance is instead controlled by the variable
6145 `cursor-in-non-selected-windows'. */);
6146
6147 DEFVAR_PER_BUFFER ("line-spacing",
6148 &current_buffer->extra_line_spacing, Qnil,
6149 doc: /* Additional space to put between lines when displaying a buffer.
6150 The space is measured in pixels, and put below lines on graphic displays,
6151 see `display-graphic-p'.
6152 If value is a floating point number, it specifies the spacing relative
6153 to the default frame line height. A value of nil means add no extra space. */);
6154
6155 DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows",
6156 &current_buffer->cursor_in_non_selected_windows, Qnil,
6157 doc: /* *Cursor type to display in non-selected windows.
6158 The value t means to use hollow box cursor. See `cursor-type' for other values. */);
6159
6160 DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions,
6161 doc: /* List of functions called with no args to query before killing a buffer.
6162 The buffer being killed will be current while the functions are running.
6163 If any of them returns nil, the buffer is not killed. */);
6164 Vkill_buffer_query_functions = Qnil;
6165
6166 DEFVAR_LISP ("change-major-mode-hook", &Vchange_major_mode_hook,
6167 doc: /* Normal hook run before changing the major mode of a buffer.
6168 The function `kill-all-local-variables' runs this before doing anything else. */);
6169 Vchange_major_mode_hook = Qnil;
6170 Qchange_major_mode_hook = intern_c_string ("change-major-mode-hook");
6171 staticpro (&Qchange_major_mode_hook);
6172
6173 defsubr (&Sbuffer_live_p);
6174 defsubr (&Sbuffer_list);
6175 defsubr (&Sget_buffer);
6176 defsubr (&Sget_file_buffer);
6177 defsubr (&Sget_buffer_create);
6178 defsubr (&Smake_indirect_buffer);
6179 defsubr (&Sgenerate_new_buffer_name);
6180 defsubr (&Sbuffer_name);
6181 /*defsubr (&Sbuffer_number);*/
6182 defsubr (&Sbuffer_file_name);
6183 defsubr (&Sbuffer_base_buffer);
6184 defsubr (&Sbuffer_local_value);
6185 defsubr (&Sbuffer_local_variables);
6186 defsubr (&Sbuffer_modified_p);
6187 defsubr (&Sset_buffer_modified_p);
6188 defsubr (&Sbuffer_modified_tick);
6189 defsubr (&Sbuffer_chars_modified_tick);
6190 defsubr (&Srename_buffer);
6191 defsubr (&Sother_buffer);
6192 defsubr (&Sbuffer_enable_undo);
6193 defsubr (&Skill_buffer);
6194 defsubr (&Sset_buffer_major_mode);
6195 defsubr (&Sswitch_to_buffer);
6196 defsubr (&Scurrent_buffer);
6197 defsubr (&Sset_buffer);
6198 defsubr (&Sbarf_if_buffer_read_only);
6199 defsubr (&Sbury_buffer);
6200 defsubr (&Serase_buffer);
6201 defsubr (&Sbuffer_swap_text);
6202 defsubr (&Sset_buffer_multibyte);
6203 defsubr (&Skill_all_local_variables);
6204
6205 defsubr (&Soverlayp);
6206 defsubr (&Smake_overlay);
6207 defsubr (&Sdelete_overlay);
6208 defsubr (&Smove_overlay);
6209 defsubr (&Soverlay_start);
6210 defsubr (&Soverlay_end);
6211 defsubr (&Soverlay_buffer);
6212 defsubr (&Soverlay_properties);
6213 defsubr (&Soverlays_at);
6214 defsubr (&Soverlays_in);
6215 defsubr (&Snext_overlay_change);
6216 defsubr (&Sprevious_overlay_change);
6217 defsubr (&Soverlay_recenter);
6218 defsubr (&Soverlay_lists);
6219 defsubr (&Soverlay_get);
6220 defsubr (&Soverlay_put);
6221 defsubr (&Srestore_buffer_modified_p);
6222 }
6223
6224 void
6225 keys_of_buffer (void)
6226 {
6227 initial_define_key (control_x_map, 'b', "switch-to-buffer");
6228 initial_define_key (control_x_map, 'k', "kill-buffer");
6229
6230 /* This must not be in syms_of_buffer, because Qdisabled is not
6231 initialized when that function gets called. */
6232 Fput (intern_c_string ("erase-buffer"), Qdisabled, Qt);
6233 }
6234
6235 /* arch-tag: e48569bf-69a9-4b65-a23b-8e68769436e1
6236 (do not change this comment) */