* buffer.c (Fmove_overlay): If the overlay is in no buffer and the
[bpt/emacs.git] / src / buffer.c
CommitLineData
1ab256cb 1/* Buffer manipulation primitives for GNU Emacs.
c922bc55
RM
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992, 1993
3 Free Software Foundation, Inc.
1ab256cb
RM
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
c922bc55 9the Free Software Foundation; either version 2, or (at your option)
1ab256cb
RM
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21
2381d133
JB
22#include <sys/types.h>
23#include <sys/stat.h>
1ab256cb
RM
24#include <sys/param.h>
25
26#ifndef MAXPATHLEN
27/* in 4.1, param.h fails to define this. */
28#define MAXPATHLEN 1024
29#endif /* not MAXPATHLEN */
30
1ab256cb
RM
31#include "config.h"
32#include "lisp.h"
21cf4cf8 33#include "intervals.h"
1ab256cb
RM
34#include "window.h"
35#include "commands.h"
36#include "buffer.h"
37#include "syntax.h"
38#include "indent.h"
d014bf88 39#include "blockinput.h"
1ab256cb
RM
40
41struct buffer *current_buffer; /* the current buffer */
42
43/* First buffer in chain of all buffers (in reverse order of creation).
44 Threaded through ->next. */
45
46struct buffer *all_buffers;
47
48/* This structure holds the default values of the buffer-local variables
49 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer.
50 The default value occupies the same slot in this structure
51 as an individual buffer's value occupies in that buffer.
52 Setting the default value also goes through the alist of buffers
53 and stores into each buffer that does not say it has a local value. */
54
55struct buffer buffer_defaults;
56
57/* A Lisp_Object pointer to the above, used for staticpro */
58
59static Lisp_Object Vbuffer_defaults;
60
61/* This structure marks which slots in a buffer have corresponding
62 default values in buffer_defaults.
63 Each such slot has a nonzero value in this structure.
64 The value has only one nonzero bit.
65
66 When a buffer has its own local value for a slot,
67 the bit for that slot (found in the same slot in this structure)
68 is turned on in the buffer's local_var_flags slot.
69
70 If a slot in this structure is -1, then even though there may
71 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it;
72 and the corresponding slot in buffer_defaults is not used.
73
74 If a slot is -2, then there is no DEFVAR_PER_BUFFER for it,
75 but there is a default value which is copied into each buffer.
76
77 If a slot in this structure is negative, 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
84struct 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
89struct buffer buffer_local_symbols;
90/* A Lisp_Object pointer to the above, used for staticpro */
91static Lisp_Object Vbuffer_local_symbols;
92
0fa3ba92
JB
93/* This structure holds the required types for the values in the
94 buffer-local slots. If a slot contains Qnil, then the
95 corresponding buffer slot may contain a value of any type. If a
96 slot contains an integer, then prospective values' tags must be
97 equal to that integer. When a tag does not match, the function
98 buffer_slot_type_mismatch will signal an error. */
99struct buffer buffer_local_types;
100
1ab256cb 101Lisp_Object Fset_buffer ();
01050cb5 102void set_buffer_internal ();
1ab256cb
RM
103
104/* Alist of all buffer names vs the buffers. */
105/* This used to be a variable, but is no longer,
106 to prevent lossage due to user rplac'ing this alist or its elements. */
107Lisp_Object Vbuffer_alist;
108
109/* Functions to call before and after each text change. */
110Lisp_Object Vbefore_change_function;
111Lisp_Object Vafter_change_function;
112
c48f61ef
RS
113Lisp_Object Vtransient_mark_mode;
114
dbc4e1c1
JB
115/* List of functions to call before changing an unmodified buffer. */
116Lisp_Object Vfirst_change_hook;
117Lisp_Object Qfirst_change_hook;
1ab256cb
RM
118
119Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local;
120
121Lisp_Object Qprotected_field;
122
123Lisp_Object QSFundamental; /* A string "Fundamental" */
124
125Lisp_Object Qkill_buffer_hook;
126
52f8ec73
JB
127Lisp_Object Qoverlayp;
128
1ab256cb
RM
129/* For debugging; temporary. See set_buffer_internal. */
130/* Lisp_Object Qlisp_mode, Vcheck_symbol; */
131
132nsberror (spec)
133 Lisp_Object spec;
134{
135 if (XTYPE (spec) == Lisp_String)
136 error ("No buffer named %s", XSTRING (spec)->data);
137 error ("Invalid buffer argument");
138}
139\f
140DEFUN ("buffer-list", Fbuffer_list, Sbuffer_list, 0, 0, 0,
141 "Return a list of all existing live buffers.")
142 ()
143{
144 return Fmapcar (Qcdr, Vbuffer_alist);
145}
146
147DEFUN ("get-buffer", Fget_buffer, Sget_buffer, 1, 1, 0,
148 "Return the buffer named NAME (a string).\n\
149If there is no live buffer named NAME, return nil.\n\
150NAME may also be a buffer; if so, the value is that buffer.")
151 (name)
152 register Lisp_Object name;
153{
154 if (XTYPE (name) == Lisp_Buffer)
155 return name;
156 CHECK_STRING (name, 0);
157
158 return Fcdr (Fassoc (name, Vbuffer_alist));
159}
160
161DEFUN ("get-file-buffer", Fget_file_buffer, Sget_file_buffer, 1, 1, 0,
162 "Return the buffer visiting file FILENAME (a string).\n\
163If there is no such live buffer, return nil.")
164 (filename)
165 register Lisp_Object filename;
166{
167 register Lisp_Object tail, buf, tem;
168 CHECK_STRING (filename, 0);
169 filename = Fexpand_file_name (filename, Qnil);
170
171 for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr)
172 {
173 buf = Fcdr (XCONS (tail)->car);
174 if (XTYPE (buf) != Lisp_Buffer) continue;
175 if (XTYPE (XBUFFER (buf)->filename) != Lisp_String) continue;
176 tem = Fstring_equal (XBUFFER (buf)->filename, filename);
265a9e55 177 if (!NILP (tem))
1ab256cb
RM
178 return buf;
179 }
180 return Qnil;
181}
182
183/* Incremented for each buffer created, to assign the buffer number. */
184int buffer_count;
185
186DEFUN ("get-buffer-create", Fget_buffer_create, Sget_buffer_create, 1, 1, 0,
187 "Return the buffer named NAME, or create such a buffer and return it.\n\
188A new buffer is created if there is no live buffer named NAME.\n\
b44895bc 189If NAME starts with a space, the new buffer does not keep undo information.\n\
1ab256cb
RM
190If NAME is a buffer instead of a string, then it is the value returned.\n\
191The value is never nil.")
192 (name)
193 register Lisp_Object name;
194{
195 register Lisp_Object buf, function, tem;
196 int count = specpdl_ptr - specpdl;
197 register struct buffer *b;
198
199 buf = Fget_buffer (name);
265a9e55 200 if (!NILP (buf))
1ab256cb
RM
201 return buf;
202
9ac0d9e0 203 b = (struct buffer *) xmalloc (sizeof (struct buffer));
1ab256cb
RM
204
205 BUF_GAP_SIZE (b) = 20;
9ac0d9e0 206 BLOCK_INPUT;
1ab256cb 207 BUFFER_ALLOC (BUF_BEG_ADDR (b), BUF_GAP_SIZE (b));
9ac0d9e0 208 UNBLOCK_INPUT;
1ab256cb
RM
209 if (! BUF_BEG_ADDR (b))
210 memory_full ();
211
212 BUF_PT (b) = 1;
213 BUF_GPT (b) = 1;
214 BUF_BEGV (b) = 1;
215 BUF_ZV (b) = 1;
216 BUF_Z (b) = 1;
217 BUF_MODIFF (b) = 1;
218
219 /* Put this on the chain of all buffers including killed ones. */
220 b->next = all_buffers;
221 all_buffers = b;
222
223 b->mark = Fmake_marker ();
224 /*b->number = make_number (++buffer_count);*/
225 b->name = name;
226 if (XSTRING (name)->data[0] != ' ')
227 b->undo_list = Qnil;
228 else
229 b->undo_list = Qt;
230
231 reset_buffer (b);
232
233 /* Put this in the alist of all live buffers. */
234 XSET (buf, Lisp_Buffer, b);
235 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil));
236
237 b->mark = Fmake_marker ();
238 b->markers = Qnil;
239 b->name = name;
240
241 function = buffer_defaults.major_mode;
265a9e55 242 if (NILP (function))
1ab256cb
RM
243 {
244 tem = Fget (current_buffer->major_mode, Qmode_class);
245 if (EQ (tem, Qnil))
246 function = current_buffer->major_mode;
247 }
248
265a9e55 249 if (NILP (function) || EQ (function, Qfundamental_mode))
1ab256cb
RM
250 return buf;
251
252 /* To select a nonfundamental mode,
253 select the buffer temporarily and then call the mode function. */
254
255 record_unwind_protect (save_excursion_restore, save_excursion_save ());
256
257 Fset_buffer (buf);
258 call0 (function);
259
260 return unbind_to (count, buf);
261}
262
263/* Reinitialize everything about a buffer except its name and contents. */
264
265void
266reset_buffer (b)
267 register struct buffer *b;
268{
269 b->filename = Qnil;
270 b->directory = (current_buffer) ? current_buffer->directory : Qnil;
271 b->modtime = 0;
272 b->save_modified = 1;
291026b5 273 XFASTINT (b->save_length) = 0;
1ab256cb
RM
274 b->last_window_start = 1;
275 b->backed_up = Qnil;
276 b->auto_save_modified = 0;
277 b->auto_save_file_name = Qnil;
278 b->read_only = Qnil;
2eec3b4e
RS
279 b->overlays_before = Qnil;
280 b->overlays_after = Qnil;
281 XFASTINT (b->overlay_center) = 1;
33f7013e
JA
282
283 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
284 INITIALIZE_INTERVAL (b, NULL_INTERVAL);
285
1ab256cb
RM
286 reset_buffer_local_variables(b);
287}
288
c48f61ef 289reset_buffer_local_variables (b)
1ab256cb
RM
290 register struct buffer *b;
291{
292 register int offset;
293
294 /* Reset the major mode to Fundamental, together with all the
295 things that depend on the major mode.
296 default-major-mode is handled at a higher level.
297 We ignore it here. */
298 b->major_mode = Qfundamental_mode;
299 b->keymap = Qnil;
300 b->abbrev_table = Vfundamental_mode_abbrev_table;
301 b->mode_name = QSFundamental;
302 b->minor_modes = Qnil;
303 b->downcase_table = Vascii_downcase_table;
304 b->upcase_table = Vascii_upcase_table;
305 b->case_canon_table = Vascii_downcase_table;
306 b->case_eqv_table = Vascii_upcase_table;
c48f61ef 307 b->mark_active = Qnil;
1ab256cb
RM
308#if 0
309 b->sort_table = XSTRING (Vascii_sort_table);
310 b->folding_sort_table = XSTRING (Vascii_folding_sort_table);
311#endif /* 0 */
312
313 /* Reset all per-buffer variables to their defaults. */
314 b->local_var_alist = Qnil;
315 b->local_var_flags = 0;
316
317 /* For each slot that has a default value,
318 copy that into the slot. */
319
320 for (offset = (char *)&buffer_local_flags.name - (char *)&buffer_local_flags;
321 offset < sizeof (struct buffer);
322 offset += sizeof (Lisp_Object)) /* sizeof int == sizeof Lisp_Object */
323 if (*(int *)(offset + (char *) &buffer_local_flags) > 0
324 || *(int *)(offset + (char *) &buffer_local_flags) == -2)
325 *(Lisp_Object *)(offset + (char *)b) =
326 *(Lisp_Object *)(offset + (char *)&buffer_defaults);
327}
328
01050cb5
RM
329/* We split this away from generate-new-buffer, because rename-buffer
330 and set-visited-file-name ought to be able to use this to really
331 rename the buffer properly. */
332
333DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name, Sgenerate_new_buffer_name,
1ab256cb 334 1, 1, 0,
01050cb5
RM
335 "Return a string that is the name of no existing buffer based on NAME.\n\
336If there is no live buffer named NAME, then return NAME.\n\
1ab256cb 337Otherwise modify name by appending `<NUMBER>', incrementing NUMBER\n\
01050cb5 338until an unused name is found, and then return that name.")
1ab256cb
RM
339 (name)
340 register Lisp_Object name;
341{
342 register Lisp_Object gentemp, tem;
343 int count;
344 char number[10];
345
346 CHECK_STRING (name, 0);
347
348 tem = Fget_buffer (name);
265a9e55 349 if (NILP (tem))
01050cb5 350 return name;
1ab256cb
RM
351
352 count = 1;
353 while (1)
354 {
355 sprintf (number, "<%d>", ++count);
356 gentemp = concat2 (name, build_string (number));
357 tem = Fget_buffer (gentemp);
265a9e55 358 if (NILP (tem))
01050cb5 359 return gentemp;
1ab256cb
RM
360 }
361}
362
363\f
364DEFUN ("buffer-name", Fbuffer_name, Sbuffer_name, 0, 1, 0,
365 "Return the name of BUFFER, as a string.\n\
01050cb5 366With no argument or nil as argument, return the name of the current buffer.")
1ab256cb
RM
367 (buffer)
368 register Lisp_Object buffer;
369{
265a9e55 370 if (NILP (buffer))
1ab256cb
RM
371 return current_buffer->name;
372 CHECK_BUFFER (buffer, 0);
373 return XBUFFER (buffer)->name;
374}
375
376DEFUN ("buffer-file-name", Fbuffer_file_name, Sbuffer_file_name, 0, 1, 0,
377 "Return name of file BUFFER is visiting, or nil if none.\n\
378No argument or nil as argument means use the current buffer.")
379 (buffer)
380 register Lisp_Object buffer;
381{
265a9e55 382 if (NILP (buffer))
1ab256cb
RM
383 return current_buffer->filename;
384 CHECK_BUFFER (buffer, 0);
385 return XBUFFER (buffer)->filename;
386}
387
388DEFUN ("buffer-local-variables", Fbuffer_local_variables,
389 Sbuffer_local_variables, 0, 1, 0,
390 "Return an alist of variables that are buffer-local in BUFFER.\n\
391Each element looks like (SYMBOL . VALUE) and describes one variable.\n\
392Note that storing new VALUEs in these elements doesn't change the variables.\n\
393No argument or nil as argument means use current buffer as BUFFER.")
394 (buffer)
395 register Lisp_Object buffer;
396{
397 register struct buffer *buf;
398 register Lisp_Object val;
399
265a9e55 400 if (NILP (buffer))
1ab256cb
RM
401 buf = current_buffer;
402 else
403 {
404 CHECK_BUFFER (buffer, 0);
405 buf = XBUFFER (buffer);
406 }
407
408 {
409 /* Reference each variable in the alist in our current buffer.
410 If inquiring about the current buffer, this gets the current values,
411 so store them into the alist so the alist is up to date.
412 If inquiring about some other buffer, this swaps out any values
413 for that buffer, making the alist up to date automatically. */
414 register Lisp_Object tem;
415 for (tem = buf->local_var_alist; CONSP (tem); tem = XCONS (tem)->cdr)
416 {
417 Lisp_Object v1 = Fsymbol_value (XCONS (XCONS (tem)->car)->car);
418 if (buf == current_buffer)
419 XCONS (XCONS (tem)->car)->cdr = v1;
420 }
421 }
422
423 /* Make a copy of the alist, to return it. */
424 val = Fcopy_alist (buf->local_var_alist);
425
426 /* Add on all the variables stored in special slots. */
427 {
428 register int offset, mask;
429
430 for (offset = (char *)&buffer_local_symbols.name - (char *)&buffer_local_symbols;
431 offset < sizeof (struct buffer);
432 offset += (sizeof (int))) /* sizeof int == sizeof Lisp_Object */
433 {
434 mask = *(int *)(offset + (char *) &buffer_local_flags);
435 if (mask == -1 || (buf->local_var_flags & mask))
436 if (XTYPE (*(Lisp_Object *)(offset + (char *)&buffer_local_symbols))
437 == Lisp_Symbol)
438 val = Fcons (Fcons (*(Lisp_Object *)(offset + (char *)&buffer_local_symbols),
439 *(Lisp_Object *)(offset + (char *)buf)),
440 val);
441 }
442 }
443 return (val);
444}
445
446\f
447DEFUN ("buffer-modified-p", Fbuffer_modified_p, Sbuffer_modified_p,
448 0, 1, 0,
449 "Return t if BUFFER was modified since its file was last read or saved.\n\
450No argument or nil as argument means use current buffer as BUFFER.")
451 (buffer)
452 register Lisp_Object buffer;
453{
454 register struct buffer *buf;
265a9e55 455 if (NILP (buffer))
1ab256cb
RM
456 buf = current_buffer;
457 else
458 {
459 CHECK_BUFFER (buffer, 0);
460 buf = XBUFFER (buffer);
461 }
462
463 return buf->save_modified < BUF_MODIFF (buf) ? Qt : Qnil;
464}
465
466DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p, Sset_buffer_modified_p,
467 1, 1, 0,
468 "Mark current buffer as modified or unmodified according to FLAG.\n\
469A non-nil FLAG means mark the buffer modified.")
470 (flag)
471 register Lisp_Object flag;
472{
473 register int already;
474 register Lisp_Object fn;
475
476#ifdef CLASH_DETECTION
477 /* If buffer becoming modified, lock the file.
478 If buffer becoming unmodified, unlock the file. */
479
480 fn = current_buffer->filename;
265a9e55 481 if (!NILP (fn))
1ab256cb
RM
482 {
483 already = current_buffer->save_modified < MODIFF;
265a9e55 484 if (!already && !NILP (flag))
1ab256cb 485 lock_file (fn);
265a9e55 486 else if (already && NILP (flag))
1ab256cb
RM
487 unlock_file (fn);
488 }
489#endif /* CLASH_DETECTION */
490
265a9e55 491 current_buffer->save_modified = NILP (flag) ? MODIFF : 0;
1ab256cb
RM
492 update_mode_lines++;
493 return flag;
494}
495
496DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick,
497 0, 1, 0,
498 "Return BUFFER's tick counter, incremented for each change in text.\n\
499Each buffer has a tick counter which is incremented each time the text in\n\
500that buffer is changed. It wraps around occasionally.\n\
501No argument or nil as argument means use current buffer as BUFFER.")
502 (buffer)
503 register Lisp_Object buffer;
504{
505 register struct buffer *buf;
265a9e55 506 if (NILP (buffer))
1ab256cb
RM
507 buf = current_buffer;
508 else
509 {
510 CHECK_BUFFER (buffer, 0);
511 buf = XBUFFER (buffer);
512 }
513
514 return make_number (BUF_MODIFF (buf));
515}
516\f
01050cb5 517DEFUN ("rename-buffer", Frename_buffer, Srename_buffer, 1, 2,
3bd779aa 518 "sRename buffer (to new name): \nP",
1ab256cb 519 "Change current buffer's name to NEWNAME (a string).\n\
3bd779aa 520If second arg UNIQUE is nil or omitted, it is an error if a\n\
01050cb5 521buffer named NEWNAME already exists.\n\
3bd779aa 522If UNIQUE is non-nil, come up with a new name using\n\
01050cb5 523`generate-new-buffer-name'.\n\
3bd779aa
RS
524Interactively, you can set UNIQUE with a prefix argument.\n\
525We return the name we actually gave the buffer.\n\
1ab256cb 526This does not change the name of the visited file (if any).")
3bd779aa
RS
527 (name, unique)
528 register Lisp_Object name, unique;
1ab256cb
RM
529{
530 register Lisp_Object tem, buf;
531
532 CHECK_STRING (name, 0);
533 tem = Fget_buffer (name);
01050cb5
RM
534 if (XBUFFER (tem) == current_buffer)
535 return current_buffer->name;
265a9e55 536 if (!NILP (tem))
01050cb5 537 {
3bd779aa 538 if (!NILP (unique))
01050cb5
RM
539 name = Fgenerate_new_buffer_name (name);
540 else
541 error ("Buffer name \"%s\" is in use", XSTRING (name)->data);
542 }
1ab256cb
RM
543
544 current_buffer->name = name;
76f590d7
JB
545
546 /* Catch redisplay's attention. Unless we do this, the mode lines for
547 any windows displaying current_buffer will stay unchanged. */
548 update_mode_lines++;
549
1ab256cb
RM
550 XSET (buf, Lisp_Buffer, current_buffer);
551 Fsetcar (Frassq (buf, Vbuffer_alist), name);
265a9e55 552 if (NILP (current_buffer->filename) && !NILP (current_buffer->auto_save_file_name))
1ab256cb 553 call0 (intern ("rename-auto-save-file"));
01050cb5 554 return name;
1ab256cb
RM
555}
556
a0ebb746 557DEFUN ("other-buffer", Fother_buffer, Sother_buffer, 0, 2, 0,
1ab256cb 558 "Return most recently selected buffer other than BUFFER.\n\
a0ebb746
JB
559Buffers not visible in windows are preferred to visible buffers,\n\
560unless optional second argument VISIBLE-OK is non-nil.\n\
1ab256cb
RM
561If no other buffer exists, the buffer `*scratch*' is returned.\n\
562If BUFFER is omitted or nil, some interesting buffer is returned.")
a0ebb746
JB
563 (buffer, visible_ok)
564 register Lisp_Object buffer, visible_ok;
1ab256cb
RM
565{
566 register Lisp_Object tail, buf, notsogood, tem;
567 notsogood = Qnil;
568
265a9e55 569 for (tail = Vbuffer_alist; !NILP (tail); tail = Fcdr (tail))
1ab256cb
RM
570 {
571 buf = Fcdr (Fcar (tail));
572 if (EQ (buf, buffer))
573 continue;
574 if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ')
575 continue;
a0ebb746
JB
576 if (NILP (visible_ok))
577 tem = Fget_buffer_window (buf, Qnil);
578 else
579 tem = Qnil;
265a9e55 580 if (NILP (tem))
1ab256cb 581 return buf;
265a9e55 582 if (NILP (notsogood))
1ab256cb
RM
583 notsogood = buf;
584 }
265a9e55 585 if (!NILP (notsogood))
1ab256cb
RM
586 return notsogood;
587 return Fget_buffer_create (build_string ("*scratch*"));
588}
589\f
590DEFUN ("buffer-disable-undo", Fbuffer_disable_undo, Sbuffer_disable_undo, 1,1,
5910,
592 "Make BUFFER stop keeping undo information.")
ffd56f97
JB
593 (buffer)
594 register Lisp_Object buffer;
1ab256cb 595{
ffd56f97
JB
596 Lisp_Object real_buffer;
597
598 if (NILP (buffer))
599 XSET (real_buffer, Lisp_Buffer, current_buffer);
600 else
601 {
602 real_buffer = Fget_buffer (buffer);
603 if (NILP (real_buffer))
604 nsberror (buffer);
605 }
606
607 XBUFFER (real_buffer)->undo_list = Qt;
608
1ab256cb
RM
609 return Qnil;
610}
611
612DEFUN ("buffer-enable-undo", Fbuffer_enable_undo, Sbuffer_enable_undo,
613 0, 1, "",
614 "Start keeping undo information for buffer BUFFER.\n\
615No argument or nil as argument means do this for the current buffer.")
ffd56f97
JB
616 (buffer)
617 register Lisp_Object buffer;
1ab256cb 618{
ffd56f97 619 Lisp_Object real_buffer;
1ab256cb 620
ffd56f97
JB
621 if (NILP (buffer))
622 XSET (real_buffer, Lisp_Buffer, current_buffer);
1ab256cb
RM
623 else
624 {
ffd56f97
JB
625 real_buffer = Fget_buffer (buffer);
626 if (NILP (real_buffer))
627 nsberror (buffer);
1ab256cb
RM
628 }
629
ffd56f97
JB
630 if (EQ (XBUFFER (real_buffer)->undo_list, Qt))
631 XBUFFER (real_buffer)->undo_list = Qnil;
1ab256cb
RM
632
633 return Qnil;
634}
635
636/*
637 DEFVAR_LISP ("kill-buffer-hook", no_cell, "\
638Hook to be run (by `run-hooks', which see) when a buffer is killed.\n\
639The buffer being killed will be current while the hook is running.\n\
640See `kill-buffer'."
641 */
642DEFUN ("kill-buffer", Fkill_buffer, Skill_buffer, 1, 1, "bKill buffer: ",
643 "Kill the buffer BUFFER.\n\
644The argument may be a buffer or may be the name of a buffer.\n\
645An argument of nil means kill the current buffer.\n\n\
646Value is t if the buffer is actually killed, nil if user says no.\n\n\
647The value of `kill-buffer-hook' (which may be local to that buffer),\n\
648if not void, is a list of functions to be called, with no arguments,\n\
649before the buffer is actually killed. The buffer to be killed is current\n\
650when the hook functions are called.\n\n\
651Any processes that have this buffer as the `process-buffer' are killed\n\
652with `delete-process'.")
653 (bufname)
654 Lisp_Object bufname;
655{
656 Lisp_Object buf;
657 register struct buffer *b;
658 register Lisp_Object tem;
659 register struct Lisp_Marker *m;
660 struct gcpro gcpro1, gcpro2;
661
265a9e55 662 if (NILP (bufname))
1ab256cb
RM
663 buf = Fcurrent_buffer ();
664 else
665 buf = Fget_buffer (bufname);
265a9e55 666 if (NILP (buf))
1ab256cb
RM
667 nsberror (bufname);
668
669 b = XBUFFER (buf);
670
671 /* Query if the buffer is still modified. */
265a9e55 672 if (INTERACTIVE && !NILP (b->filename)
1ab256cb
RM
673 && BUF_MODIFF (b) > b->save_modified)
674 {
675 GCPRO2 (buf, bufname);
676 tem = do_yes_or_no_p (format1 ("Buffer %s modified; kill anyway? ",
677 XSTRING (b->name)->data));
678 UNGCPRO;
265a9e55 679 if (NILP (tem))
1ab256cb
RM
680 return Qnil;
681 }
682
683 /* Run kill-buffer hook with the buffer to be killed the current buffer. */
684 {
685 register Lisp_Object val;
686 int count = specpdl_ptr - specpdl;
687
688 record_unwind_protect (save_excursion_restore, save_excursion_save ());
689 set_buffer_internal (b);
690 call1 (Vrun_hooks, Qkill_buffer_hook);
691 unbind_to (count, Qnil);
692 }
693
694 /* We have no more questions to ask. Verify that it is valid
695 to kill the buffer. This must be done after the questions
696 since anything can happen within do_yes_or_no_p. */
697
698 /* Don't kill the minibuffer now current. */
699 if (EQ (buf, XWINDOW (minibuf_window)->buffer))
700 return Qnil;
701
265a9e55 702 if (NILP (b->name))
1ab256cb
RM
703 return Qnil;
704
705 /* Make this buffer not be current.
706 In the process, notice if this is the sole visible buffer
707 and give up if so. */
708 if (b == current_buffer)
709 {
172a9c1f 710 tem = Fother_buffer (buf, Qnil);
1ab256cb
RM
711 Fset_buffer (tem);
712 if (b == current_buffer)
713 return Qnil;
714 }
715
716 /* Now there is no question: we can kill the buffer. */
717
718#ifdef CLASH_DETECTION
719 /* Unlock this buffer's file, if it is locked. */
720 unlock_buffer (b);
721#endif /* CLASH_DETECTION */
722
1ab256cb 723 kill_buffer_processes (buf);
1ab256cb
RM
724
725 tem = Vinhibit_quit;
726 Vinhibit_quit = Qt;
727 Vbuffer_alist = Fdelq (Frassq (buf, Vbuffer_alist), Vbuffer_alist);
728 Freplace_buffer_in_windows (buf);
729 Vinhibit_quit = tem;
730
731 /* Delete any auto-save file. */
732 if (XTYPE (b->auto_save_file_name) == Lisp_String)
733 {
734 Lisp_Object tem;
735 tem = Fsymbol_value (intern ("delete-auto-save-files"));
265a9e55 736 if (! NILP (tem))
1ab256cb
RM
737 unlink (XSTRING (b->auto_save_file_name)->data);
738 }
739
740 /* Unchain all markers of this buffer
741 and leave them pointing nowhere. */
742 for (tem = b->markers; !EQ (tem, Qnil); )
743 {
744 m = XMARKER (tem);
745 m->buffer = 0;
746 tem = m->chain;
747 m->chain = Qnil;
748 }
749 b->markers = Qnil;
750
33f7013e
JA
751 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
752 INITIALIZE_INTERVAL (b, NULL_INTERVAL);
753 /* Perhaps we should explicitly free the interval tree here... */
754
1ab256cb 755 b->name = Qnil;
9ac0d9e0 756 BLOCK_INPUT;
1ab256cb 757 BUFFER_FREE (BUF_BEG_ADDR (b));
9ac0d9e0 758 UNBLOCK_INPUT;
1ab256cb
RM
759 b->undo_list = Qnil;
760
761 return Qt;
762}
763\f
36a8c287
JB
764/* Move the assoc for buffer BUF to the front of buffer-alist. Since
765 we do this each time BUF is selected visibly, the more recently
766 selected buffers are always closer to the front of the list. This
767 means that other_buffer is more likely to choose a relevant buffer. */
1ab256cb
RM
768
769record_buffer (buf)
770 Lisp_Object buf;
771{
772 register Lisp_Object link, prev;
773
774 prev = Qnil;
775 for (link = Vbuffer_alist; CONSP (link); link = XCONS (link)->cdr)
776 {
777 if (EQ (XCONS (XCONS (link)->car)->cdr, buf))
778 break;
779 prev = link;
780 }
781
36a8c287
JB
782 /* Effectively do Vbuffer_alist = Fdelq (link, Vbuffer_alist);
783 we cannot use Fdelq itself here because it allows quitting. */
1ab256cb 784
265a9e55 785 if (NILP (prev))
1ab256cb
RM
786 Vbuffer_alist = XCONS (Vbuffer_alist)->cdr;
787 else
788 XCONS (prev)->cdr = XCONS (XCONS (prev)->cdr)->cdr;
789
790 XCONS(link)->cdr = Vbuffer_alist;
791 Vbuffer_alist = link;
792}
793
794DEFUN ("switch-to-buffer", Fswitch_to_buffer, Sswitch_to_buffer, 1, 2, "BSwitch to buffer: ",
795 "Select buffer BUFFER in the current window.\n\
796BUFFER may be a buffer or a buffer name.\n\
797Optional second arg NORECORD non-nil means\n\
798do not put this buffer at the front of the list of recently selected ones.\n\
799\n\
800WARNING: This is NOT the way to work on another buffer temporarily\n\
801within a Lisp program! Use `set-buffer' instead. That avoids messing with\n\
802the window-buffer correspondences.")
803 (bufname, norecord)
804 Lisp_Object bufname, norecord;
805{
806 register Lisp_Object buf;
807 Lisp_Object tem;
808
809 if (EQ (minibuf_window, selected_window))
810 error ("Cannot switch buffers in minibuffer window");
811 tem = Fwindow_dedicated_p (selected_window);
265a9e55 812 if (!NILP (tem))
1ab256cb
RM
813 error ("Cannot switch buffers in a dedicated window");
814
265a9e55 815 if (NILP (bufname))
172a9c1f 816 buf = Fother_buffer (Fcurrent_buffer (), Qnil);
1ab256cb
RM
817 else
818 buf = Fget_buffer_create (bufname);
819 Fset_buffer (buf);
265a9e55 820 if (NILP (norecord))
1ab256cb
RM
821 record_buffer (buf);
822
823 Fset_window_buffer (EQ (selected_window, minibuf_window)
5fcd022d
JB
824 ? Fnext_window (minibuf_window, Qnil, Qnil)
825 : selected_window,
1ab256cb
RM
826 buf);
827
828 return Qnil;
829}
830
831DEFUN ("pop-to-buffer", Fpop_to_buffer, Spop_to_buffer, 1, 2, 0,
832 "Select buffer BUFFER in some window, preferably a different one.\n\
833If BUFFER is nil, then some other buffer is chosen.\n\
834If `pop-up-windows' is non-nil, windows can be split to do this.\n\
835If optional second arg OTHER-WINDOW is non-nil, insist on finding another\n\
836window even if BUFFER is already visible in the selected window.")
837 (bufname, other)
838 Lisp_Object bufname, other;
839{
840 register Lisp_Object buf;
265a9e55 841 if (NILP (bufname))
172a9c1f 842 buf = Fother_buffer (Fcurrent_buffer (), Qnil);
1ab256cb
RM
843 else
844 buf = Fget_buffer_create (bufname);
845 Fset_buffer (buf);
846 record_buffer (buf);
847 Fselect_window (Fdisplay_buffer (buf, other));
848 return Qnil;
849}
850
851DEFUN ("current-buffer", Fcurrent_buffer, Scurrent_buffer, 0, 0, 0,
852 "Return the current buffer as a Lisp object.")
853 ()
854{
855 register Lisp_Object buf;
856 XSET (buf, Lisp_Buffer, current_buffer);
857 return buf;
858}
859\f
860/* Set the current buffer to b */
861
862void
863set_buffer_internal (b)
864 register struct buffer *b;
865{
866 register struct buffer *old_buf;
867 register Lisp_Object tail, valcontents;
868 enum Lisp_Type tem;
869
870 if (current_buffer == b)
871 return;
872
873 windows_or_buffers_changed = 1;
874 old_buf = current_buffer;
875 current_buffer = b;
876 last_known_column_point = -1; /* invalidate indentation cache */
877
878 /* Look down buffer's list of local Lisp variables
879 to find and update any that forward into C variables. */
880
265a9e55 881 for (tail = b->local_var_alist; !NILP (tail); tail = XCONS (tail)->cdr)
1ab256cb
RM
882 {
883 valcontents = XSYMBOL (XCONS (XCONS (tail)->car)->car)->value;
884 if ((XTYPE (valcontents) == Lisp_Buffer_Local_Value
885 || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value)
886 && (tem = XTYPE (XCONS (valcontents)->car),
887 (tem == Lisp_Boolfwd || tem == Lisp_Intfwd
888 || tem == Lisp_Objfwd)))
889 /* Just reference the variable
890 to cause it to become set for this buffer. */
891 Fsymbol_value (XCONS (XCONS (tail)->car)->car);
892 }
893
894 /* Do the same with any others that were local to the previous buffer */
895
896 if (old_buf)
265a9e55 897 for (tail = old_buf->local_var_alist; !NILP (tail); tail = XCONS (tail)->cdr)
1ab256cb
RM
898 {
899 valcontents = XSYMBOL (XCONS (XCONS (tail)->car)->car)->value;
900 if ((XTYPE (valcontents) == Lisp_Buffer_Local_Value
901 || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value)
902 && (tem = XTYPE (XCONS (valcontents)->car),
903 (tem == Lisp_Boolfwd || tem == Lisp_Intfwd
904 || tem == Lisp_Objfwd)))
905 /* Just reference the variable
906 to cause it to become set for this buffer. */
907 Fsymbol_value (XCONS (XCONS (tail)->car)->car);
908 }
909}
910
911DEFUN ("set-buffer", Fset_buffer, Sset_buffer, 1, 1, 0,
912 "Make the buffer BUFFER current for editing operations.\n\
913BUFFER may be a buffer or the name of an existing buffer.\n\
914See also `save-excursion' when you want to make a buffer current temporarily.\n\
915This function does not display the buffer, so its effect ends\n\
916when the current command terminates.\n\
917Use `switch-to-buffer' or `pop-to-buffer' to switch buffers permanently.")
918 (bufname)
919 register Lisp_Object bufname;
920{
921 register Lisp_Object buffer;
922 buffer = Fget_buffer (bufname);
265a9e55 923 if (NILP (buffer))
1ab256cb 924 nsberror (bufname);
265a9e55 925 if (NILP (XBUFFER (buffer)->name))
1ab256cb
RM
926 error ("Selecting deleted buffer");
927 set_buffer_internal (XBUFFER (buffer));
928 return buffer;
929}
930\f
931DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only,
932 Sbarf_if_buffer_read_only, 0, 0, 0,
933 "Signal a `buffer-read-only' error if the current buffer is read-only.")
934 ()
935{
265a9e55 936 while (!NILP (current_buffer->read_only))
1ab256cb
RM
937 Fsignal (Qbuffer_read_only, (Fcons (Fcurrent_buffer (), Qnil)));
938 return Qnil;
939}
940
941DEFUN ("bury-buffer", Fbury_buffer, Sbury_buffer, 0, 1, "",
942 "Put BUFFER at the end of the list of all buffers.\n\
943There it is the least likely candidate for `other-buffer' to return;\n\
528415e7 944thus, the least likely buffer for \\[switch-to-buffer] to select by default.\n\
a5611885
JB
945If BUFFER is nil or omitted, bury the current buffer.\n\
946Also, if BUFFER is nil or omitted, remove the current buffer from the\n\
947selected window if it is displayed there.")
1ab256cb
RM
948 (buf)
949 register Lisp_Object buf;
950{
b271272a 951 /* Figure out what buffer we're going to bury. */
265a9e55 952 if (NILP (buf))
a5611885
JB
953 {
954 XSET (buf, Lisp_Buffer, current_buffer);
955
956 /* If we're burying the current buffer, unshow it. */
5fcd022d 957 Fswitch_to_buffer (Fother_buffer (buf, Qnil), Qnil);
a5611885 958 }
1ab256cb
RM
959 else
960 {
961 Lisp_Object buf1;
962
963 buf1 = Fget_buffer (buf);
265a9e55 964 if (NILP (buf1))
1ab256cb
RM
965 nsberror (buf);
966 buf = buf1;
b271272a
JB
967 }
968
a5611885 969 /* Move buf to the end of the buffer list. */
b271272a
JB
970 {
971 register Lisp_Object aelt, link;
972
973 aelt = Frassq (buf, Vbuffer_alist);
974 link = Fmemq (aelt, Vbuffer_alist);
975 Vbuffer_alist = Fdelq (aelt, Vbuffer_alist);
976 XCONS (link)->cdr = Qnil;
977 Vbuffer_alist = nconc2 (Vbuffer_alist, link);
978 }
1ab256cb 979
1ab256cb
RM
980 return Qnil;
981}
982\f
c922bc55 983DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*",
1ab256cb 984 "Delete the entire contents of the current buffer.\n\
a5611885 985Any clipping restriction in effect (see `narrow-to-region') is removed,\n\
1ab256cb
RM
986so the buffer is truly empty after this.")
987 ()
988{
989 Fwiden ();
990 del_range (BEG, Z);
991 current_buffer->last_window_start = 1;
992 /* Prevent warnings, or suspension of auto saving, that would happen
993 if future size is less than past size. Use of erase-buffer
994 implies that the future text is not really related to the past text. */
995 XFASTINT (current_buffer->save_length) = 0;
996 return Qnil;
997}
998
999validate_region (b, e)
1000 register Lisp_Object *b, *e;
1001{
1002 register int i;
1003
1004 CHECK_NUMBER_COERCE_MARKER (*b, 0);
1005 CHECK_NUMBER_COERCE_MARKER (*e, 1);
1006
1007 if (XINT (*b) > XINT (*e))
1008 {
1009 i = XFASTINT (*b); /* This is legit even if *b is < 0 */
1010 *b = *e;
1011 XFASTINT (*e) = i; /* because this is all we do with i. */
1012 }
1013
1014 if (!(BEGV <= XINT (*b) && XINT (*b) <= XINT (*e)
1015 && XINT (*e) <= ZV))
1016 args_out_of_range (*b, *e);
1017}
1018\f
1019Lisp_Object
1020list_buffers_1 (files)
1021 Lisp_Object files;
1022{
1023 register Lisp_Object tail, tem, buf;
1024 Lisp_Object col1, col2, col3, minspace;
1025 register struct buffer *old = current_buffer, *b;
1026 int desired_point = 0;
1027 Lisp_Object other_file_symbol;
1028
1029 other_file_symbol = intern ("list-buffers-directory");
1030
1031 XFASTINT (col1) = 19;
1032 XFASTINT (col2) = 25;
1033 XFASTINT (col3) = 40;
1034 XFASTINT (minspace) = 1;
1035
1036 Fset_buffer (Vstandard_output);
1037
1038 tail = intern ("Buffer-menu-mode");
1039 if (!EQ (tail, current_buffer->major_mode)
265a9e55 1040 && (tem = Ffboundp (tail), !NILP (tem)))
1ab256cb
RM
1041 call0 (tail);
1042 Fbuffer_disable_undo (Vstandard_output);
1043 current_buffer->read_only = Qnil;
1044
1045 write_string ("\
1046 MR Buffer Size Mode File\n\
1047 -- ------ ---- ---- ----\n", -1);
1048
265a9e55 1049 for (tail = Vbuffer_alist; !NILP (tail); tail = Fcdr (tail))
1ab256cb
RM
1050 {
1051 buf = Fcdr (Fcar (tail));
1052 b = XBUFFER (buf);
1053 /* Don't mention the minibuffers. */
1054 if (XSTRING (b->name)->data[0] == ' ')
1055 continue;
1056 /* Optionally don't mention buffers that lack files. */
265a9e55 1057 if (!NILP (files) && NILP (b->filename))
1ab256cb
RM
1058 continue;
1059 /* Identify the current buffer. */
1060 if (b == old)
1061 desired_point = point;
1062 write_string (b == old ? "." : " ", -1);
1063 /* Identify modified buffers */
1064 write_string (BUF_MODIFF (b) > b->save_modified ? "*" : " ", -1);
265a9e55 1065 write_string (NILP (b->read_only) ? " " : "% ", -1);
1ab256cb
RM
1066 Fprinc (b->name, Qnil);
1067 Findent_to (col1, make_number (2));
1068 XFASTINT (tem) = BUF_Z (b) - BUF_BEG (b);
1069 Fprin1 (tem, Qnil);
1070 Findent_to (col2, minspace);
1071 Fprinc (b->mode_name, Qnil);
1072 Findent_to (col3, minspace);
1073
265a9e55 1074 if (!NILP (b->filename))
1ab256cb
RM
1075 Fprinc (b->filename, Qnil);
1076 else
1077 {
1078 /* No visited file; check local value of list-buffers-directory. */
1079 Lisp_Object tem;
1080 set_buffer_internal (b);
1081 tem = Fboundp (other_file_symbol);
265a9e55 1082 if (!NILP (tem))
1ab256cb
RM
1083 {
1084 tem = Fsymbol_value (other_file_symbol);
1085 Fset_buffer (Vstandard_output);
1086 if (XTYPE (tem) == Lisp_String)
1087 Fprinc (tem, Qnil);
1088 }
1089 else
1090 Fset_buffer (Vstandard_output);
1091 }
1092 write_string ("\n", -1);
1093 }
1094
1095 current_buffer->read_only = Qt;
1096 set_buffer_internal (old);
1097/* Foo. This doesn't work since temp_output_buffer_show sets point to 1
1098 if (desired_point)
1099 XBUFFER (Vstandard_output)->text.pointloc = desired_point;
1100 */
1101 return Qnil;
1102}
1103
1104DEFUN ("list-buffers", Flist_buffers, Slist_buffers, 0, 1, "P",
1105 "Display a list of names of existing buffers.\n\
1106The list is displayed in a buffer named `*Buffer List*'.\n\
1107Note that buffers with names starting with spaces are omitted.\n\
1108Non-null optional arg FILES-ONLY means mention only file buffers.\n\
1109\n\
1110The M column contains a * for buffers that are modified.\n\
1111The R column contains a % for buffers that are read-only.")
1112 (files)
1113 Lisp_Object files;
1114{
1115 internal_with_output_to_temp_buffer ("*Buffer List*",
1116 list_buffers_1, files);
1117 return Qnil;
1118}
1119
1120DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables,
1121 0, 0, 0,
1122 "Switch to Fundamental mode by killing current buffer's local variables.\n\
1123Most local variable bindings are eliminated so that the default values\n\
1124become effective once more. Also, the syntax table is set from\n\
1125`standard-syntax-table', the local keymap is set to nil,\n\
1126and the abbrev table from `fundamental-mode-abbrev-table'.\n\
1127This function also forces redisplay of the mode line.\n\
1128\n\
1129Every function to select a new major mode starts by\n\
1130calling this function.\n\n\
1131As a special exception, local variables whose names have\n\
1132a non-nil `permanent-local' property are not eliminated by this function.")
1133 ()
1134{
1135 register Lisp_Object alist, sym, tem;
1136 Lisp_Object oalist;
1137 oalist = current_buffer->local_var_alist;
1138
1139 /* Make sure no local variables remain set up with this buffer
1140 for their current values. */
1141
265a9e55 1142 for (alist = oalist; !NILP (alist); alist = XCONS (alist)->cdr)
1ab256cb
RM
1143 {
1144 sym = XCONS (XCONS (alist)->car)->car;
1145
1146 /* Need not do anything if some other buffer's binding is now encached. */
1147 tem = XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->car;
1148 if (XBUFFER (tem) == current_buffer)
1149 {
1150 /* Symbol is set up for this buffer's old local value.
1151 Set it up for the current buffer with the default value. */
1152
1153 tem = XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->cdr;
542143d7
RS
1154 /* Store the symbol's current value into the alist entry
1155 it is currently set up for. This is so that, if the
1156 local is marked permanent, and we make it local again below,
1157 we don't lose the value. */
1158 XCONS (XCONS (tem)->car)->cdr = XCONS (XSYMBOL (sym)->value)->car;
1159 /* Switch to the symbol's default-value alist entry. */
1ab256cb 1160 XCONS (tem)->car = tem;
542143d7 1161 /* Mark it as current for the current buffer. */
1ab256cb 1162 XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->car = Fcurrent_buffer ();
542143d7 1163 /* Store the current value into any forwarding in the symbol. */
1ab256cb
RM
1164 store_symval_forwarding (sym, XCONS (XSYMBOL (sym)->value)->car,
1165 XCONS (tem)->cdr);
1166 }
1167 }
1168
1169 /* Actually eliminate all local bindings of this buffer. */
1170
1171 reset_buffer_local_variables (current_buffer);
1172
1173 /* Redisplay mode lines; we are changing major mode. */
1174
1175 update_mode_lines++;
1176
1177 /* Any which are supposed to be permanent,
1178 make local again, with the same values they had. */
1179
265a9e55 1180 for (alist = oalist; !NILP (alist); alist = XCONS (alist)->cdr)
1ab256cb
RM
1181 {
1182 sym = XCONS (XCONS (alist)->car)->car;
1183 tem = Fget (sym, Qpermanent_local);
265a9e55 1184 if (! NILP (tem))
01050cb5
RM
1185 {
1186 Fmake_local_variable (sym);
1187 Fset (sym, XCONS (XCONS (alist)->car)->cdr);
1188 }
1ab256cb
RM
1189 }
1190
1191 /* Force mode-line redisplay. Useful here because all major mode
1192 commands call this function. */
1193 update_mode_lines++;
1194
1195 return Qnil;
1196}
1197\f
2eec3b4e
RS
1198/* Find all the overlays in the current buffer that contain position POS.
1199 Return the number found, and store them in a vector in *VEC_PTR.
1200 Store in *LEN_PTR the size allocated for the vector.
52f8ec73
JB
1201 Store in *NEXT_PTR the next position after POS where an overlay starts,
1202 or ZV if there are no more overlays.
2eec3b4e
RS
1203
1204 *VEC_PTR and *LEN_PTR should contain a valid vector and size
1205 when this function is called. */
1206
1207int
1208overlays_at (pos, vec_ptr, len_ptr, next_ptr)
1209 int pos;
1210 Lisp_Object **vec_ptr;
1211 int *len_ptr;
1212 int *next_ptr;
1ab256cb 1213{
2eec3b4e
RS
1214 Lisp_Object tail, overlay, start, end, result;
1215 int idx = 0;
1216 int len = *len_ptr;
1217 Lisp_Object *vec = *vec_ptr;
1218 int next = ZV;
2eec3b4e
RS
1219 for (tail = current_buffer->overlays_before;
1220 CONSP (tail);
1221 tail = XCONS (tail)->cdr)
1222 {
52f8ec73
JB
1223 int startpos;
1224
2eec3b4e
RS
1225 overlay = XCONS (tail)->car;
1226 if (! OVERLAY_VALID (overlay))
52f8ec73 1227 abort ();
1ab256cb 1228
2eec3b4e
RS
1229 start = OVERLAY_START (overlay);
1230 end = OVERLAY_END (overlay);
1231 if (OVERLAY_POSITION (end) <= pos)
1232 break;
1233 startpos = OVERLAY_POSITION (start);
1234 if (startpos <= pos)
1235 {
1236 if (idx == len)
1237 {
1238 *len_ptr = len *= 2;
1239 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
1240 *vec_ptr = vec;
1241 }
1242 vec[idx++] = overlay;
1243 }
1244 else if (startpos < next)
1245 next = startpos;
1246 }
1247
1248 for (tail = current_buffer->overlays_after;
1249 CONSP (tail);
1250 tail = XCONS (tail)->cdr)
1ab256cb 1251 {
52f8ec73
JB
1252 int startpos;
1253
2eec3b4e
RS
1254 overlay = XCONS (tail)->car;
1255 if (! OVERLAY_VALID (overlay))
52f8ec73 1256 abort ();
2eec3b4e
RS
1257
1258 start = OVERLAY_START (overlay);
1259 end = OVERLAY_END (overlay);
1260 startpos = OVERLAY_POSITION (start);
52f8ec73 1261 if (pos < startpos)
2eec3b4e
RS
1262 {
1263 if (startpos < next)
1264 next = startpos;
1265 break;
1266 }
52f8ec73 1267 if (pos < OVERLAY_POSITION (end))
2eec3b4e
RS
1268 {
1269 if (idx == len)
1270 {
1271 *len_ptr = len *= 2;
1272 vec = (Lisp_Object *) xrealloc (vec, len * sizeof (Lisp_Object));
1273 *vec_ptr = vec;
1274 }
1275 vec[idx++] = overlay;
1276 }
1ab256cb
RM
1277 }
1278
2eec3b4e
RS
1279 *next_ptr = next;
1280 return idx;
1281}
1282\f
5c4f68f1 1283/* Shift overlays in BUF's overlay lists, to center the lists at POS. */
1ab256cb 1284
2eec3b4e 1285void
5c4f68f1
JB
1286recenter_overlay_lists (buf, pos)
1287 struct buffer *buf;
2eec3b4e
RS
1288 int pos;
1289{
1290 Lisp_Object overlay, tail, next, prev, beg, end;
1291
1292 /* See if anything in overlays_before should move to overlays_after. */
1293
1294 /* We don't strictly need prev in this loop; it should always be nil.
1295 But we use it for symmetry and in case that should cease to be true
1296 with some future change. */
1297 prev = Qnil;
5c4f68f1 1298 for (tail = buf->overlays_before;
2eec3b4e
RS
1299 CONSP (tail);
1300 prev = tail, tail = next)
1ab256cb 1301 {
2eec3b4e
RS
1302 next = XCONS (tail)->cdr;
1303 overlay = XCONS (tail)->car;
1304
1305 /* If the overlay is not valid, get rid of it. */
1306 if (!OVERLAY_VALID (overlay))
52f8ec73
JB
1307#if 1
1308 abort ();
1309#else
2eec3b4e
RS
1310 {
1311 /* Splice the cons cell TAIL out of overlays_before. */
1312 if (!NILP (prev))
1313 XCONS (prev)->cdr = next;
1314 else
5c4f68f1 1315 buf->overlays_before = next;
2eec3b4e
RS
1316 tail = prev;
1317 continue;
1318 }
52f8ec73 1319#endif
1ab256cb 1320
2eec3b4e
RS
1321 beg = OVERLAY_START (overlay);
1322 end = OVERLAY_END (overlay);
1ab256cb 1323
2eec3b4e 1324 if (OVERLAY_POSITION (end) > pos)
1ab256cb 1325 {
2eec3b4e
RS
1326 /* OVERLAY needs to be moved. */
1327 int where = OVERLAY_POSITION (beg);
1328 Lisp_Object other, other_prev;
1329
1330 /* Splice the cons cell TAIL out of overlays_before. */
1331 if (!NILP (prev))
1332 XCONS (prev)->cdr = next;
1333 else
5c4f68f1 1334 buf->overlays_before = next;
2eec3b4e
RS
1335
1336 /* Search thru overlays_after for where to put it. */
1337 other_prev = Qnil;
5c4f68f1 1338 for (other = buf->overlays_after;
2eec3b4e
RS
1339 CONSP (other);
1340 other_prev = other, other = XCONS (other)->cdr)
1ab256cb 1341 {
2eec3b4e
RS
1342 Lisp_Object otherbeg, otheroverlay, follower;
1343 int win;
1344
1345 otheroverlay = XCONS (other)->car;
1346 if (! OVERLAY_VALID (otheroverlay))
52f8ec73 1347 abort ();
2eec3b4e
RS
1348
1349 otherbeg = OVERLAY_START (otheroverlay);
1350 if (OVERLAY_POSITION (otherbeg) >= where)
1351 break;
1ab256cb 1352 }
2eec3b4e
RS
1353
1354 /* Add TAIL to overlays_after before OTHER. */
1355 XCONS (tail)->cdr = other;
1356 if (!NILP (other_prev))
1357 XCONS (other_prev)->cdr = tail;
1ab256cb 1358 else
5c4f68f1 1359 buf->overlays_after = tail;
2eec3b4e 1360 tail = prev;
1ab256cb 1361 }
2eec3b4e
RS
1362 else
1363 /* We've reached the things that should stay in overlays_before.
1364 All the rest of overlays_before must end even earlier,
1365 so stop now. */
1366 break;
1367 }
1368
1369 /* See if anything in overlays_after should be in overlays_before. */
1370 prev = Qnil;
5c4f68f1 1371 for (tail = buf->overlays_after;
2eec3b4e
RS
1372 CONSP (tail);
1373 prev = tail, tail = next)
1374 {
1375 next = XCONS (tail)->cdr;
1376 overlay = XCONS (tail)->car;
1377
1378 /* If the overlay is not valid, get rid of it. */
1379 if (!OVERLAY_VALID (overlay))
52f8ec73
JB
1380#if 1
1381 abort ();
1382#else
2eec3b4e
RS
1383 {
1384 /* Splice the cons cell TAIL out of overlays_after. */
1385 if (!NILP (prev))
1386 XCONS (prev)->cdr = next;
1387 else
5c4f68f1 1388 buf->overlays_after = next;
2eec3b4e
RS
1389 tail = prev;
1390 continue;
1391 }
52f8ec73 1392#endif
2eec3b4e
RS
1393
1394 beg = OVERLAY_START (overlay);
1395 end = OVERLAY_END (overlay);
1396
1397 /* Stop looking, when we know that nothing further
1398 can possibly end before POS. */
1399 if (OVERLAY_POSITION (beg) > pos)
1400 break;
1401
1402 if (OVERLAY_POSITION (end) <= pos)
1403 {
1404 /* OVERLAY needs to be moved. */
1405 int where = OVERLAY_POSITION (end);
1406 Lisp_Object other, other_prev;
1407
1408 /* Splice the cons cell TAIL out of overlays_after. */
1409 if (!NILP (prev))
1410 XCONS (prev)->cdr = next;
1411 else
5c4f68f1 1412 buf->overlays_after = next;
2eec3b4e
RS
1413
1414 /* Search thru overlays_before for where to put it. */
1415 other_prev = Qnil;
5c4f68f1 1416 for (other = buf->overlays_before;
2eec3b4e
RS
1417 CONSP (other);
1418 other_prev = other, other = XCONS (other)->cdr)
1419 {
1420 Lisp_Object otherend, otheroverlay;
1421 int win;
1422
1423 otheroverlay = XCONS (other)->car;
1424 if (! OVERLAY_VALID (otheroverlay))
52f8ec73 1425 abort ();
2eec3b4e
RS
1426
1427 otherend = OVERLAY_END (otheroverlay);
1428 if (OVERLAY_POSITION (otherend) <= where)
1429 break;
1430 }
1431
1432 /* Add TAIL to overlays_before before OTHER. */
1433 XCONS (tail)->cdr = other;
1434 if (!NILP (other_prev))
1435 XCONS (other_prev)->cdr = tail;
1436 else
5c4f68f1 1437 buf->overlays_before = tail;
2eec3b4e
RS
1438 tail = prev;
1439 }
1440 }
1441
5c4f68f1 1442 XFASTINT (buf->overlay_center) = pos;
2eec3b4e
RS
1443}
1444\f
52f8ec73
JB
1445DEFUN ("overlayp", Foverlayp, Soverlayp, 1, 1, 0,
1446 "Return t if OBJECT is an overlay.")
1447 (object)
1448 Lisp_Object object;
1449{
1450 return (OVERLAYP (object) ? Qt : Qnil);
1451}
1452
5c4f68f1
JB
1453DEFUN ("make-overlay", Fmake_overlay, Smake_overlay, 2, 3, 0,
1454 "Create a new overlay with range BEG to END in BUFFER.\n\
1455If omitted, BUFFER defaults to the current buffer.\n\
2eec3b4e 1456BEG and END may be integers or markers.")
5c4f68f1
JB
1457 (beg, end, buffer)
1458 Lisp_Object beg, end, buffer;
2eec3b4e
RS
1459{
1460 Lisp_Object overlay;
5c4f68f1 1461 struct buffer *b;
2eec3b4e 1462
5c4f68f1
JB
1463 if (NILP (buffer))
1464 XSET (buffer, Lisp_Buffer, current_buffer);
1465 CHECK_BUFFER (buffer, 2);
2eec3b4e 1466
5c4f68f1
JB
1467 b = XBUFFER (buffer);
1468
1469 if (MARKERP (beg))
1470 {
1471 if (! EQ (Fmarker_buffer (beg), buffer))
1472 error ("Marker points into wrong buffer");
1473 else
1474 beg = Fcopy_marker (beg);
1475 }
1476 else
1477 beg = Fset_marker (Fmake_marker (), beg, buffer);
1478 if (MARKERP (end))
1479 {
1480 if (! EQ (Fmarker_buffer (end), buffer))
1481 error ("Marker points into wrong buffer");
1482 else
1483 end = Fcopy_marker (end);
1484 }
1485 else
1486 end = Fset_marker (Fmake_marker (), end, buffer);
1487
1488 overlay = Fcons (Fcons (beg, end), Qnil);
52f8ec73 1489 XSETTYPE (overlay, Lisp_Overlay);
2eec3b4e
RS
1490
1491 /* Put the new overlay on the wrong list. */
1492 end = OVERLAY_END (overlay);
5c4f68f1
JB
1493 if (OVERLAY_POSITION (end) < XINT (b->overlay_center))
1494 b->overlays_after = Fcons (overlay, b->overlays_after);
2eec3b4e 1495 else
5c4f68f1 1496 b->overlays_before = Fcons (overlay, b->overlays_before);
2eec3b4e
RS
1497
1498 /* This puts it in the right list, and in the right order. */
5c4f68f1 1499 recenter_overlay_lists (b, XINT (b->overlay_center));
2eec3b4e 1500
b61982dd
JB
1501 /* We don't need to redisplay the region covered by the overlay, because
1502 the overlay has no properties at the moment. */
1503
2eec3b4e
RS
1504 return overlay;
1505}
1506
5c4f68f1
JB
1507DEFUN ("move-overlay", Fmove_overlay, Smove_overlay, 3, 4, 0,
1508 "Set the endpoints of OVERLAY to BEG and END in BUFFER.\n\
3ece337a
JB
1509If BUFFER is omitted, leave OVERLAY in the same buffer it inhabits now.\n\
1510If BUFFER is omitted, and OVERLAY is in no buffer, put it in the current\n\
1511buffer.")
5c4f68f1
JB
1512 (overlay, beg, end, buffer)
1513 Lisp_Object overlay, beg, end, buffer;
2eec3b4e 1514{
5c4f68f1
JB
1515 struct buffer *b;
1516
52f8ec73 1517 CHECK_OVERLAY (overlay, 0);
5c4f68f1
JB
1518 if (NILP (buffer))
1519 buffer = Fmarker_buffer (OVERLAY_START (overlay));
3ece337a
JB
1520 if (NILP (buffer))
1521 XSET (buffer, Lisp_Buffer, current_buffer);
5c4f68f1 1522 CHECK_BUFFER (buffer, 3);
b61982dd
JB
1523 CHECK_NUMBER_COERCE_MARKER (beg, 1);
1524 CHECK_NUMBER_COERCE_MARKER (end, 1);
1525
1526 if (XINT (beg) > XINT (end))
1527 {
1528 Lisp_Object temp = beg;
1529 beg = end; end = temp;
1530 }
1531
5c4f68f1 1532 b = XBUFFER (buffer);
2eec3b4e 1533
b61982dd
JB
1534 /* Redisplay the area the overlay has just left, or just enclosed. */
1535 {
1536 Lisp_Object o_beg = OVERLAY_START (overlay);
1537 Lisp_Object o_end = OVERLAY_END (overlay);
1538 int change_beg, change_end;
1539
1540 o_beg = OVERLAY_POSITION (o_beg);
1541 o_end = OVERLAY_POSITION (o_end);
1542
1543 if (XINT (o_beg) == XINT (beg))
1544 redisplay_region (b, XINT (o_end), XINT (end));
1545 else if (XINT (o_end) == XINT (end))
1546 redisplay_region (b, XINT (o_beg), XINT (beg));
1547 else
1548 {
1549 if (XINT (beg) < XINT (o_beg)) o_beg = beg;
1550 if (XINT (end) > XINT (o_end)) o_end = end;
1551 redisplay_region (b, XINT (o_beg), XINT (o_end));
1552 }
1553 }
1554
5c4f68f1
JB
1555 b->overlays_before = Fdelq (overlay, b->overlays_before);
1556 b->overlays_after = Fdelq (overlay, b->overlays_after);
1557
1558 Fset_marker (OVERLAY_START (overlay), beg, buffer);
1559 Fset_marker (OVERLAY_END (overlay), end, buffer);
2eec3b4e
RS
1560
1561 /* Put the overlay on the wrong list. */
1562 end = OVERLAY_END (overlay);
5c4f68f1
JB
1563 if (OVERLAY_POSITION (end) < XINT (b->overlay_center))
1564 b->overlays_after = Fcons (overlay, b->overlays_after);
2eec3b4e 1565 else
5c4f68f1 1566 b->overlays_before = Fcons (overlay, b->overlays_before);
2eec3b4e
RS
1567
1568 /* This puts it in the right list, and in the right order. */
5c4f68f1 1569 recenter_overlay_lists (b, XINT (b->overlay_center));
2eec3b4e
RS
1570
1571 return overlay;
1572}
1573
1574DEFUN ("delete-overlay", Fdelete_overlay, Sdelete_overlay, 1, 1, 0,
5c4f68f1 1575 "Delete the overlay OVERLAY from its buffer.")
2eec3b4e 1576 (overlay)
5c4f68f1 1577 Lisp_Object overlay;
2eec3b4e 1578{
5c4f68f1
JB
1579 struct buffer *b;
1580
52f8ec73
JB
1581 CHECK_OVERLAY (overlay, 0);
1582
1583 b = XBUFFER (Fmarker_buffer (OVERLAY_START (overlay)));
5c4f68f1
JB
1584
1585 b->overlays_before = Fdelq (overlay, b->overlays_before);
1586 b->overlays_after = Fdelq (overlay, b->overlays_after);
1587
b61982dd
JB
1588 redisplay_region (b,
1589 OVERLAY_POSITION (OVERLAY_START (overlay)),
1590 OVERLAY_POSITION (OVERLAY_END (overlay)));
1591
3ece337a
JB
1592 Fset_marker (OVERLAY_START (overlay), Qnil, Qnil);
1593 Fset_marker (OVERLAY_END (overlay), Qnil, Qnil);
1594
2eec3b4e
RS
1595 return Qnil;
1596}
1597\f
8ebafa8d
JB
1598/* Overlay dissection functions. */
1599
1600DEFUN ("overlay-start", Foverlay_start, Soverlay_start, 1, 1, 0,
1601 "Return the position at which OVERLAY starts.")
1602 (overlay)
1603 Lisp_Object overlay;
1604{
1605 CHECK_OVERLAY (overlay, 0);
1606
1607 return (Fmarker_position (OVERLAY_START (overlay)));
1608}
1609
1610DEFUN ("overlay-end", Foverlay_end, Soverlay_end, 1, 1, 0,
1611 "Return the position at which OVERLAY ends.")
1612 (overlay)
1613 Lisp_Object overlay;
1614{
1615 CHECK_OVERLAY (overlay, 0);
1616
1617 return (Fmarker_position (OVERLAY_END (overlay)));
1618}
1619
1620DEFUN ("overlay-buffer", Foverlay_buffer, Soverlay_buffer, 1, 1, 0,
1621 "Return the buffer OVERLAY belongs to.")
1622 (overlay)
1623 Lisp_Object overlay;
1624{
1625 CHECK_OVERLAY (overlay, 0);
1626
1627 return Fmarker_buffer (OVERLAY_START (overlay));
1628}
1629
1630DEFUN ("overlay-properties", Foverlay_properties, Soverlay_properties, 1, 1, 0,
1631 "Return a list of the properties on OVERLAY.\n\
1632This is a copy of OVERLAY's plist; modifying its conses has no effect on\n\
1633OVERLAY.")
1634 (overlay)
1635 Lisp_Object overlay;
1636{
1637 CHECK_OVERLAY (overlay, 0);
1638
1639 return Fcopy_sequence (Fcdr_safe (XCONS (overlay)->cdr));
1640}
1641
1642\f
2eec3b4e
RS
1643DEFUN ("overlays-at", Foverlays_at, Soverlays_at, 1, 1, 0,
1644 "Return a list of the overays that contain position POS.")
1645 (pos)
1646 Lisp_Object pos;
1647{
1648 int noverlays;
1649 int endpos;
1650 Lisp_Object *overlay_vec;
1651 int len;
1652 Lisp_Object result;
1653
1654 CHECK_NUMBER_COERCE_MARKER (pos, 0);
1655
1656 len = 10;
1657 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
1658
1659 /* Put all the overlays we want in a vector in overlay_vec.
1660 Store the length in len. */
1661 noverlays = overlays_at (XINT (pos), &overlay_vec, &len, &endpos);
1662
1663 /* Make a list of them all. */
1664 result = Flist (noverlays, overlay_vec);
1665
9ac0d9e0 1666 xfree (overlay_vec);
2eec3b4e
RS
1667 return result;
1668}
1669
1670DEFUN ("next-overlay-change", Fnext_overlay_change, Snext_overlay_change,
1671 1, 1, 0,
1672 "Return the next position after POS where an overlay starts or ends.")
1673 (pos)
1674 Lisp_Object pos;
1675{
1676 int noverlays;
1677 int endpos;
1678 Lisp_Object *overlay_vec;
1679 int len;
1680 Lisp_Object result;
1681 int i;
1682
1683 CHECK_NUMBER_COERCE_MARKER (pos, 0);
1684
1685 len = 10;
1686 overlay_vec = (Lisp_Object *) xmalloc (len * sizeof (Lisp_Object));
1687
1688 /* Put all the overlays we want in a vector in overlay_vec.
1689 Store the length in len.
1690 endpos gets the position where the next overlay starts. */
1691 noverlays = overlays_at (XINT (pos), &overlay_vec, &len, &endpos);
1692
1693 /* If any of these overlays ends before endpos,
1694 use its ending point instead. */
1695 for (i = 0; i < noverlays; i++)
1696 {
1697 Lisp_Object oend;
1698 int oendpos;
1699
1700 oend = OVERLAY_END (overlay_vec[i]);
1701 oendpos = OVERLAY_POSITION (oend);
1702 if (oendpos < endpos)
1703 endpos = oendpos;
1ab256cb
RM
1704 }
1705
9ac0d9e0 1706 xfree (overlay_vec);
2eec3b4e
RS
1707 return make_number (endpos);
1708}
1709\f
1710/* These functions are for debugging overlays. */
1711
1712DEFUN ("overlay-lists", Foverlay_lists, Soverlay_lists, 0, 0, 0,
1713 "Return a pair of lists giving all the overlays of the current buffer.\n\
1714The car has all the overlays before the overlay center;\n\
1715the cdr has all the overlays before the overlay center.\n\
1716Recentering overlays moves overlays between these lists.\n\
1717The lists you get are copies, so that changing them has no effect.\n\
1718However, the overlays you get are the real objects that the buffer uses.")
1719 ()
1720{
1721 Lisp_Object before, after;
1722 before = current_buffer->overlays_before;
1723 if (CONSP (before))
1724 before = Fcopy_sequence (before);
1725 after = current_buffer->overlays_after;
1726 if (CONSP (after))
1727 after = Fcopy_sequence (after);
1728
1729 return Fcons (before, after);
1730}
1731
1732DEFUN ("overlay-recenter", Foverlay_recenter, Soverlay_recenter, 1, 1, 0,
1733 "Recenter the overlays of the current buffer around position POS.")
1734 (pos)
1735 Lisp_Object pos;
1736{
1737 CHECK_NUMBER_COERCE_MARKER (pos, 0);
1738
5c4f68f1 1739 recenter_overlay_lists (current_buffer, XINT (pos));
2eec3b4e
RS
1740 return Qnil;
1741}
1742\f
1743DEFUN ("overlay-get", Foverlay_get, Soverlay_get, 2, 2, 0,
1744 "Get the property of overlay OVERLAY with property name NAME.")
1745 (overlay, prop)
1746 Lisp_Object overlay, prop;
1747{
1748 Lisp_Object plist;
52f8ec73
JB
1749
1750 CHECK_OVERLAY (overlay, 0);
1751
1752 for (plist = Fcdr_safe (XCONS (overlay)->cdr);
2eec3b4e
RS
1753 CONSP (plist) && CONSP (XCONS (plist)->cdr);
1754 plist = XCONS (XCONS (plist)->cdr)->cdr)
1755 {
1756 if (EQ (XCONS (plist)->car, prop))
1757 return XCONS (XCONS (plist)->cdr)->car;
1758 }
52f8ec73
JB
1759
1760 return Qnil;
2eec3b4e
RS
1761}
1762
1763DEFUN ("overlay-put", Foverlay_put, Soverlay_put, 3, 3, 0,
1764 "Set one property of overlay OVERLAY: give property PROP value VALUE.")
1765 (overlay, prop, value)
1766 Lisp_Object overlay, prop, value;
1767{
1768 Lisp_Object plist, tail;
1769
52f8ec73 1770 CHECK_OVERLAY (overlay, 0);
b61982dd
JB
1771
1772 redisplay_region (XMARKER (OVERLAY_START (overlay))->buffer,
1773 OVERLAY_POSITION (OVERLAY_START (overlay)),
1774 OVERLAY_POSITION (OVERLAY_END (overlay)));
1775
52f8ec73 1776 plist = Fcdr_safe (XCONS (overlay)->cdr);
2eec3b4e
RS
1777
1778 for (tail = plist;
1779 CONSP (tail) && CONSP (XCONS (tail)->cdr);
1780 tail = XCONS (XCONS (tail)->cdr)->cdr)
1781 {
1782 if (EQ (XCONS (tail)->car, prop))
1783 return XCONS (XCONS (tail)->cdr)->car = value;
1784 }
1785
1786 if (! CONSP (XCONS (overlay)->cdr))
1787 XCONS (overlay)->cdr = Fcons (Qnil, Qnil);
1788
1789 XCONS (XCONS (overlay)->cdr)->cdr
1790 = Fcons (prop, Fcons (value, plist));
1791
1792 return value;
1ab256cb
RM
1793}
1794\f
0fa3ba92
JB
1795/* Somebody has tried to store NEWVAL into the buffer-local slot with
1796 offset XUINT (valcontents), and NEWVAL has an unacceptable type. */
1797void
1798buffer_slot_type_mismatch (valcontents, newval)
1799 Lisp_Object valcontents, newval;
1800{
1801 unsigned int offset = XUINT (valcontents);
5fcd022d 1802 unsigned char *symbol_name =
0fa3ba92
JB
1803 (XSYMBOL (*(Lisp_Object *)(offset + (char *)&buffer_local_symbols))
1804 ->name->data);
1805 char *type_name;
1806
1807 switch (XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_types)))
1808 {
1809 case Lisp_Int: type_name = "integers"; break;
1810 case Lisp_String: type_name = "strings"; break;
1811 case Lisp_Marker: type_name = "markers"; break;
1812 case Lisp_Symbol: type_name = "symbols"; break;
1813 case Lisp_Cons: type_name = "lists"; break;
5fcd022d 1814 case Lisp_Vector: type_name = "vectors"; break;
0fa3ba92
JB
1815 default:
1816 abort ();
1817 }
1818
1819 error ("only %s should be stored in the buffer-local variable %s",
1820 type_name, symbol_name);
1821}
1822\f
1ab256cb
RM
1823init_buffer_once ()
1824{
1825 register Lisp_Object tem;
1826
1827 /* Make sure all markable slots in buffer_defaults
1828 are initialized reasonably, so mark_buffer won't choke. */
1829 reset_buffer (&buffer_defaults);
1830 reset_buffer (&buffer_local_symbols);
1831 XSET (Vbuffer_defaults, Lisp_Buffer, &buffer_defaults);
1832 XSET (Vbuffer_local_symbols, Lisp_Buffer, &buffer_local_symbols);
1833
1834 /* Set up the default values of various buffer slots. */
1835 /* Must do these before making the first buffer! */
1836
1837 /* real setup is done in loaddefs.el */
1838 buffer_defaults.mode_line_format = build_string ("%-");
1839 buffer_defaults.abbrev_mode = Qnil;
1840 buffer_defaults.overwrite_mode = Qnil;
1841 buffer_defaults.case_fold_search = Qt;
1842 buffer_defaults.auto_fill_function = Qnil;
1843 buffer_defaults.selective_display = Qnil;
1844#ifndef old
1845 buffer_defaults.selective_display_ellipses = Qt;
1846#endif
1847 buffer_defaults.abbrev_table = Qnil;
1848 buffer_defaults.display_table = Qnil;
1ab256cb 1849 buffer_defaults.undo_list = Qnil;
c48f61ef 1850 buffer_defaults.mark_active = Qnil;
2eec3b4e
RS
1851 buffer_defaults.overlays_before = Qnil;
1852 buffer_defaults.overlays_after = Qnil;
1853 XFASTINT (buffer_defaults.overlay_center) = 1;
1ab256cb
RM
1854
1855 XFASTINT (buffer_defaults.tab_width) = 8;
1856 buffer_defaults.truncate_lines = Qnil;
1857 buffer_defaults.ctl_arrow = Qt;
1858
1859 XFASTINT (buffer_defaults.fill_column) = 70;
1860 XFASTINT (buffer_defaults.left_margin) = 0;
1861
1862 /* Assign the local-flags to the slots that have default values.
1863 The local flag is a bit that is used in the buffer
1864 to say that it has its own local value for the slot.
1865 The local flag bits are in the local_var_flags slot of the buffer. */
1866
1867 /* Nothing can work if this isn't true */
1868 if (sizeof (int) != sizeof (Lisp_Object)) abort ();
1869
1870 /* 0 means not a lisp var, -1 means always local, else mask */
1871 bzero (&buffer_local_flags, sizeof buffer_local_flags);
1872 XFASTINT (buffer_local_flags.filename) = -1;
1873 XFASTINT (buffer_local_flags.directory) = -1;
1874 XFASTINT (buffer_local_flags.backed_up) = -1;
1875 XFASTINT (buffer_local_flags.save_length) = -1;
1876 XFASTINT (buffer_local_flags.auto_save_file_name) = -1;
1877 XFASTINT (buffer_local_flags.read_only) = -1;
1878 XFASTINT (buffer_local_flags.major_mode) = -1;
1879 XFASTINT (buffer_local_flags.mode_name) = -1;
1880 XFASTINT (buffer_local_flags.undo_list) = -1;
c48f61ef 1881 XFASTINT (buffer_local_flags.mark_active) = -1;
1ab256cb
RM
1882
1883 XFASTINT (buffer_local_flags.mode_line_format) = 1;
1884 XFASTINT (buffer_local_flags.abbrev_mode) = 2;
1885 XFASTINT (buffer_local_flags.overwrite_mode) = 4;
1886 XFASTINT (buffer_local_flags.case_fold_search) = 8;
1887 XFASTINT (buffer_local_flags.auto_fill_function) = 0x10;
1888 XFASTINT (buffer_local_flags.selective_display) = 0x20;
1889#ifndef old
1890 XFASTINT (buffer_local_flags.selective_display_ellipses) = 0x40;
1891#endif
1892 XFASTINT (buffer_local_flags.tab_width) = 0x80;
1893 XFASTINT (buffer_local_flags.truncate_lines) = 0x100;
1894 XFASTINT (buffer_local_flags.ctl_arrow) = 0x200;
1895 XFASTINT (buffer_local_flags.fill_column) = 0x400;
1896 XFASTINT (buffer_local_flags.left_margin) = 0x800;
1897 XFASTINT (buffer_local_flags.abbrev_table) = 0x1000;
1898 XFASTINT (buffer_local_flags.display_table) = 0x2000;
1ab256cb
RM
1899 XFASTINT (buffer_local_flags.syntax_table) = 0x8000;
1900
1901 Vbuffer_alist = Qnil;
1902 current_buffer = 0;
1903 all_buffers = 0;
1904
1905 QSFundamental = build_string ("Fundamental");
1906
1907 Qfundamental_mode = intern ("fundamental-mode");
1908 buffer_defaults.major_mode = Qfundamental_mode;
1909
1910 Qmode_class = intern ("mode-class");
1911
1912 Qprotected_field = intern ("protected-field");
1913
1914 Qpermanent_local = intern ("permanent-local");
1915
1916 Qkill_buffer_hook = intern ("kill-buffer-hook");
1917
1918 Vprin1_to_string_buffer = Fget_buffer_create (build_string (" prin1"));
1919 /* super-magic invisible buffer */
1920 Vbuffer_alist = Qnil;
1921
ffd56f97 1922 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
1ab256cb
RM
1923}
1924
1925init_buffer ()
1926{
1927 char buf[MAXPATHLEN+1];
2381d133
JB
1928 char *pwd;
1929 struct stat dotstat, pwdstat;
1ab256cb
RM
1930
1931 Fset_buffer (Fget_buffer_create (build_string ("*scratch*")));
2381d133
JB
1932
1933 /* If PWD is accurate, use it instead of calling getwd. This is faster
1934 when PWD is right, and may avoid a fatal error. */
1935 if ((pwd = getenv ("PWD")) != 0 && *pwd == '/'
1936 && stat (pwd, &pwdstat) == 0
1937 && stat (".", &dotstat) == 0
1938 && dotstat.st_ino == pwdstat.st_ino
1939 && dotstat.st_dev == pwdstat.st_dev
1940 && strlen (pwd) < MAXPATHLEN)
1941 strcpy (buf, pwd);
1942 else if (getwd (buf) == 0)
1ab256cb
RM
1943 fatal ("`getwd' failed: %s.\n", buf);
1944
1945#ifndef VMS
1946 /* Maybe this should really use some standard subroutine
1947 whose definition is filename syntax dependent. */
1948 if (buf[strlen (buf) - 1] != '/')
1949 strcat (buf, "/");
1950#endif /* not VMS */
1951 current_buffer->directory = build_string (buf);
1952}
1953
1954/* initialize the buffer routines */
1955syms_of_buffer ()
1956{
188d4d11
RM
1957 extern Lisp_Object Qdisabled;
1958
1ab256cb
RM
1959 staticpro (&Vbuffer_defaults);
1960 staticpro (&Vbuffer_local_symbols);
1961 staticpro (&Qfundamental_mode);
1962 staticpro (&Qmode_class);
1963 staticpro (&QSFundamental);
1964 staticpro (&Vbuffer_alist);
1965 staticpro (&Qprotected_field);
1966 staticpro (&Qpermanent_local);
1967 staticpro (&Qkill_buffer_hook);
52f8ec73
JB
1968 staticpro (&Qoverlayp);
1969
1970 Qoverlayp = intern ("overlayp");
1ab256cb
RM
1971
1972 Fput (Qprotected_field, Qerror_conditions,
1973 Fcons (Qprotected_field, Fcons (Qerror, Qnil)));
1974 Fput (Qprotected_field, Qerror_message,
1975 build_string ("Attempt to modify a protected field"));
1976
188d4d11
RM
1977 Fput (intern ("erase-buffer"), Qdisabled, Qt);
1978
1ab256cb
RM
1979 /* All these use DEFVAR_LISP_NOPRO because the slots in
1980 buffer_defaults will all be marked via Vbuffer_defaults. */
1981
1982 DEFVAR_LISP_NOPRO ("default-mode-line-format",
1983 &buffer_defaults.mode_line_format,
1984 "Default value of `mode-line-format' for buffers that don't override it.\n\
1985This is the same as (default-value 'mode-line-format).");
1986
1987 DEFVAR_LISP_NOPRO ("default-abbrev-mode",
1988 &buffer_defaults.abbrev_mode,
1989 "Default value of `abbrev-mode' for buffers that do not override it.\n\
1990This is the same as (default-value 'abbrev-mode).");
1991
1992 DEFVAR_LISP_NOPRO ("default-ctl-arrow",
1993 &buffer_defaults.ctl_arrow,
1994 "Default value of `ctl-arrow' for buffers that do not override it.\n\
1995This is the same as (default-value 'ctl-arrow).");
1996
1997 DEFVAR_LISP_NOPRO ("default-truncate-lines",
1998 &buffer_defaults.truncate_lines,
1999 "Default value of `truncate-lines' for buffers that do not override it.\n\
2000This is the same as (default-value 'truncate-lines).");
2001
2002 DEFVAR_LISP_NOPRO ("default-fill-column",
2003 &buffer_defaults.fill_column,
2004 "Default value of `fill-column' for buffers that do not override it.\n\
2005This is the same as (default-value 'fill-column).");
2006
2007 DEFVAR_LISP_NOPRO ("default-left-margin",
2008 &buffer_defaults.left_margin,
2009 "Default value of `left-margin' for buffers that do not override it.\n\
2010This is the same as (default-value 'left-margin).");
2011
2012 DEFVAR_LISP_NOPRO ("default-tab-width",
2013 &buffer_defaults.tab_width,
2014 "Default value of `tab-width' for buffers that do not override it.\n\
2015This is the same as (default-value 'tab-width).");
2016
2017 DEFVAR_LISP_NOPRO ("default-case-fold-search",
2018 &buffer_defaults.case_fold_search,
2019 "Default value of `case-fold-search' for buffers that don't override it.\n\
2020This is the same as (default-value 'case-fold-search).");
2021
0fa3ba92
JB
2022 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
2023 Qnil, 0);
1ab256cb
RM
2024
2025/* This doc string is too long for cpp; cpp dies if it isn't in a comment.
2026 But make-docfile finds it!
2027 DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
bec44fd6 2028 Qnil,
1ab256cb
RM
2029 "Template for displaying mode line for current buffer.\n\
2030Each buffer has its own value of this variable.\n\
2031Value may be a string, a symbol or a list or cons cell.\n\
2032For a symbol, its value is used (but it is ignored if t or nil).\n\
2033 A string appearing directly as the value of a symbol is processed verbatim\n\
2034 in that the %-constructs below are not recognized.\n\
2035For a list whose car is a symbol, the symbol's value is taken,\n\
2036 and if that is non-nil, the cadr of the list is processed recursively.\n\
2037 Otherwise, the caddr of the list (if there is one) is processed.\n\
2038For a list whose car is a string or list, each element is processed\n\
2039 recursively and the results are effectively concatenated.\n\
2040For a list whose car is an integer, the cdr of the list is processed\n\
2041 and padded (if the number is positive) or truncated (if negative)\n\
2042 to the width specified by that number.\n\
2043A string is printed verbatim in the mode line except for %-constructs:\n\
2044 (%-constructs are allowed when the string is the entire mode-line-format\n\
2045 or when it is found in a cons-cell or a list)\n\
2046 %b -- print buffer name. %f -- print visited file name.\n\
2047 %* -- print *, % or hyphen. %m -- print value of mode-name (obsolete).\n\
a97c374a 2048 %s -- print process status. %l -- print the current line number.\n\
1ab256cb
RM
2049 %p -- print percent of buffer above top of window, or top, bot or all.\n\
2050 %n -- print Narrow if appropriate.\n\
2051 %[ -- print one [ for each recursive editing level. %] similar.\n\
2052 %% -- print %. %- -- print infinitely many dashes.\n\
2053Decimal digits after the % specify field width to which to pad.");
2054*/
2055
2056 DEFVAR_LISP_NOPRO ("default-major-mode", &buffer_defaults.major_mode,
2057 "*Major mode for new buffers. Defaults to `fundamental-mode'.\n\
2058nil here means use current buffer's major mode.");
2059
2060 DEFVAR_PER_BUFFER ("major-mode", &current_buffer->major_mode,
0fa3ba92 2061 make_number (Lisp_Symbol),
1ab256cb
RM
2062 "Symbol for current buffer's major mode.");
2063
2064 DEFVAR_PER_BUFFER ("mode-name", &current_buffer->mode_name,
0fa3ba92 2065 make_number (Lisp_String),
1ab256cb
RM
2066 "Pretty name of current buffer's major mode (a string).");
2067
0fa3ba92 2068 DEFVAR_PER_BUFFER ("abbrev-mode", &current_buffer->abbrev_mode, Qnil,
1ab256cb
RM
2069 "Non-nil turns on automatic expansion of abbrevs as they are inserted.\n\
2070Automatically becomes buffer-local when set in any fashion.");
2071
2072 DEFVAR_PER_BUFFER ("case-fold-search", &current_buffer->case_fold_search,
0fa3ba92 2073 Qnil,
1ab256cb
RM
2074 "*Non-nil if searches should ignore case.\n\
2075Automatically becomes buffer-local when set in any fashion.");
2076
2077 DEFVAR_PER_BUFFER ("fill-column", &current_buffer->fill_column,
0fa3ba92 2078 make_number (Lisp_Int),
1ab256cb
RM
2079 "*Column beyond which automatic line-wrapping should happen.\n\
2080Automatically becomes buffer-local when set in any fashion.");
2081
2082 DEFVAR_PER_BUFFER ("left-margin", &current_buffer->left_margin,
0fa3ba92 2083 make_number (Lisp_Int),
1ab256cb
RM
2084 "*Column for the default indent-line-function to indent to.\n\
2085Linefeed indents to this column in Fundamental mode.\n\
2086Automatically becomes buffer-local when set in any fashion.");
2087
2088 DEFVAR_PER_BUFFER ("tab-width", &current_buffer->tab_width,
0fa3ba92 2089 make_number (Lisp_Int),
1ab256cb
RM
2090 "*Distance between tab stops (for display of tab characters), in columns.\n\
2091Automatically becomes buffer-local when set in any fashion.");
2092
0fa3ba92 2093 DEFVAR_PER_BUFFER ("ctl-arrow", &current_buffer->ctl_arrow, Qnil,
1ab256cb
RM
2094 "*Non-nil means display control chars with uparrow.\n\
2095Nil means use backslash and octal digits.\n\
2096Automatically becomes buffer-local when set in any fashion.\n\
2097This variable does not apply to characters whose display is specified\n\
2098in the current display table (if there is one).");
2099
0fa3ba92 2100 DEFVAR_PER_BUFFER ("truncate-lines", &current_buffer->truncate_lines, Qnil,
1ab256cb
RM
2101 "*Non-nil means do not display continuation lines;\n\
2102give each line of text one screen line.\n\
2103Automatically becomes buffer-local when set in any fashion.\n\
2104\n\
2105Note that this is overridden by the variable\n\
2106`truncate-partial-width-windows' if that variable is non-nil\n\
502b9b64 2107and this buffer is not full-frame width.");
1ab256cb
RM
2108
2109 DEFVAR_PER_BUFFER ("default-directory", &current_buffer->directory,
0fa3ba92 2110 make_number (Lisp_String),
1ab256cb
RM
2111 "Name of default directory of current buffer. Should end with slash.\n\
2112Each buffer has its own value of this variable.");
2113
2114 DEFVAR_PER_BUFFER ("auto-fill-function", &current_buffer->auto_fill_function,
0fa3ba92 2115 Qnil,
1ab256cb
RM
2116 "Function called (if non-nil) to perform auto-fill.\n\
2117It is called after self-inserting a space at a column beyond `fill-column'.\n\
2118Each buffer has its own value of this variable.\n\
2119NOTE: This variable is not an ordinary hook;\n\
2120It may not be a list of functions.");
2121
2122 DEFVAR_PER_BUFFER ("buffer-file-name", &current_buffer->filename,
0fa3ba92 2123 make_number (Lisp_String),
1ab256cb
RM
2124 "Name of file visited in current buffer, or nil if not visiting a file.\n\
2125Each buffer has its own value of this variable.");
2126
2127 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
3f5fcd47 2128 &current_buffer->auto_save_file_name,
0fa3ba92 2129 make_number (Lisp_String),
1ab256cb
RM
2130 "Name of file for auto-saving current buffer,\n\
2131or nil if buffer should not be auto-saved.\n\
2132Each buffer has its own value of this variable.");
2133
0fa3ba92 2134 DEFVAR_PER_BUFFER ("buffer-read-only", &current_buffer->read_only, Qnil,
1ab256cb
RM
2135 "Non-nil if this buffer is read-only.\n\
2136Each buffer has its own value of this variable.");
2137
0fa3ba92 2138 DEFVAR_PER_BUFFER ("buffer-backed-up", &current_buffer->backed_up, Qnil,
1ab256cb
RM
2139 "Non-nil if this buffer's file has been backed up.\n\
2140Backing up is done before the first time the file is saved.\n\
2141Each buffer has its own value of this variable.");
2142
2143 DEFVAR_PER_BUFFER ("buffer-saved-size", &current_buffer->save_length,
0fa3ba92 2144 make_number (Lisp_Int),
1ab256cb
RM
2145 "Length of current buffer when last read in, saved or auto-saved.\n\
21460 initially.\n\
2147Each buffer has its own value of this variable.");
2148
2149 DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
0fa3ba92 2150 Qnil,
1ab256cb
RM
2151 "Non-nil enables selective display:\n\
2152Integer N as value means display only lines\n\
2153 that start with less than n columns of space.\n\
2154A value of t means, after a ^M, all the rest of the line is invisible.\n\
2155 Then ^M's in the file are written into files as newlines.\n\n\
2156Automatically becomes buffer-local when set in any fashion.");
2157
2158#ifndef old
2159 DEFVAR_PER_BUFFER ("selective-display-ellipses",
2160 &current_buffer->selective_display_ellipses,
0fa3ba92 2161 Qnil,
1ab256cb
RM
2162 "t means display ... on previous line when a line is invisible.\n\
2163Automatically becomes buffer-local when set in any fashion.");
2164#endif
2165
0fa3ba92 2166 DEFVAR_PER_BUFFER ("overwrite-mode", &current_buffer->overwrite_mode, Qnil,
1ab256cb 2167 "Non-nil if self-insertion should replace existing text.\n\
6bbb0d4a
JB
2168If non-nil and not `overwrite-mode-binary', self-insertion still\n\
2169inserts at the end of a line, and inserts when point is before a tab,\n\
2e94b813 2170until the tab is filled in.\n\
6bbb0d4a 2171If `overwrite-mode-binary', self-insertion replaces newlines and tabs too.\n\
1ab256cb
RM
2172Automatically becomes buffer-local when set in any fashion.");
2173
2174 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
5d305367 2175 Qnil,
1ab256cb
RM
2176 "Display table that controls display of the contents of current buffer.\n\
2177Automatically becomes buffer-local when set in any fashion.\n\
2178The display table is a vector created with `make-display-table'.\n\
2179The first 256 elements control how to display each possible text character.\n\
6158b3b0 2180Each value should be a vector of characters or nil;\n\
1ab256cb 2181nil means display the character in the default fashion.\n\
6158b3b0
JB
2182The remaining five elements control the display of\n\
2183 the end of a truncated screen line (element 256, a single character);\n\
2184 the end of a continued line (element 257, a single character);\n\
2185 the escape character used to display character codes in octal\n\
2186 (element 258, a single character);\n\
2187 the character used as an arrow for control characters (element 259,\n\
2188 a single character);\n\
2189 the decoration indicating the presence of invisible lines (element 260,\n\
2190 a vector of characters).\n\
1ab256cb
RM
2191If this variable is nil, the value of `standard-display-table' is used.\n\
2192Each window can have its own, overriding display table.");
2193
1ab256cb
RM
2194/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
2195 "Don't ask.");
2196*/
01050cb5 2197 DEFVAR_LISP ("before-change-function", &Vbefore_change_function,
1ab256cb
RM
2198 "Function to call before each text change.\n\
2199Two arguments are passed to the function: the positions of\n\
2200the beginning and end of the range of old text to be changed.\n\
2201\(For an insertion, the beginning and end are at the same place.)\n\
2202No information is given about the length of the text after the change.\n\
2203position of the change\n\
2204\n\
2205While executing the `before-change-function', changes to buffers do not\n\
2206cause calls to any `before-change-function' or `after-change-function'.");
2207 Vbefore_change_function = Qnil;
2208
2209 DEFVAR_LISP ("after-change-function", &Vafter_change_function,
2210 "Function to call after each text change.\n\
2211Three arguments are passed to the function: the positions of\n\
2212the beginning and end of the range of changed text,\n\
2213and the length of the pre-change text replaced by that range.\n\
2214\(For an insertion, the pre-change length is zero;\n\
2215for a deletion, that length is the number of characters deleted,\n\
2216and the post-change beginning and end are at the same place.)\n\
2217\n\
2218While executing the `after-change-function', changes to buffers do not\n\
2219cause calls to any `before-change-function' or `after-change-function'.");
2220 Vafter_change_function = Qnil;
2221
dbc4e1c1
JB
2222 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook,
2223 "A list of functions to call before changing a buffer which is unmodified.\n\
2224The functions are run using the `run-hooks' function.");
2225 Vfirst_change_hook = Qnil;
2226 Qfirst_change_hook = intern ("first-change-hook");
2227 staticpro (&Qfirst_change_hook);
1ab256cb 2228
3f5fcd47 2229 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
1ab256cb
RM
2230 "List of undo entries in current buffer.\n\
2231Recent changes come first; older changes follow newer.\n\
2232\n\
2233An entry (START . END) represents an insertion which begins at\n\
2234position START and ends at position END.\n\
2235\n\
2236An entry (TEXT . POSITION) represents the deletion of the string TEXT\n\
2237from (abs POSITION). If POSITION is positive, point was at the front\n\
2238of the text being deleted; if negative, point was at the end.\n\
2239\n\
2240An entry (t HIGHWORD LOWWORD) indicates that the buffer had been\n\
2241previously unmodified. HIGHWORD and LOWWORD are the high and low\n\
224216-bit words of the buffer's modification count at the time. If the\n\
2243modification count of the most recent save is different, this entry is\n\
2244obsolete.\n\
2245\n\
483c1fd3
RS
2246An entry (nil PROP VAL BEG . END) indicates that a text property\n\
2247was modified between BEG and END. PROP is the property name,\n\
2248and VAL is the old value.\n\
2249\n\
bec44fd6
JB
2250An entry of the form POSITION indicates that point was at the buffer\n\
2251location given by the integer. Undoing an entry of this form places\n\
2252point at POSITION.\n\
2253\n\
1ab256cb
RM
2254nil marks undo boundaries. The undo command treats the changes\n\
2255between two undo boundaries as a single step to be undone.\n\
2256\n\
bec44fd6 2257If the value of the variable is t, undo information is not recorded.");
1ab256cb 2258
c48f61ef
RS
2259 DEFVAR_PER_BUFFER ("mark-active", &current_buffer->mark_active, Qnil,
2260 "Non-nil means the mark and region are currently active in this buffer.\n\
2261Automatically local in all buffers.");
2262
2263 DEFVAR_LISP ("transient-mark-mode", &Vtransient_mark_mode,
2264 "*Non-nil means deactivate the mark when the buffer contents change.");
2265 Vtransient_mark_mode = Qnil;
2266
1ab256cb
RM
2267 defsubr (&Sbuffer_list);
2268 defsubr (&Sget_buffer);
2269 defsubr (&Sget_file_buffer);
2270 defsubr (&Sget_buffer_create);
01050cb5 2271 defsubr (&Sgenerate_new_buffer_name);
1ab256cb
RM
2272 defsubr (&Sbuffer_name);
2273/*defsubr (&Sbuffer_number);*/
2274 defsubr (&Sbuffer_file_name);
2275 defsubr (&Sbuffer_local_variables);
2276 defsubr (&Sbuffer_modified_p);
2277 defsubr (&Sset_buffer_modified_p);
2278 defsubr (&Sbuffer_modified_tick);
2279 defsubr (&Srename_buffer);
2280 defsubr (&Sother_buffer);
2281 defsubr (&Sbuffer_disable_undo);
2282 defsubr (&Sbuffer_enable_undo);
2283 defsubr (&Skill_buffer);
2284 defsubr (&Serase_buffer);
2285 defsubr (&Sswitch_to_buffer);
2286 defsubr (&Spop_to_buffer);
2287 defsubr (&Scurrent_buffer);
2288 defsubr (&Sset_buffer);
2289 defsubr (&Sbarf_if_buffer_read_only);
2290 defsubr (&Sbury_buffer);
2291 defsubr (&Slist_buffers);
2292 defsubr (&Skill_all_local_variables);
2eec3b4e 2293
52f8ec73 2294 defsubr (&Soverlayp);
2eec3b4e
RS
2295 defsubr (&Smake_overlay);
2296 defsubr (&Sdelete_overlay);
2297 defsubr (&Smove_overlay);
8ebafa8d
JB
2298 defsubr (&Soverlay_start);
2299 defsubr (&Soverlay_end);
2300 defsubr (&Soverlay_buffer);
2301 defsubr (&Soverlay_properties);
2eec3b4e
RS
2302 defsubr (&Soverlays_at);
2303 defsubr (&Snext_overlay_change);
2304 defsubr (&Soverlay_recenter);
2305 defsubr (&Soverlay_lists);
2306 defsubr (&Soverlay_get);
2307 defsubr (&Soverlay_put);
1ab256cb
RM
2308}
2309
2310keys_of_buffer ()
2311{
2312 initial_define_key (control_x_map, 'b', "switch-to-buffer");
2313 initial_define_key (control_x_map, 'k', "kill-buffer");
2314 initial_define_key (control_x_map, Ctl ('B'), "list-buffers");
2315}