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