Mercurial > emacs
annotate src/buffer.c @ 1962:d658e86a23ae
(emacs, temacs): Add @true to prevent Make confusion.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 28 Feb 1993 22:29:46 +0000 |
parents | 714df59790af |
children | 666e3f26a8d6 |
rev | line source |
---|---|
333 | 1 /* Buffer manipulation primitives for GNU Emacs. |
1953
714df59790af
(Ferase_buffer): Added interactive spec.
Roland McGrath <roland@gnu.org>
parents:
1952
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992, 1993 |
714df59790af
(Ferase_buffer): Added interactive spec.
Roland McGrath <roland@gnu.org>
parents:
1952
diff
changeset
|
3 Free Software Foundation, Inc. |
333 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
1953
714df59790af
(Ferase_buffer): Added interactive spec.
Roland McGrath <roland@gnu.org>
parents:
1952
diff
changeset
|
9 the Free Software Foundation; either version 2, or (at your option) |
333 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
20 | |
21 | |
1563
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
22 #include <sys/types.h> |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
23 #include <sys/stat.h> |
333 | 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 | |
31 #include "config.h" | |
32 #include "lisp.h" | |
1308
2660a7053836
* buffer.c: #include intervals.h.
Joseph Arceneaux <jla@gnu.org>
parents:
1291
diff
changeset
|
33 #include "intervals.h" |
333 | 34 #include "window.h" |
35 #include "commands.h" | |
36 #include "buffer.h" | |
37 #include "syntax.h" | |
38 #include "indent.h" | |
39 | |
40 struct buffer *current_buffer; /* the current buffer */ | |
41 | |
42 /* First buffer in chain of all buffers (in reverse order of creation). | |
43 Threaded through ->next. */ | |
44 | |
45 struct buffer *all_buffers; | |
46 | |
47 /* This structure holds the default values of the buffer-local variables | |
48 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer. | |
49 The default value occupies the same slot in this structure | |
50 as an individual buffer's value occupies in that buffer. | |
51 Setting the default value also goes through the alist of buffers | |
52 and stores into each buffer that does not say it has a local value. */ | |
53 | |
54 struct buffer buffer_defaults; | |
55 | |
56 /* A Lisp_Object pointer to the above, used for staticpro */ | |
57 | |
58 static Lisp_Object Vbuffer_defaults; | |
59 | |
60 /* This structure marks which slots in a buffer have corresponding | |
61 default values in buffer_defaults. | |
62 Each such slot has a nonzero value in this structure. | |
63 The value has only one nonzero bit. | |
64 | |
65 When a buffer has its own local value for a slot, | |
66 the bit for that slot (found in the same slot in this structure) | |
67 is turned on in the buffer's local_var_flags slot. | |
68 | |
69 If a slot in this structure is -1, then even though there may | |
70 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it; | |
71 and the corresponding slot in buffer_defaults is not used. | |
72 | |
73 If a slot is -2, then there is no DEFVAR_PER_BUFFER for it, | |
74 but there is a default value which is copied into each buffer. | |
75 | |
76 If a slot in this structure is negative, then even though there may | |
77 be a DEFVAR_PER_BUFFER for the slot, there is no default value for it; | |
78 and the corresponding slot in buffer_defaults is not used. | |
79 | |
80 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is | |
81 zero, that is a bug */ | |
82 | |
83 struct buffer buffer_local_flags; | |
84 | |
85 /* This structure holds the names of symbols whose values may be | |
86 buffer-local. It is indexed and accessed in the same way as the above. */ | |
87 | |
88 struct buffer buffer_local_symbols; | |
89 /* A Lisp_Object pointer to the above, used for staticpro */ | |
90 static Lisp_Object Vbuffer_local_symbols; | |
91 | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
92 /* This structure holds the required types for the values in the |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
93 buffer-local slots. If a slot contains Qnil, then the |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
94 corresponding buffer slot may contain a value of any type. If a |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
95 slot contains an integer, then prospective values' tags must be |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
96 equal to that integer. When a tag does not match, the function |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
97 buffer_slot_type_mismatch will signal an error. */ |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
98 struct buffer buffer_local_types; |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
99 |
333 | 100 /* Nonzero means don't allow modification of protected fields. */ |
101 | |
102 int check_protected_fields; | |
103 | |
104 Lisp_Object Fset_buffer (); | |
392 | 105 void set_buffer_internal (); |
333 | 106 |
107 /* Alist of all buffer names vs the buffers. */ | |
108 /* This used to be a variable, but is no longer, | |
109 to prevent lossage due to user rplac'ing this alist or its elements. */ | |
110 Lisp_Object Vbuffer_alist; | |
111 | |
112 /* Functions to call before and after each text change. */ | |
113 Lisp_Object Vbefore_change_function; | |
114 Lisp_Object Vafter_change_function; | |
115 | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1707
diff
changeset
|
116 /* List of functions to call before changing an unmodified buffer. */ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1707
diff
changeset
|
117 Lisp_Object Vfirst_change_hook; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1707
diff
changeset
|
118 Lisp_Object Qfirst_change_hook; |
333 | 119 |
120 Lisp_Object Qfundamental_mode, Qmode_class, Qpermanent_local; | |
121 | |
122 Lisp_Object Qprotected_field; | |
123 | |
124 Lisp_Object QSFundamental; /* A string "Fundamental" */ | |
125 | |
126 Lisp_Object Qkill_buffer_hook; | |
127 | |
128 /* For debugging; temporary. See set_buffer_internal. */ | |
129 /* Lisp_Object Qlisp_mode, Vcheck_symbol; */ | |
130 | |
131 nsberror (spec) | |
132 Lisp_Object spec; | |
133 { | |
134 if (XTYPE (spec) == Lisp_String) | |
135 error ("No buffer named %s", XSTRING (spec)->data); | |
136 error ("Invalid buffer argument"); | |
137 } | |
138 | |
139 DEFUN ("buffer-list", Fbuffer_list, Sbuffer_list, 0, 0, 0, | |
140 "Return a list of all existing live buffers.") | |
141 () | |
142 { | |
143 return Fmapcar (Qcdr, Vbuffer_alist); | |
144 } | |
145 | |
146 DEFUN ("get-buffer", Fget_buffer, Sget_buffer, 1, 1, 0, | |
147 "Return the buffer named NAME (a string).\n\ | |
148 If there is no live buffer named NAME, return nil.\n\ | |
149 NAME may also be a buffer; if so, the value is that buffer.") | |
150 (name) | |
151 register Lisp_Object name; | |
152 { | |
153 if (XTYPE (name) == Lisp_Buffer) | |
154 return name; | |
155 CHECK_STRING (name, 0); | |
156 | |
157 return Fcdr (Fassoc (name, Vbuffer_alist)); | |
158 } | |
159 | |
160 DEFUN ("get-file-buffer", Fget_file_buffer, Sget_file_buffer, 1, 1, 0, | |
161 "Return the buffer visiting file FILENAME (a string).\n\ | |
162 If there is no such live buffer, return nil.") | |
163 (filename) | |
164 register Lisp_Object filename; | |
165 { | |
166 register Lisp_Object tail, buf, tem; | |
167 CHECK_STRING (filename, 0); | |
168 filename = Fexpand_file_name (filename, Qnil); | |
169 | |
170 for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr) | |
171 { | |
172 buf = Fcdr (XCONS (tail)->car); | |
173 if (XTYPE (buf) != Lisp_Buffer) continue; | |
174 if (XTYPE (XBUFFER (buf)->filename) != Lisp_String) continue; | |
175 tem = Fstring_equal (XBUFFER (buf)->filename, filename); | |
485 | 176 if (!NILP (tem)) |
333 | 177 return buf; |
178 } | |
179 return Qnil; | |
180 } | |
181 | |
182 /* Incremented for each buffer created, to assign the buffer number. */ | |
183 int buffer_count; | |
184 | |
185 DEFUN ("get-buffer-create", Fget_buffer_create, Sget_buffer_create, 1, 1, 0, | |
186 "Return the buffer named NAME, or create such a buffer and return it.\n\ | |
187 A new buffer is created if there is no live buffer named NAME.\n\ | |
1195
beefc235076e
* buffer.c (Fget_buffer_create): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1041
diff
changeset
|
188 If NAME starts with a space, the new buffer does not keep undo information.\n\ |
333 | 189 If NAME is a buffer instead of a string, then it is the value returned.\n\ |
190 The value is never nil.") | |
191 (name) | |
192 register Lisp_Object name; | |
193 { | |
194 register Lisp_Object buf, function, tem; | |
195 int count = specpdl_ptr - specpdl; | |
196 register struct buffer *b; | |
197 | |
198 buf = Fget_buffer (name); | |
485 | 199 if (!NILP (buf)) |
333 | 200 return buf; |
201 | |
202 b = (struct buffer *) malloc (sizeof (struct buffer)); | |
203 if (!b) | |
204 memory_full (); | |
205 | |
206 BUF_GAP_SIZE (b) = 20; | |
207 BUFFER_ALLOC (BUF_BEG_ADDR (b), BUF_GAP_SIZE (b)); | |
208 if (! BUF_BEG_ADDR (b)) | |
209 memory_full (); | |
210 | |
211 BUF_PT (b) = 1; | |
212 BUF_GPT (b) = 1; | |
213 BUF_BEGV (b) = 1; | |
214 BUF_ZV (b) = 1; | |
215 BUF_Z (b) = 1; | |
216 BUF_MODIFF (b) = 1; | |
217 | |
218 /* Put this on the chain of all buffers including killed ones. */ | |
219 b->next = all_buffers; | |
220 all_buffers = b; | |
221 | |
222 b->mark = Fmake_marker (); | |
223 /*b->number = make_number (++buffer_count);*/ | |
224 b->name = name; | |
225 if (XSTRING (name)->data[0] != ' ') | |
226 b->undo_list = Qnil; | |
227 else | |
228 b->undo_list = Qt; | |
229 | |
230 reset_buffer (b); | |
231 | |
232 /* Put this in the alist of all live buffers. */ | |
233 XSET (buf, Lisp_Buffer, b); | |
234 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (Fcons (name, buf), Qnil)); | |
235 | |
236 b->mark = Fmake_marker (); | |
237 b->markers = Qnil; | |
238 b->name = name; | |
239 | |
240 function = buffer_defaults.major_mode; | |
485 | 241 if (NILP (function)) |
333 | 242 { |
243 tem = Fget (current_buffer->major_mode, Qmode_class); | |
244 if (EQ (tem, Qnil)) | |
245 function = current_buffer->major_mode; | |
246 } | |
247 | |
485 | 248 if (NILP (function) || EQ (function, Qfundamental_mode)) |
333 | 249 return buf; |
250 | |
251 /* To select a nonfundamental mode, | |
252 select the buffer temporarily and then call the mode function. */ | |
253 | |
254 record_unwind_protect (save_excursion_restore, save_excursion_save ()); | |
255 | |
256 Fset_buffer (buf); | |
257 call0 (function); | |
258 | |
259 return unbind_to (count, buf); | |
260 } | |
261 | |
262 /* Reinitialize everything about a buffer except its name and contents. */ | |
263 | |
264 void | |
265 reset_buffer (b) | |
266 register struct buffer *b; | |
267 { | |
268 b->filename = Qnil; | |
269 b->directory = (current_buffer) ? current_buffer->directory : Qnil; | |
270 b->modtime = 0; | |
271 b->save_modified = 1; | |
1501
c090f7dcfd27
* buffer.c (reset_buffer): Don't assign to b->save_length as if it
Jim Blandy <jimb@redhat.com>
parents:
1348
diff
changeset
|
272 XFASTINT (b->save_length) = 0; |
333 | 273 b->last_window_start = 1; |
274 b->backed_up = Qnil; | |
275 b->auto_save_modified = 0; | |
276 b->auto_save_file_name = Qnil; | |
277 b->read_only = Qnil; | |
278 b->fieldlist = Qnil; | |
1291
7c32612174c3
* buffer.c (reset_buffer): Do INITIALIZE_INTERVAL on the buffer's
Joseph Arceneaux <jla@gnu.org>
parents:
1281
diff
changeset
|
279 |
7c32612174c3
* buffer.c (reset_buffer): Do INITIALIZE_INTERVAL on the buffer's
Joseph Arceneaux <jla@gnu.org>
parents:
1281
diff
changeset
|
280 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ |
7c32612174c3
* buffer.c (reset_buffer): Do INITIALIZE_INTERVAL on the buffer's
Joseph Arceneaux <jla@gnu.org>
parents:
1281
diff
changeset
|
281 INITIALIZE_INTERVAL (b, NULL_INTERVAL); |
7c32612174c3
* buffer.c (reset_buffer): Do INITIALIZE_INTERVAL on the buffer's
Joseph Arceneaux <jla@gnu.org>
parents:
1281
diff
changeset
|
282 |
333 | 283 reset_buffer_local_variables(b); |
284 } | |
285 | |
286 reset_buffer_local_variables(b) | |
287 register struct buffer *b; | |
288 { | |
289 register int offset; | |
290 | |
291 /* Reset the major mode to Fundamental, together with all the | |
292 things that depend on the major mode. | |
293 default-major-mode is handled at a higher level. | |
294 We ignore it here. */ | |
295 b->major_mode = Qfundamental_mode; | |
296 b->keymap = Qnil; | |
297 b->abbrev_table = Vfundamental_mode_abbrev_table; | |
298 b->mode_name = QSFundamental; | |
299 b->minor_modes = Qnil; | |
300 b->downcase_table = Vascii_downcase_table; | |
301 b->upcase_table = Vascii_upcase_table; | |
302 b->case_canon_table = Vascii_downcase_table; | |
303 b->case_eqv_table = Vascii_upcase_table; | |
304 #if 0 | |
305 b->sort_table = XSTRING (Vascii_sort_table); | |
306 b->folding_sort_table = XSTRING (Vascii_folding_sort_table); | |
307 #endif /* 0 */ | |
308 | |
309 /* Reset all per-buffer variables to their defaults. */ | |
310 b->local_var_alist = Qnil; | |
311 b->local_var_flags = 0; | |
312 | |
313 /* For each slot that has a default value, | |
314 copy that into the slot. */ | |
315 | |
316 for (offset = (char *)&buffer_local_flags.name - (char *)&buffer_local_flags; | |
317 offset < sizeof (struct buffer); | |
318 offset += sizeof (Lisp_Object)) /* sizeof int == sizeof Lisp_Object */ | |
319 if (*(int *)(offset + (char *) &buffer_local_flags) > 0 | |
320 || *(int *)(offset + (char *) &buffer_local_flags) == -2) | |
321 *(Lisp_Object *)(offset + (char *)b) = | |
322 *(Lisp_Object *)(offset + (char *)&buffer_defaults); | |
323 } | |
324 | |
392 | 325 /* We split this away from generate-new-buffer, because rename-buffer |
326 and set-visited-file-name ought to be able to use this to really | |
327 rename the buffer properly. */ | |
328 | |
329 DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name, Sgenerate_new_buffer_name, | |
333 | 330 1, 1, 0, |
392 | 331 "Return a string that is the name of no existing buffer based on NAME.\n\ |
332 If there is no live buffer named NAME, then return NAME.\n\ | |
333 | 333 Otherwise modify name by appending `<NUMBER>', incrementing NUMBER\n\ |
392 | 334 until an unused name is found, and then return that name.") |
333 | 335 (name) |
336 register Lisp_Object name; | |
337 { | |
338 register Lisp_Object gentemp, tem; | |
339 int count; | |
340 char number[10]; | |
341 | |
342 CHECK_STRING (name, 0); | |
343 | |
344 tem = Fget_buffer (name); | |
485 | 345 if (NILP (tem)) |
392 | 346 return name; |
333 | 347 |
348 count = 1; | |
349 while (1) | |
350 { | |
351 sprintf (number, "<%d>", ++count); | |
352 gentemp = concat2 (name, build_string (number)); | |
353 tem = Fget_buffer (gentemp); | |
485 | 354 if (NILP (tem)) |
392 | 355 return gentemp; |
333 | 356 } |
357 } | |
358 | |
359 | |
360 DEFUN ("buffer-name", Fbuffer_name, Sbuffer_name, 0, 1, 0, | |
361 "Return the name of BUFFER, as a string.\n\ | |
392 | 362 With no argument or nil as argument, return the name of the current buffer.") |
333 | 363 (buffer) |
364 register Lisp_Object buffer; | |
365 { | |
485 | 366 if (NILP (buffer)) |
333 | 367 return current_buffer->name; |
368 CHECK_BUFFER (buffer, 0); | |
369 return XBUFFER (buffer)->name; | |
370 } | |
371 | |
372 DEFUN ("buffer-file-name", Fbuffer_file_name, Sbuffer_file_name, 0, 1, 0, | |
373 "Return name of file BUFFER is visiting, or nil if none.\n\ | |
374 No argument or nil as argument means use the current buffer.") | |
375 (buffer) | |
376 register Lisp_Object buffer; | |
377 { | |
485 | 378 if (NILP (buffer)) |
333 | 379 return current_buffer->filename; |
380 CHECK_BUFFER (buffer, 0); | |
381 return XBUFFER (buffer)->filename; | |
382 } | |
383 | |
384 DEFUN ("buffer-local-variables", Fbuffer_local_variables, | |
385 Sbuffer_local_variables, 0, 1, 0, | |
386 "Return an alist of variables that are buffer-local in BUFFER.\n\ | |
387 Each element looks like (SYMBOL . VALUE) and describes one variable.\n\ | |
388 Note that storing new VALUEs in these elements doesn't change the variables.\n\ | |
389 No argument or nil as argument means use current buffer as BUFFER.") | |
390 (buffer) | |
391 register Lisp_Object buffer; | |
392 { | |
393 register struct buffer *buf; | |
394 register Lisp_Object val; | |
395 | |
485 | 396 if (NILP (buffer)) |
333 | 397 buf = current_buffer; |
398 else | |
399 { | |
400 CHECK_BUFFER (buffer, 0); | |
401 buf = XBUFFER (buffer); | |
402 } | |
403 | |
404 { | |
405 /* Reference each variable in the alist in our current buffer. | |
406 If inquiring about the current buffer, this gets the current values, | |
407 so store them into the alist so the alist is up to date. | |
408 If inquiring about some other buffer, this swaps out any values | |
409 for that buffer, making the alist up to date automatically. */ | |
410 register Lisp_Object tem; | |
411 for (tem = buf->local_var_alist; CONSP (tem); tem = XCONS (tem)->cdr) | |
412 { | |
413 Lisp_Object v1 = Fsymbol_value (XCONS (XCONS (tem)->car)->car); | |
414 if (buf == current_buffer) | |
415 XCONS (XCONS (tem)->car)->cdr = v1; | |
416 } | |
417 } | |
418 | |
419 /* Make a copy of the alist, to return it. */ | |
420 val = Fcopy_alist (buf->local_var_alist); | |
421 | |
422 /* Add on all the variables stored in special slots. */ | |
423 { | |
424 register int offset, mask; | |
425 | |
426 for (offset = (char *)&buffer_local_symbols.name - (char *)&buffer_local_symbols; | |
427 offset < sizeof (struct buffer); | |
428 offset += (sizeof (int))) /* sizeof int == sizeof Lisp_Object */ | |
429 { | |
430 mask = *(int *)(offset + (char *) &buffer_local_flags); | |
431 if (mask == -1 || (buf->local_var_flags & mask)) | |
432 if (XTYPE (*(Lisp_Object *)(offset + (char *)&buffer_local_symbols)) | |
433 == Lisp_Symbol) | |
434 val = Fcons (Fcons (*(Lisp_Object *)(offset + (char *)&buffer_local_symbols), | |
435 *(Lisp_Object *)(offset + (char *)buf)), | |
436 val); | |
437 } | |
438 } | |
439 return (val); | |
440 } | |
441 | |
442 | |
443 DEFUN ("buffer-modified-p", Fbuffer_modified_p, Sbuffer_modified_p, | |
444 0, 1, 0, | |
445 "Return t if BUFFER was modified since its file was last read or saved.\n\ | |
446 No argument or nil as argument means use current buffer as BUFFER.") | |
447 (buffer) | |
448 register Lisp_Object buffer; | |
449 { | |
450 register struct buffer *buf; | |
485 | 451 if (NILP (buffer)) |
333 | 452 buf = current_buffer; |
453 else | |
454 { | |
455 CHECK_BUFFER (buffer, 0); | |
456 buf = XBUFFER (buffer); | |
457 } | |
458 | |
459 return buf->save_modified < BUF_MODIFF (buf) ? Qt : Qnil; | |
460 } | |
461 | |
462 DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p, Sset_buffer_modified_p, | |
463 1, 1, 0, | |
464 "Mark current buffer as modified or unmodified according to FLAG.\n\ | |
465 A non-nil FLAG means mark the buffer modified.") | |
466 (flag) | |
467 register Lisp_Object flag; | |
468 { | |
469 register int already; | |
470 register Lisp_Object fn; | |
471 | |
472 #ifdef CLASH_DETECTION | |
473 /* If buffer becoming modified, lock the file. | |
474 If buffer becoming unmodified, unlock the file. */ | |
475 | |
476 fn = current_buffer->filename; | |
485 | 477 if (!NILP (fn)) |
333 | 478 { |
479 already = current_buffer->save_modified < MODIFF; | |
485 | 480 if (!already && !NILP (flag)) |
333 | 481 lock_file (fn); |
485 | 482 else if (already && NILP (flag)) |
333 | 483 unlock_file (fn); |
484 } | |
485 #endif /* CLASH_DETECTION */ | |
486 | |
485 | 487 current_buffer->save_modified = NILP (flag) ? MODIFF : 0; |
333 | 488 update_mode_lines++; |
489 return flag; | |
490 } | |
491 | |
492 DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, Sbuffer_modified_tick, | |
493 0, 1, 0, | |
494 "Return BUFFER's tick counter, incremented for each change in text.\n\ | |
495 Each buffer has a tick counter which is incremented each time the text in\n\ | |
496 that buffer is changed. It wraps around occasionally.\n\ | |
497 No argument or nil as argument means use current buffer as BUFFER.") | |
498 (buffer) | |
499 register Lisp_Object buffer; | |
500 { | |
501 register struct buffer *buf; | |
485 | 502 if (NILP (buffer)) |
333 | 503 buf = current_buffer; |
504 else | |
505 { | |
506 CHECK_BUFFER (buffer, 0); | |
507 buf = XBUFFER (buffer); | |
508 } | |
509 | |
510 return make_number (BUF_MODIFF (buf)); | |
511 } | |
512 | |
392 | 513 DEFUN ("rename-buffer", Frename_buffer, Srename_buffer, 1, 2, |
1876
0ddafa88e654
(Frename_buffer): Make prefix arg set UNIQUE.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
514 "sRename buffer (to new name): \nP", |
333 | 515 "Change current buffer's name to NEWNAME (a string).\n\ |
1876
0ddafa88e654
(Frename_buffer): Make prefix arg set UNIQUE.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
516 If second arg UNIQUE is nil or omitted, it is an error if a\n\ |
392 | 517 buffer named NEWNAME already exists.\n\ |
1876
0ddafa88e654
(Frename_buffer): Make prefix arg set UNIQUE.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
518 If UNIQUE is non-nil, come up with a new name using\n\ |
392 | 519 `generate-new-buffer-name'.\n\ |
1876
0ddafa88e654
(Frename_buffer): Make prefix arg set UNIQUE.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
520 Interactively, you can set UNIQUE with a prefix argument.\n\ |
0ddafa88e654
(Frename_buffer): Make prefix arg set UNIQUE.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
521 We return the name we actually gave the buffer.\n\ |
333 | 522 This does not change the name of the visited file (if any).") |
1876
0ddafa88e654
(Frename_buffer): Make prefix arg set UNIQUE.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
523 (name, unique) |
0ddafa88e654
(Frename_buffer): Make prefix arg set UNIQUE.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
524 register Lisp_Object name, unique; |
333 | 525 { |
526 register Lisp_Object tem, buf; | |
527 | |
528 CHECK_STRING (name, 0); | |
529 tem = Fget_buffer (name); | |
392 | 530 if (XBUFFER (tem) == current_buffer) |
531 return current_buffer->name; | |
485 | 532 if (!NILP (tem)) |
392 | 533 { |
1876
0ddafa88e654
(Frename_buffer): Make prefix arg set UNIQUE.
Richard M. Stallman <rms@gnu.org>
parents:
1821
diff
changeset
|
534 if (!NILP (unique)) |
392 | 535 name = Fgenerate_new_buffer_name (name); |
536 else | |
537 error ("Buffer name \"%s\" is in use", XSTRING (name)->data); | |
538 } | |
333 | 539 |
540 current_buffer->name = name; | |
1707
86c951f6a444
* buffer.c (Frename_buffer): Set update_mode_lines.
Jim Blandy <jimb@redhat.com>
parents:
1586
diff
changeset
|
541 |
86c951f6a444
* buffer.c (Frename_buffer): Set update_mode_lines.
Jim Blandy <jimb@redhat.com>
parents:
1586
diff
changeset
|
542 /* Catch redisplay's attention. Unless we do this, the mode lines for |
86c951f6a444
* buffer.c (Frename_buffer): Set update_mode_lines.
Jim Blandy <jimb@redhat.com>
parents:
1586
diff
changeset
|
543 any windows displaying current_buffer will stay unchanged. */ |
86c951f6a444
* buffer.c (Frename_buffer): Set update_mode_lines.
Jim Blandy <jimb@redhat.com>
parents:
1586
diff
changeset
|
544 update_mode_lines++; |
86c951f6a444
* buffer.c (Frename_buffer): Set update_mode_lines.
Jim Blandy <jimb@redhat.com>
parents:
1586
diff
changeset
|
545 |
333 | 546 XSET (buf, Lisp_Buffer, current_buffer); |
547 Fsetcar (Frassq (buf, Vbuffer_alist), name); | |
485 | 548 if (NILP (current_buffer->filename) && !NILP (current_buffer->auto_save_file_name)) |
333 | 549 call0 (intern ("rename-auto-save-file")); |
392 | 550 return name; |
333 | 551 } |
552 | |
1281
1f6cfa3ea4cb
* buffer.c (Fother_buffer): Add back the VISIBLE_OK argument. It
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
553 DEFUN ("other-buffer", Fother_buffer, Sother_buffer, 0, 2, 0, |
333 | 554 "Return most recently selected buffer other than BUFFER.\n\ |
1281
1f6cfa3ea4cb
* buffer.c (Fother_buffer): Add back the VISIBLE_OK argument. It
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
555 Buffers not visible in windows are preferred to visible buffers,\n\ |
1f6cfa3ea4cb
* buffer.c (Fother_buffer): Add back the VISIBLE_OK argument. It
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
556 unless optional second argument VISIBLE-OK is non-nil.\n\ |
333 | 557 If no other buffer exists, the buffer `*scratch*' is returned.\n\ |
558 If BUFFER is omitted or nil, some interesting buffer is returned.") | |
1281
1f6cfa3ea4cb
* buffer.c (Fother_buffer): Add back the VISIBLE_OK argument. It
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
559 (buffer, visible_ok) |
1f6cfa3ea4cb
* buffer.c (Fother_buffer): Add back the VISIBLE_OK argument. It
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
560 register Lisp_Object buffer, visible_ok; |
333 | 561 { |
562 register Lisp_Object tail, buf, notsogood, tem; | |
563 notsogood = Qnil; | |
564 | |
485 | 565 for (tail = Vbuffer_alist; !NILP (tail); tail = Fcdr (tail)) |
333 | 566 { |
567 buf = Fcdr (Fcar (tail)); | |
568 if (EQ (buf, buffer)) | |
569 continue; | |
570 if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ') | |
571 continue; | |
1281
1f6cfa3ea4cb
* buffer.c (Fother_buffer): Add back the VISIBLE_OK argument. It
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
572 if (NILP (visible_ok)) |
1f6cfa3ea4cb
* buffer.c (Fother_buffer): Add back the VISIBLE_OK argument. It
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
573 tem = Fget_buffer_window (buf, Qnil); |
1f6cfa3ea4cb
* buffer.c (Fother_buffer): Add back the VISIBLE_OK argument. It
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
574 else |
1f6cfa3ea4cb
* buffer.c (Fother_buffer): Add back the VISIBLE_OK argument. It
Jim Blandy <jimb@redhat.com>
parents:
1253
diff
changeset
|
575 tem = Qnil; |
485 | 576 if (NILP (tem)) |
333 | 577 return buf; |
485 | 578 if (NILP (notsogood)) |
333 | 579 notsogood = buf; |
580 } | |
485 | 581 if (!NILP (notsogood)) |
333 | 582 return notsogood; |
583 return Fget_buffer_create (build_string ("*scratch*")); | |
584 } | |
585 | |
586 DEFUN ("buffer-disable-undo", Fbuffer_disable_undo, Sbuffer_disable_undo, 1,1, | |
587 0, | |
588 "Make BUFFER stop keeping undo information.") | |
648 | 589 (buffer) |
590 register Lisp_Object buffer; | |
333 | 591 { |
648 | 592 Lisp_Object real_buffer; |
593 | |
594 if (NILP (buffer)) | |
595 XSET (real_buffer, Lisp_Buffer, current_buffer); | |
596 else | |
597 { | |
598 real_buffer = Fget_buffer (buffer); | |
599 if (NILP (real_buffer)) | |
600 nsberror (buffer); | |
601 } | |
602 | |
603 XBUFFER (real_buffer)->undo_list = Qt; | |
604 | |
333 | 605 return Qnil; |
606 } | |
607 | |
608 DEFUN ("buffer-enable-undo", Fbuffer_enable_undo, Sbuffer_enable_undo, | |
609 0, 1, "", | |
610 "Start keeping undo information for buffer BUFFER.\n\ | |
611 No argument or nil as argument means do this for the current buffer.") | |
648 | 612 (buffer) |
613 register Lisp_Object buffer; | |
333 | 614 { |
648 | 615 Lisp_Object real_buffer; |
333 | 616 |
648 | 617 if (NILP (buffer)) |
618 XSET (real_buffer, Lisp_Buffer, current_buffer); | |
333 | 619 else |
620 { | |
648 | 621 real_buffer = Fget_buffer (buffer); |
622 if (NILP (real_buffer)) | |
623 nsberror (buffer); | |
333 | 624 } |
625 | |
648 | 626 if (EQ (XBUFFER (real_buffer)->undo_list, Qt)) |
627 XBUFFER (real_buffer)->undo_list = Qnil; | |
333 | 628 |
629 return Qnil; | |
630 } | |
631 | |
632 /* | |
633 DEFVAR_LISP ("kill-buffer-hook", no_cell, "\ | |
634 Hook to be run (by `run-hooks', which see) when a buffer is killed.\n\ | |
635 The buffer being killed will be current while the hook is running.\n\ | |
636 See `kill-buffer'." | |
637 */ | |
638 DEFUN ("kill-buffer", Fkill_buffer, Skill_buffer, 1, 1, "bKill buffer: ", | |
639 "Kill the buffer BUFFER.\n\ | |
640 The argument may be a buffer or may be the name of a buffer.\n\ | |
641 An argument of nil means kill the current buffer.\n\n\ | |
642 Value is t if the buffer is actually killed, nil if user says no.\n\n\ | |
643 The value of `kill-buffer-hook' (which may be local to that buffer),\n\ | |
644 if not void, is a list of functions to be called, with no arguments,\n\ | |
645 before the buffer is actually killed. The buffer to be killed is current\n\ | |
646 when the hook functions are called.\n\n\ | |
647 Any processes that have this buffer as the `process-buffer' are killed\n\ | |
648 with `delete-process'.") | |
649 (bufname) | |
650 Lisp_Object bufname; | |
651 { | |
652 Lisp_Object buf; | |
653 register struct buffer *b; | |
654 register Lisp_Object tem; | |
655 register struct Lisp_Marker *m; | |
656 struct gcpro gcpro1, gcpro2; | |
657 | |
485 | 658 if (NILP (bufname)) |
333 | 659 buf = Fcurrent_buffer (); |
660 else | |
661 buf = Fget_buffer (bufname); | |
485 | 662 if (NILP (buf)) |
333 | 663 nsberror (bufname); |
664 | |
665 b = XBUFFER (buf); | |
666 | |
667 /* Query if the buffer is still modified. */ | |
485 | 668 if (INTERACTIVE && !NILP (b->filename) |
333 | 669 && BUF_MODIFF (b) > b->save_modified) |
670 { | |
671 GCPRO2 (buf, bufname); | |
672 tem = do_yes_or_no_p (format1 ("Buffer %s modified; kill anyway? ", | |
673 XSTRING (b->name)->data)); | |
674 UNGCPRO; | |
485 | 675 if (NILP (tem)) |
333 | 676 return Qnil; |
677 } | |
678 | |
679 /* Run kill-buffer hook with the buffer to be killed the current buffer. */ | |
680 { | |
681 register Lisp_Object val; | |
682 int count = specpdl_ptr - specpdl; | |
683 | |
684 record_unwind_protect (save_excursion_restore, save_excursion_save ()); | |
685 set_buffer_internal (b); | |
686 call1 (Vrun_hooks, Qkill_buffer_hook); | |
687 unbind_to (count, Qnil); | |
688 } | |
689 | |
690 /* We have no more questions to ask. Verify that it is valid | |
691 to kill the buffer. This must be done after the questions | |
692 since anything can happen within do_yes_or_no_p. */ | |
693 | |
694 /* Don't kill the minibuffer now current. */ | |
695 if (EQ (buf, XWINDOW (minibuf_window)->buffer)) | |
696 return Qnil; | |
697 | |
485 | 698 if (NILP (b->name)) |
333 | 699 return Qnil; |
700 | |
701 /* Make this buffer not be current. | |
702 In the process, notice if this is the sole visible buffer | |
703 and give up if so. */ | |
704 if (b == current_buffer) | |
705 { | |
1348
f6ab9d1e1709
(Fkill_buffer): Pass 2nd arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1308
diff
changeset
|
706 tem = Fother_buffer (buf, Qnil); |
333 | 707 Fset_buffer (tem); |
708 if (b == current_buffer) | |
709 return Qnil; | |
710 } | |
711 | |
712 /* Now there is no question: we can kill the buffer. */ | |
713 | |
714 #ifdef CLASH_DETECTION | |
715 /* Unlock this buffer's file, if it is locked. */ | |
716 unlock_buffer (b); | |
717 #endif /* CLASH_DETECTION */ | |
718 | |
719 kill_buffer_processes (buf); | |
720 | |
721 tem = Vinhibit_quit; | |
722 Vinhibit_quit = Qt; | |
723 Vbuffer_alist = Fdelq (Frassq (buf, Vbuffer_alist), Vbuffer_alist); | |
724 Freplace_buffer_in_windows (buf); | |
725 Vinhibit_quit = tem; | |
726 | |
727 /* Delete any auto-save file. */ | |
728 if (XTYPE (b->auto_save_file_name) == Lisp_String) | |
729 { | |
730 Lisp_Object tem; | |
731 tem = Fsymbol_value (intern ("delete-auto-save-files")); | |
485 | 732 if (! NILP (tem)) |
333 | 733 unlink (XSTRING (b->auto_save_file_name)->data); |
734 } | |
735 | |
736 /* Unchain all markers of this buffer | |
737 and leave them pointing nowhere. */ | |
738 for (tem = b->markers; !EQ (tem, Qnil); ) | |
739 { | |
740 m = XMARKER (tem); | |
741 m->buffer = 0; | |
742 tem = m->chain; | |
743 m->chain = Qnil; | |
744 } | |
745 b->markers = Qnil; | |
746 | |
1291
7c32612174c3
* buffer.c (reset_buffer): Do INITIALIZE_INTERVAL on the buffer's
Joseph Arceneaux <jla@gnu.org>
parents:
1281
diff
changeset
|
747 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ |
7c32612174c3
* buffer.c (reset_buffer): Do INITIALIZE_INTERVAL on the buffer's
Joseph Arceneaux <jla@gnu.org>
parents:
1281
diff
changeset
|
748 INITIALIZE_INTERVAL (b, NULL_INTERVAL); |
7c32612174c3
* buffer.c (reset_buffer): Do INITIALIZE_INTERVAL on the buffer's
Joseph Arceneaux <jla@gnu.org>
parents:
1281
diff
changeset
|
749 /* Perhaps we should explicitly free the interval tree here... */ |
7c32612174c3
* buffer.c (reset_buffer): Do INITIALIZE_INTERVAL on the buffer's
Joseph Arceneaux <jla@gnu.org>
parents:
1281
diff
changeset
|
750 |
333 | 751 b->name = Qnil; |
752 BUFFER_FREE (BUF_BEG_ADDR (b)); | |
753 b->undo_list = Qnil; | |
754 | |
755 return Qt; | |
756 } | |
757 | |
550 | 758 /* Move the assoc for buffer BUF to the front of buffer-alist. Since |
759 we do this each time BUF is selected visibly, the more recently | |
760 selected buffers are always closer to the front of the list. This | |
761 means that other_buffer is more likely to choose a relevant buffer. */ | |
333 | 762 |
763 record_buffer (buf) | |
764 Lisp_Object buf; | |
765 { | |
766 register Lisp_Object link, prev; | |
767 | |
768 prev = Qnil; | |
769 for (link = Vbuffer_alist; CONSP (link); link = XCONS (link)->cdr) | |
770 { | |
771 if (EQ (XCONS (XCONS (link)->car)->cdr, buf)) | |
772 break; | |
773 prev = link; | |
774 } | |
775 | |
550 | 776 /* Effectively do Vbuffer_alist = Fdelq (link, Vbuffer_alist); |
777 we cannot use Fdelq itself here because it allows quitting. */ | |
333 | 778 |
485 | 779 if (NILP (prev)) |
333 | 780 Vbuffer_alist = XCONS (Vbuffer_alist)->cdr; |
781 else | |
782 XCONS (prev)->cdr = XCONS (XCONS (prev)->cdr)->cdr; | |
783 | |
784 XCONS(link)->cdr = Vbuffer_alist; | |
785 Vbuffer_alist = link; | |
786 } | |
787 | |
788 DEFUN ("switch-to-buffer", Fswitch_to_buffer, Sswitch_to_buffer, 1, 2, "BSwitch to buffer: ", | |
789 "Select buffer BUFFER in the current window.\n\ | |
790 BUFFER may be a buffer or a buffer name.\n\ | |
791 Optional second arg NORECORD non-nil means\n\ | |
792 do not put this buffer at the front of the list of recently selected ones.\n\ | |
793 \n\ | |
794 WARNING: This is NOT the way to work on another buffer temporarily\n\ | |
795 within a Lisp program! Use `set-buffer' instead. That avoids messing with\n\ | |
796 the window-buffer correspondences.") | |
797 (bufname, norecord) | |
798 Lisp_Object bufname, norecord; | |
799 { | |
800 register Lisp_Object buf; | |
801 Lisp_Object tem; | |
802 | |
803 if (EQ (minibuf_window, selected_window)) | |
804 error ("Cannot switch buffers in minibuffer window"); | |
805 tem = Fwindow_dedicated_p (selected_window); | |
485 | 806 if (!NILP (tem)) |
333 | 807 error ("Cannot switch buffers in a dedicated window"); |
808 | |
485 | 809 if (NILP (bufname)) |
1348
f6ab9d1e1709
(Fkill_buffer): Pass 2nd arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1308
diff
changeset
|
810 buf = Fother_buffer (Fcurrent_buffer (), Qnil); |
333 | 811 else |
812 buf = Fget_buffer_create (bufname); | |
813 Fset_buffer (buf); | |
485 | 814 if (NILP (norecord)) |
333 | 815 record_buffer (buf); |
816 | |
817 Fset_window_buffer (EQ (selected_window, minibuf_window) | |
1909
ea6c75bc0d38
* buffer.c (Fswitch_to_buffer): Pass the correct number of
Jim Blandy <jimb@redhat.com>
parents:
1876
diff
changeset
|
818 ? Fnext_window (minibuf_window, Qnil, Qnil) |
ea6c75bc0d38
* buffer.c (Fswitch_to_buffer): Pass the correct number of
Jim Blandy <jimb@redhat.com>
parents:
1876
diff
changeset
|
819 : selected_window, |
333 | 820 buf); |
821 | |
822 return Qnil; | |
823 } | |
824 | |
825 DEFUN ("pop-to-buffer", Fpop_to_buffer, Spop_to_buffer, 1, 2, 0, | |
826 "Select buffer BUFFER in some window, preferably a different one.\n\ | |
827 If BUFFER is nil, then some other buffer is chosen.\n\ | |
828 If `pop-up-windows' is non-nil, windows can be split to do this.\n\ | |
829 If optional second arg OTHER-WINDOW is non-nil, insist on finding another\n\ | |
830 window even if BUFFER is already visible in the selected window.") | |
831 (bufname, other) | |
832 Lisp_Object bufname, other; | |
833 { | |
834 register Lisp_Object buf; | |
485 | 835 if (NILP (bufname)) |
1348
f6ab9d1e1709
(Fkill_buffer): Pass 2nd arg to Fother_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
1308
diff
changeset
|
836 buf = Fother_buffer (Fcurrent_buffer (), Qnil); |
333 | 837 else |
838 buf = Fget_buffer_create (bufname); | |
839 Fset_buffer (buf); | |
840 record_buffer (buf); | |
841 Fselect_window (Fdisplay_buffer (buf, other)); | |
842 return Qnil; | |
843 } | |
844 | |
845 DEFUN ("current-buffer", Fcurrent_buffer, Scurrent_buffer, 0, 0, 0, | |
846 "Return the current buffer as a Lisp object.") | |
847 () | |
848 { | |
849 register Lisp_Object buf; | |
850 XSET (buf, Lisp_Buffer, current_buffer); | |
851 return buf; | |
852 } | |
853 | |
854 /* Set the current buffer to b */ | |
855 | |
856 void | |
857 set_buffer_internal (b) | |
858 register struct buffer *b; | |
859 { | |
860 register struct buffer *old_buf; | |
861 register Lisp_Object tail, valcontents; | |
862 enum Lisp_Type tem; | |
863 | |
864 if (current_buffer == b) | |
865 return; | |
866 | |
867 windows_or_buffers_changed = 1; | |
868 old_buf = current_buffer; | |
869 current_buffer = b; | |
870 last_known_column_point = -1; /* invalidate indentation cache */ | |
871 | |
872 /* Look down buffer's list of local Lisp variables | |
873 to find and update any that forward into C variables. */ | |
874 | |
485 | 875 for (tail = b->local_var_alist; !NILP (tail); tail = XCONS (tail)->cdr) |
333 | 876 { |
877 valcontents = XSYMBOL (XCONS (XCONS (tail)->car)->car)->value; | |
878 if ((XTYPE (valcontents) == Lisp_Buffer_Local_Value | |
879 || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value) | |
880 && (tem = XTYPE (XCONS (valcontents)->car), | |
881 (tem == Lisp_Boolfwd || tem == Lisp_Intfwd | |
882 || tem == Lisp_Objfwd))) | |
883 /* Just reference the variable | |
884 to cause it to become set for this buffer. */ | |
885 Fsymbol_value (XCONS (XCONS (tail)->car)->car); | |
886 } | |
887 | |
888 /* Do the same with any others that were local to the previous buffer */ | |
889 | |
890 if (old_buf) | |
485 | 891 for (tail = old_buf->local_var_alist; !NILP (tail); tail = XCONS (tail)->cdr) |
333 | 892 { |
893 valcontents = XSYMBOL (XCONS (XCONS (tail)->car)->car)->value; | |
894 if ((XTYPE (valcontents) == Lisp_Buffer_Local_Value | |
895 || XTYPE (valcontents) == Lisp_Some_Buffer_Local_Value) | |
896 && (tem = XTYPE (XCONS (valcontents)->car), | |
897 (tem == Lisp_Boolfwd || tem == Lisp_Intfwd | |
898 || tem == Lisp_Objfwd))) | |
899 /* Just reference the variable | |
900 to cause it to become set for this buffer. */ | |
901 Fsymbol_value (XCONS (XCONS (tail)->car)->car); | |
902 } | |
903 } | |
904 | |
905 DEFUN ("set-buffer", Fset_buffer, Sset_buffer, 1, 1, 0, | |
906 "Make the buffer BUFFER current for editing operations.\n\ | |
907 BUFFER may be a buffer or the name of an existing buffer.\n\ | |
908 See also `save-excursion' when you want to make a buffer current temporarily.\n\ | |
909 This function does not display the buffer, so its effect ends\n\ | |
910 when the current command terminates.\n\ | |
911 Use `switch-to-buffer' or `pop-to-buffer' to switch buffers permanently.") | |
912 (bufname) | |
913 register Lisp_Object bufname; | |
914 { | |
915 register Lisp_Object buffer; | |
916 buffer = Fget_buffer (bufname); | |
485 | 917 if (NILP (buffer)) |
333 | 918 nsberror (bufname); |
485 | 919 if (NILP (XBUFFER (buffer)->name)) |
333 | 920 error ("Selecting deleted buffer"); |
921 set_buffer_internal (XBUFFER (buffer)); | |
922 return buffer; | |
923 } | |
924 | |
925 DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only, | |
926 Sbarf_if_buffer_read_only, 0, 0, 0, | |
927 "Signal a `buffer-read-only' error if the current buffer is read-only.") | |
928 () | |
929 { | |
485 | 930 while (!NILP (current_buffer->read_only)) |
333 | 931 Fsignal (Qbuffer_read_only, (Fcons (Fcurrent_buffer (), Qnil))); |
932 return Qnil; | |
933 } | |
934 | |
935 DEFUN ("bury-buffer", Fbury_buffer, Sbury_buffer, 0, 1, "", | |
936 "Put BUFFER at the end of the list of all buffers.\n\ | |
937 There it is the least likely candidate for `other-buffer' to return;\n\ | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
938 thus, the least likely buffer for \\[switch-to-buffer] to select by default.\n\ |
1586
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
939 If BUFFER is nil or omitted, bury the current buffer.\n\ |
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
940 Also, if BUFFER is nil or omitted, remove the current buffer from the\n\ |
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
941 selected window if it is displayed there.") |
333 | 942 (buf) |
943 register Lisp_Object buf; | |
944 { | |
1252
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
945 /* Figure out what buffer we're going to bury. */ |
485 | 946 if (NILP (buf)) |
1586
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
947 { |
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
948 XSET (buf, Lisp_Buffer, current_buffer); |
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
949 |
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
950 /* If we're burying the current buffer, unshow it. */ |
1909
ea6c75bc0d38
* buffer.c (Fswitch_to_buffer): Pass the correct number of
Jim Blandy <jimb@redhat.com>
parents:
1876
diff
changeset
|
951 Fswitch_to_buffer (Fother_buffer (buf, Qnil), Qnil); |
1586
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
952 } |
333 | 953 else |
954 { | |
955 Lisp_Object buf1; | |
956 | |
957 buf1 = Fget_buffer (buf); | |
485 | 958 if (NILP (buf1)) |
333 | 959 nsberror (buf); |
960 buf = buf1; | |
1252
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
961 } |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
962 |
1586
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
963 /* Move buf to the end of the buffer list. */ |
1252
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
964 { |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
965 register Lisp_Object aelt, link; |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
966 |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
967 aelt = Frassq (buf, Vbuffer_alist); |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
968 link = Fmemq (aelt, Vbuffer_alist); |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
969 Vbuffer_alist = Fdelq (aelt, Vbuffer_alist); |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
970 XCONS (link)->cdr = Qnil; |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
971 Vbuffer_alist = nconc2 (Vbuffer_alist, link); |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
972 } |
86a17674c2a1
* buffer.c (Fbury_buffer): This used to undisplay the buffer being
Jim Blandy <jimb@redhat.com>
parents:
1195
diff
changeset
|
973 |
333 | 974 return Qnil; |
975 } | |
976 | |
1953
714df59790af
(Ferase_buffer): Added interactive spec.
Roland McGrath <roland@gnu.org>
parents:
1952
diff
changeset
|
977 DEFUN ("erase-buffer", Ferase_buffer, Serase_buffer, 0, 0, "*", |
333 | 978 "Delete the entire contents of the current buffer.\n\ |
1586
f84e400808d0
* buffer.c (Ferase_buffer): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1563
diff
changeset
|
979 Any clipping restriction in effect (see `narrow-to-region') is removed,\n\ |
333 | 980 so the buffer is truly empty after this.") |
981 () | |
982 { | |
983 Fwiden (); | |
984 del_range (BEG, Z); | |
985 current_buffer->last_window_start = 1; | |
986 /* Prevent warnings, or suspension of auto saving, that would happen | |
987 if future size is less than past size. Use of erase-buffer | |
988 implies that the future text is not really related to the past text. */ | |
989 XFASTINT (current_buffer->save_length) = 0; | |
990 return Qnil; | |
991 } | |
992 | |
993 validate_region (b, e) | |
994 register Lisp_Object *b, *e; | |
995 { | |
996 register int i; | |
997 | |
998 CHECK_NUMBER_COERCE_MARKER (*b, 0); | |
999 CHECK_NUMBER_COERCE_MARKER (*e, 1); | |
1000 | |
1001 if (XINT (*b) > XINT (*e)) | |
1002 { | |
1003 i = XFASTINT (*b); /* This is legit even if *b is < 0 */ | |
1004 *b = *e; | |
1005 XFASTINT (*e) = i; /* because this is all we do with i. */ | |
1006 } | |
1007 | |
1008 if (!(BEGV <= XINT (*b) && XINT (*b) <= XINT (*e) | |
1009 && XINT (*e) <= ZV)) | |
1010 args_out_of_range (*b, *e); | |
1011 } | |
1012 | |
1013 Lisp_Object | |
1014 list_buffers_1 (files) | |
1015 Lisp_Object files; | |
1016 { | |
1017 register Lisp_Object tail, tem, buf; | |
1018 Lisp_Object col1, col2, col3, minspace; | |
1019 register struct buffer *old = current_buffer, *b; | |
1020 int desired_point = 0; | |
1021 Lisp_Object other_file_symbol; | |
1022 | |
1023 other_file_symbol = intern ("list-buffers-directory"); | |
1024 | |
1025 XFASTINT (col1) = 19; | |
1026 XFASTINT (col2) = 25; | |
1027 XFASTINT (col3) = 40; | |
1028 XFASTINT (minspace) = 1; | |
1029 | |
1030 Fset_buffer (Vstandard_output); | |
1031 | |
1032 tail = intern ("Buffer-menu-mode"); | |
1033 if (!EQ (tail, current_buffer->major_mode) | |
485 | 1034 && (tem = Ffboundp (tail), !NILP (tem))) |
333 | 1035 call0 (tail); |
1036 Fbuffer_disable_undo (Vstandard_output); | |
1037 current_buffer->read_only = Qnil; | |
1038 | |
1039 write_string ("\ | |
1040 MR Buffer Size Mode File\n\ | |
1041 -- ------ ---- ---- ----\n", -1); | |
1042 | |
485 | 1043 for (tail = Vbuffer_alist; !NILP (tail); tail = Fcdr (tail)) |
333 | 1044 { |
1045 buf = Fcdr (Fcar (tail)); | |
1046 b = XBUFFER (buf); | |
1047 /* Don't mention the minibuffers. */ | |
1048 if (XSTRING (b->name)->data[0] == ' ') | |
1049 continue; | |
1050 /* Optionally don't mention buffers that lack files. */ | |
485 | 1051 if (!NILP (files) && NILP (b->filename)) |
333 | 1052 continue; |
1053 /* Identify the current buffer. */ | |
1054 if (b == old) | |
1055 desired_point = point; | |
1056 write_string (b == old ? "." : " ", -1); | |
1057 /* Identify modified buffers */ | |
1058 write_string (BUF_MODIFF (b) > b->save_modified ? "*" : " ", -1); | |
485 | 1059 write_string (NILP (b->read_only) ? " " : "% ", -1); |
333 | 1060 Fprinc (b->name, Qnil); |
1061 Findent_to (col1, make_number (2)); | |
1062 XFASTINT (tem) = BUF_Z (b) - BUF_BEG (b); | |
1063 Fprin1 (tem, Qnil); | |
1064 Findent_to (col2, minspace); | |
1065 Fprinc (b->mode_name, Qnil); | |
1066 Findent_to (col3, minspace); | |
1067 | |
485 | 1068 if (!NILP (b->filename)) |
333 | 1069 Fprinc (b->filename, Qnil); |
1070 else | |
1071 { | |
1072 /* No visited file; check local value of list-buffers-directory. */ | |
1073 Lisp_Object tem; | |
1074 set_buffer_internal (b); | |
1075 tem = Fboundp (other_file_symbol); | |
485 | 1076 if (!NILP (tem)) |
333 | 1077 { |
1078 tem = Fsymbol_value (other_file_symbol); | |
1079 Fset_buffer (Vstandard_output); | |
1080 if (XTYPE (tem) == Lisp_String) | |
1081 Fprinc (tem, Qnil); | |
1082 } | |
1083 else | |
1084 Fset_buffer (Vstandard_output); | |
1085 } | |
1086 write_string ("\n", -1); | |
1087 } | |
1088 | |
1089 current_buffer->read_only = Qt; | |
1090 set_buffer_internal (old); | |
1091 /* Foo. This doesn't work since temp_output_buffer_show sets point to 1 | |
1092 if (desired_point) | |
1093 XBUFFER (Vstandard_output)->text.pointloc = desired_point; | |
1094 */ | |
1095 return Qnil; | |
1096 } | |
1097 | |
1098 DEFUN ("list-buffers", Flist_buffers, Slist_buffers, 0, 1, "P", | |
1099 "Display a list of names of existing buffers.\n\ | |
1100 The list is displayed in a buffer named `*Buffer List*'.\n\ | |
1101 Note that buffers with names starting with spaces are omitted.\n\ | |
1102 Non-null optional arg FILES-ONLY means mention only file buffers.\n\ | |
1103 \n\ | |
1104 The M column contains a * for buffers that are modified.\n\ | |
1105 The R column contains a % for buffers that are read-only.") | |
1106 (files) | |
1107 Lisp_Object files; | |
1108 { | |
1109 internal_with_output_to_temp_buffer ("*Buffer List*", | |
1110 list_buffers_1, files); | |
1111 return Qnil; | |
1112 } | |
1113 | |
1114 DEFUN ("kill-all-local-variables", Fkill_all_local_variables, Skill_all_local_variables, | |
1115 0, 0, 0, | |
1116 "Switch to Fundamental mode by killing current buffer's local variables.\n\ | |
1117 Most local variable bindings are eliminated so that the default values\n\ | |
1118 become effective once more. Also, the syntax table is set from\n\ | |
1119 `standard-syntax-table', the local keymap is set to nil,\n\ | |
1120 and the abbrev table from `fundamental-mode-abbrev-table'.\n\ | |
1121 This function also forces redisplay of the mode line.\n\ | |
1122 \n\ | |
1123 Every function to select a new major mode starts by\n\ | |
1124 calling this function.\n\n\ | |
1125 As a special exception, local variables whose names have\n\ | |
1126 a non-nil `permanent-local' property are not eliminated by this function.") | |
1127 () | |
1128 { | |
1129 register Lisp_Object alist, sym, tem; | |
1130 Lisp_Object oalist; | |
1131 oalist = current_buffer->local_var_alist; | |
1132 | |
1133 /* Make sure no local variables remain set up with this buffer | |
1134 for their current values. */ | |
1135 | |
485 | 1136 for (alist = oalist; !NILP (alist); alist = XCONS (alist)->cdr) |
333 | 1137 { |
1138 sym = XCONS (XCONS (alist)->car)->car; | |
1139 | |
1140 /* Need not do anything if some other buffer's binding is now encached. */ | |
1141 tem = XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->car; | |
1142 if (XBUFFER (tem) == current_buffer) | |
1143 { | |
1144 /* Symbol is set up for this buffer's old local value. | |
1145 Set it up for the current buffer with the default value. */ | |
1146 | |
1147 tem = XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->cdr; | |
1148 XCONS (tem)->car = tem; | |
1149 XCONS (XCONS (XSYMBOL (sym)->value)->cdr)->car = Fcurrent_buffer (); | |
1150 store_symval_forwarding (sym, XCONS (XSYMBOL (sym)->value)->car, | |
1151 XCONS (tem)->cdr); | |
1152 } | |
1153 } | |
1154 | |
1155 /* Actually eliminate all local bindings of this buffer. */ | |
1156 | |
1157 reset_buffer_local_variables (current_buffer); | |
1158 | |
1159 /* Redisplay mode lines; we are changing major mode. */ | |
1160 | |
1161 update_mode_lines++; | |
1162 | |
1163 /* Any which are supposed to be permanent, | |
1164 make local again, with the same values they had. */ | |
1165 | |
485 | 1166 for (alist = oalist; !NILP (alist); alist = XCONS (alist)->cdr) |
333 | 1167 { |
1168 sym = XCONS (XCONS (alist)->car)->car; | |
1169 tem = Fget (sym, Qpermanent_local); | |
485 | 1170 if (! NILP (tem)) |
392 | 1171 { |
1172 Fmake_local_variable (sym); | |
1173 Fset (sym, XCONS (XCONS (alist)->car)->cdr); | |
1174 } | |
333 | 1175 } |
1176 | |
1177 /* Force mode-line redisplay. Useful here because all major mode | |
1178 commands call this function. */ | |
1179 update_mode_lines++; | |
1180 | |
1181 return Qnil; | |
1182 } | |
1183 | |
1184 DEFUN ("region-fields", Fregion_fields, Sregion_fields, 2, 4, "", | |
1185 "Return list of fields overlapping a given portion of a buffer.\n\ | |
1186 The portion is specified by arguments START, END and BUFFER.\n\ | |
1187 BUFFER defaults to the current buffer.\n\ | |
1188 Optional 4th arg ERROR-CHECK non nil means just report an error\n\ | |
1189 if any protected fields overlap this portion.") | |
1190 (start, end, buffer, error_check) | |
1191 Lisp_Object start, end, buffer, error_check; | |
1192 { | |
1193 register int start_loc, end_loc; | |
1194 Lisp_Object fieldlist; | |
1195 Lisp_Object collector; | |
1196 | |
485 | 1197 if (NILP (buffer)) |
333 | 1198 fieldlist = current_buffer->fieldlist; |
1199 else | |
1200 { | |
1201 CHECK_BUFFER (buffer, 1); | |
1202 fieldlist = XBUFFER (buffer)->fieldlist; | |
1203 } | |
1204 | |
1205 CHECK_NUMBER_COERCE_MARKER (start, 2); | |
1206 start_loc = XINT (start); | |
1207 | |
1208 CHECK_NUMBER_COERCE_MARKER (end, 2); | |
1209 end_loc = XINT (end); | |
1210 | |
1211 collector = Qnil; | |
1212 | |
1213 while (XTYPE (fieldlist) == Lisp_Cons) | |
1214 { | |
1215 register Lisp_Object field; | |
1216 register int field_start, field_end; | |
1217 | |
1218 field = XCONS (fieldlist)->car; | |
1219 field_start = marker_position (FIELD_START_MARKER (field)) - 1; | |
1220 field_end = marker_position (FIELD_END_MARKER (field)); | |
1221 | |
1222 if ((start_loc < field_start && end_loc > field_start) | |
1223 || (start_loc >= field_start && start_loc < field_end)) | |
1224 { | |
485 | 1225 if (!NILP (error_check)) |
333 | 1226 { |
485 | 1227 if (!NILP (FIELD_PROTECTED_FLAG (field))) |
333 | 1228 { |
1229 struct gcpro gcpro1; | |
1230 GCPRO1 (fieldlist); | |
1231 Fsignal (Qprotected_field, Fcons (field, Qnil)); | |
1232 UNGCPRO; | |
1233 } | |
1234 } | |
1235 else | |
1236 collector = Fcons (field, collector); | |
1237 } | |
1238 | |
1239 fieldlist = XCONS (fieldlist)->cdr; | |
1240 } | |
1241 | |
1242 return collector; | |
1243 } | |
1244 | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1245 /* Somebody has tried to store NEWVAL into the buffer-local slot with |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1246 offset XUINT (valcontents), and NEWVAL has an unacceptable type. */ |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1247 void |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1248 buffer_slot_type_mismatch (valcontents, newval) |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1249 Lisp_Object valcontents, newval; |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1250 { |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1251 unsigned int offset = XUINT (valcontents); |
1909
ea6c75bc0d38
* buffer.c (Fswitch_to_buffer): Pass the correct number of
Jim Blandy <jimb@redhat.com>
parents:
1876
diff
changeset
|
1252 unsigned char *symbol_name = |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1253 (XSYMBOL (*(Lisp_Object *)(offset + (char *)&buffer_local_symbols)) |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1254 ->name->data); |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1255 char *type_name; |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1256 |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1257 switch (XINT (*(Lisp_Object *)(offset + (char *)&buffer_local_types))) |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1258 { |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1259 case Lisp_Int: type_name = "integers"; break; |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1260 case Lisp_String: type_name = "strings"; break; |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1261 case Lisp_Marker: type_name = "markers"; break; |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1262 case Lisp_Symbol: type_name = "symbols"; break; |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1263 case Lisp_Cons: type_name = "lists"; break; |
1909
ea6c75bc0d38
* buffer.c (Fswitch_to_buffer): Pass the correct number of
Jim Blandy <jimb@redhat.com>
parents:
1876
diff
changeset
|
1264 case Lisp_Vector: type_name = "vectors"; break; |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1265 default: |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1266 abort (); |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1267 } |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1268 |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1269 error ("only %s should be stored in the buffer-local variable %s", |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1270 type_name, symbol_name); |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1271 } |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1272 |
333 | 1273 init_buffer_once () |
1274 { | |
1275 register Lisp_Object tem; | |
1276 | |
1277 /* Make sure all markable slots in buffer_defaults | |
1278 are initialized reasonably, so mark_buffer won't choke. */ | |
1279 reset_buffer (&buffer_defaults); | |
1280 reset_buffer (&buffer_local_symbols); | |
1281 XSET (Vbuffer_defaults, Lisp_Buffer, &buffer_defaults); | |
1282 XSET (Vbuffer_local_symbols, Lisp_Buffer, &buffer_local_symbols); | |
1283 | |
1284 /* Set up the default values of various buffer slots. */ | |
1285 /* Must do these before making the first buffer! */ | |
1286 | |
1287 /* real setup is done in loaddefs.el */ | |
1288 buffer_defaults.mode_line_format = build_string ("%-"); | |
1289 buffer_defaults.abbrev_mode = Qnil; | |
1290 buffer_defaults.overwrite_mode = Qnil; | |
1291 buffer_defaults.case_fold_search = Qt; | |
1292 buffer_defaults.auto_fill_function = Qnil; | |
1293 buffer_defaults.selective_display = Qnil; | |
1294 #ifndef old | |
1295 buffer_defaults.selective_display_ellipses = Qt; | |
1296 #endif | |
1297 buffer_defaults.abbrev_table = Qnil; | |
1298 buffer_defaults.display_table = Qnil; | |
1299 buffer_defaults.fieldlist = Qnil; | |
1300 buffer_defaults.undo_list = Qnil; | |
1301 | |
1302 XFASTINT (buffer_defaults.tab_width) = 8; | |
1303 buffer_defaults.truncate_lines = Qnil; | |
1304 buffer_defaults.ctl_arrow = Qt; | |
1305 | |
1306 XFASTINT (buffer_defaults.fill_column) = 70; | |
1307 XFASTINT (buffer_defaults.left_margin) = 0; | |
1308 | |
1309 /* Assign the local-flags to the slots that have default values. | |
1310 The local flag is a bit that is used in the buffer | |
1311 to say that it has its own local value for the slot. | |
1312 The local flag bits are in the local_var_flags slot of the buffer. */ | |
1313 | |
1314 /* Nothing can work if this isn't true */ | |
1315 if (sizeof (int) != sizeof (Lisp_Object)) abort (); | |
1316 | |
1317 /* 0 means not a lisp var, -1 means always local, else mask */ | |
1318 bzero (&buffer_local_flags, sizeof buffer_local_flags); | |
1319 XFASTINT (buffer_local_flags.filename) = -1; | |
1320 XFASTINT (buffer_local_flags.directory) = -1; | |
1321 XFASTINT (buffer_local_flags.backed_up) = -1; | |
1322 XFASTINT (buffer_local_flags.save_length) = -1; | |
1323 XFASTINT (buffer_local_flags.auto_save_file_name) = -1; | |
1324 XFASTINT (buffer_local_flags.read_only) = -1; | |
1325 XFASTINT (buffer_local_flags.major_mode) = -1; | |
1326 XFASTINT (buffer_local_flags.mode_name) = -1; | |
1327 XFASTINT (buffer_local_flags.undo_list) = -1; | |
1328 | |
1329 XFASTINT (buffer_local_flags.mode_line_format) = 1; | |
1330 XFASTINT (buffer_local_flags.abbrev_mode) = 2; | |
1331 XFASTINT (buffer_local_flags.overwrite_mode) = 4; | |
1332 XFASTINT (buffer_local_flags.case_fold_search) = 8; | |
1333 XFASTINT (buffer_local_flags.auto_fill_function) = 0x10; | |
1334 XFASTINT (buffer_local_flags.selective_display) = 0x20; | |
1335 #ifndef old | |
1336 XFASTINT (buffer_local_flags.selective_display_ellipses) = 0x40; | |
1337 #endif | |
1338 XFASTINT (buffer_local_flags.tab_width) = 0x80; | |
1339 XFASTINT (buffer_local_flags.truncate_lines) = 0x100; | |
1340 XFASTINT (buffer_local_flags.ctl_arrow) = 0x200; | |
1341 XFASTINT (buffer_local_flags.fill_column) = 0x400; | |
1342 XFASTINT (buffer_local_flags.left_margin) = 0x800; | |
1343 XFASTINT (buffer_local_flags.abbrev_table) = 0x1000; | |
1344 XFASTINT (buffer_local_flags.display_table) = 0x2000; | |
1345 XFASTINT (buffer_local_flags.fieldlist) = 0x4000; | |
1346 XFASTINT (buffer_local_flags.syntax_table) = 0x8000; | |
1347 | |
1348 Vbuffer_alist = Qnil; | |
1349 current_buffer = 0; | |
1350 all_buffers = 0; | |
1351 | |
1352 QSFundamental = build_string ("Fundamental"); | |
1353 | |
1354 Qfundamental_mode = intern ("fundamental-mode"); | |
1355 buffer_defaults.major_mode = Qfundamental_mode; | |
1356 | |
1357 Qmode_class = intern ("mode-class"); | |
1358 | |
1359 Qprotected_field = intern ("protected-field"); | |
1360 | |
1361 Qpermanent_local = intern ("permanent-local"); | |
1362 | |
1363 Qkill_buffer_hook = intern ("kill-buffer-hook"); | |
1364 | |
1365 Vprin1_to_string_buffer = Fget_buffer_create (build_string (" prin1")); | |
1366 /* super-magic invisible buffer */ | |
1367 Vbuffer_alist = Qnil; | |
1368 | |
648 | 1369 Fset_buffer (Fget_buffer_create (build_string ("*scratch*"))); |
333 | 1370 } |
1371 | |
1372 init_buffer () | |
1373 { | |
1374 char buf[MAXPATHLEN+1]; | |
1563
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1375 char *pwd; |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1376 struct stat dotstat, pwdstat; |
333 | 1377 |
1378 Fset_buffer (Fget_buffer_create (build_string ("*scratch*"))); | |
1563
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1379 |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1380 /* If PWD is accurate, use it instead of calling getwd. This is faster |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1381 when PWD is right, and may avoid a fatal error. */ |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1382 if ((pwd = getenv ("PWD")) != 0 && *pwd == '/' |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1383 && stat (pwd, &pwdstat) == 0 |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1384 && stat (".", &dotstat) == 0 |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1385 && dotstat.st_ino == pwdstat.st_ino |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1386 && dotstat.st_dev == pwdstat.st_dev |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1387 && strlen (pwd) < MAXPATHLEN) |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1388 strcpy (buf, pwd); |
e721339972b0
* buffer.c (init_buffer): If PWD is accurate, use it instead of
Jim Blandy <jimb@redhat.com>
parents:
1501
diff
changeset
|
1389 else if (getwd (buf) == 0) |
333 | 1390 fatal ("`getwd' failed: %s.\n", buf); |
1391 | |
1392 #ifndef VMS | |
1393 /* Maybe this should really use some standard subroutine | |
1394 whose definition is filename syntax dependent. */ | |
1395 if (buf[strlen (buf) - 1] != '/') | |
1396 strcat (buf, "/"); | |
1397 #endif /* not VMS */ | |
1398 current_buffer->directory = build_string (buf); | |
1399 } | |
1400 | |
1401 /* initialize the buffer routines */ | |
1402 syms_of_buffer () | |
1403 { | |
1404 staticpro (&Vbuffer_defaults); | |
1405 staticpro (&Vbuffer_local_symbols); | |
1406 staticpro (&Qfundamental_mode); | |
1407 staticpro (&Qmode_class); | |
1408 staticpro (&QSFundamental); | |
1409 staticpro (&Vbuffer_alist); | |
1410 staticpro (&Qprotected_field); | |
1411 staticpro (&Qpermanent_local); | |
1412 staticpro (&Qkill_buffer_hook); | |
1413 | |
1414 Fput (Qprotected_field, Qerror_conditions, | |
1415 Fcons (Qprotected_field, Fcons (Qerror, Qnil))); | |
1416 Fput (Qprotected_field, Qerror_message, | |
1417 build_string ("Attempt to modify a protected field")); | |
1418 | |
1419 /* All these use DEFVAR_LISP_NOPRO because the slots in | |
1420 buffer_defaults will all be marked via Vbuffer_defaults. */ | |
1421 | |
1422 DEFVAR_LISP_NOPRO ("default-mode-line-format", | |
1423 &buffer_defaults.mode_line_format, | |
1424 "Default value of `mode-line-format' for buffers that don't override it.\n\ | |
1425 This is the same as (default-value 'mode-line-format)."); | |
1426 | |
1427 DEFVAR_LISP_NOPRO ("default-abbrev-mode", | |
1428 &buffer_defaults.abbrev_mode, | |
1429 "Default value of `abbrev-mode' for buffers that do not override it.\n\ | |
1430 This is the same as (default-value 'abbrev-mode)."); | |
1431 | |
1432 DEFVAR_LISP_NOPRO ("default-ctl-arrow", | |
1433 &buffer_defaults.ctl_arrow, | |
1434 "Default value of `ctl-arrow' for buffers that do not override it.\n\ | |
1435 This is the same as (default-value 'ctl-arrow)."); | |
1436 | |
1437 DEFVAR_LISP_NOPRO ("default-truncate-lines", | |
1438 &buffer_defaults.truncate_lines, | |
1439 "Default value of `truncate-lines' for buffers that do not override it.\n\ | |
1440 This is the same as (default-value 'truncate-lines)."); | |
1441 | |
1442 DEFVAR_LISP_NOPRO ("default-fill-column", | |
1443 &buffer_defaults.fill_column, | |
1444 "Default value of `fill-column' for buffers that do not override it.\n\ | |
1445 This is the same as (default-value 'fill-column)."); | |
1446 | |
1447 DEFVAR_LISP_NOPRO ("default-left-margin", | |
1448 &buffer_defaults.left_margin, | |
1449 "Default value of `left-margin' for buffers that do not override it.\n\ | |
1450 This is the same as (default-value 'left-margin)."); | |
1451 | |
1452 DEFVAR_LISP_NOPRO ("default-tab-width", | |
1453 &buffer_defaults.tab_width, | |
1454 "Default value of `tab-width' for buffers that do not override it.\n\ | |
1455 This is the same as (default-value 'tab-width)."); | |
1456 | |
1457 DEFVAR_LISP_NOPRO ("default-case-fold-search", | |
1458 &buffer_defaults.case_fold_search, | |
1459 "Default value of `case-fold-search' for buffers that don't override it.\n\ | |
1460 This is the same as (default-value 'case-fold-search)."); | |
1461 | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1462 DEFVAR_PER_BUFFER ("mode-line-format", ¤t_buffer->mode_line_format, |
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1463 Qnil, 0); |
333 | 1464 |
1465 /* This doc string is too long for cpp; cpp dies if it isn't in a comment. | |
1466 But make-docfile finds it! | |
1467 DEFVAR_PER_BUFFER ("mode-line-format", ¤t_buffer->mode_line_format, | |
1468 "Template for displaying mode line for current buffer.\n\ | |
1469 Each buffer has its own value of this variable.\n\ | |
1470 Value may be a string, a symbol or a list or cons cell.\n\ | |
1471 For a symbol, its value is used (but it is ignored if t or nil).\n\ | |
1472 A string appearing directly as the value of a symbol is processed verbatim\n\ | |
1473 in that the %-constructs below are not recognized.\n\ | |
1474 For a list whose car is a symbol, the symbol's value is taken,\n\ | |
1475 and if that is non-nil, the cadr of the list is processed recursively.\n\ | |
1476 Otherwise, the caddr of the list (if there is one) is processed.\n\ | |
1477 For a list whose car is a string or list, each element is processed\n\ | |
1478 recursively and the results are effectively concatenated.\n\ | |
1479 For a list whose car is an integer, the cdr of the list is processed\n\ | |
1480 and padded (if the number is positive) or truncated (if negative)\n\ | |
1481 to the width specified by that number.\n\ | |
1482 A string is printed verbatim in the mode line except for %-constructs:\n\ | |
1483 (%-constructs are allowed when the string is the entire mode-line-format\n\ | |
1484 or when it is found in a cons-cell or a list)\n\ | |
1485 %b -- print buffer name. %f -- print visited file name.\n\ | |
1486 %* -- print *, % or hyphen. %m -- print value of mode-name (obsolete).\n\ | |
1487 %s -- print process status. %M -- print value of global-mode-string. (obs)\n\ | |
1488 %p -- print percent of buffer above top of window, or top, bot or all.\n\ | |
1489 %n -- print Narrow if appropriate.\n\ | |
1490 %[ -- print one [ for each recursive editing level. %] similar.\n\ | |
1491 %% -- print %. %- -- print infinitely many dashes.\n\ | |
1492 Decimal digits after the % specify field width to which to pad."); | |
1493 */ | |
1494 | |
1495 DEFVAR_LISP_NOPRO ("default-major-mode", &buffer_defaults.major_mode, | |
1496 "*Major mode for new buffers. Defaults to `fundamental-mode'.\n\ | |
1497 nil here means use current buffer's major mode."); | |
1498 | |
1499 DEFVAR_PER_BUFFER ("major-mode", ¤t_buffer->major_mode, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1500 make_number (Lisp_Symbol), |
333 | 1501 "Symbol for current buffer's major mode."); |
1502 | |
1503 DEFVAR_PER_BUFFER ("mode-name", ¤t_buffer->mode_name, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1504 make_number (Lisp_String), |
333 | 1505 "Pretty name of current buffer's major mode (a string)."); |
1506 | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1507 DEFVAR_PER_BUFFER ("abbrev-mode", ¤t_buffer->abbrev_mode, Qnil, |
333 | 1508 "Non-nil turns on automatic expansion of abbrevs as they are inserted.\n\ |
1509 Automatically becomes buffer-local when set in any fashion."); | |
1510 | |
1511 DEFVAR_PER_BUFFER ("case-fold-search", ¤t_buffer->case_fold_search, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1512 Qnil, |
333 | 1513 "*Non-nil if searches should ignore case.\n\ |
1514 Automatically becomes buffer-local when set in any fashion."); | |
1515 | |
1516 DEFVAR_PER_BUFFER ("fill-column", ¤t_buffer->fill_column, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1517 make_number (Lisp_Int), |
333 | 1518 "*Column beyond which automatic line-wrapping should happen.\n\ |
1519 Automatically becomes buffer-local when set in any fashion."); | |
1520 | |
1521 DEFVAR_PER_BUFFER ("left-margin", ¤t_buffer->left_margin, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1522 make_number (Lisp_Int), |
333 | 1523 "*Column for the default indent-line-function to indent to.\n\ |
1524 Linefeed indents to this column in Fundamental mode.\n\ | |
1525 Automatically becomes buffer-local when set in any fashion."); | |
1526 | |
1527 DEFVAR_PER_BUFFER ("tab-width", ¤t_buffer->tab_width, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1528 make_number (Lisp_Int), |
333 | 1529 "*Distance between tab stops (for display of tab characters), in columns.\n\ |
1530 Automatically becomes buffer-local when set in any fashion."); | |
1531 | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1532 DEFVAR_PER_BUFFER ("ctl-arrow", ¤t_buffer->ctl_arrow, Qnil, |
333 | 1533 "*Non-nil means display control chars with uparrow.\n\ |
1534 Nil means use backslash and octal digits.\n\ | |
1535 Automatically becomes buffer-local when set in any fashion.\n\ | |
1536 This variable does not apply to characters whose display is specified\n\ | |
1537 in the current display table (if there is one)."); | |
1538 | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1539 DEFVAR_PER_BUFFER ("truncate-lines", ¤t_buffer->truncate_lines, Qnil, |
333 | 1540 "*Non-nil means do not display continuation lines;\n\ |
1541 give each line of text one screen line.\n\ | |
1542 Automatically becomes buffer-local when set in any fashion.\n\ | |
1543 \n\ | |
1544 Note that this is overridden by the variable\n\ | |
1545 `truncate-partial-width-windows' if that variable is non-nil\n\ | |
764 | 1546 and this buffer is not full-frame width."); |
333 | 1547 |
1548 DEFVAR_PER_BUFFER ("default-directory", ¤t_buffer->directory, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1549 make_number (Lisp_String), |
333 | 1550 "Name of default directory of current buffer. Should end with slash.\n\ |
1551 Each buffer has its own value of this variable."); | |
1552 | |
1553 DEFVAR_PER_BUFFER ("auto-fill-function", ¤t_buffer->auto_fill_function, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1554 Qnil, |
333 | 1555 "Function called (if non-nil) to perform auto-fill.\n\ |
1556 It is called after self-inserting a space at a column beyond `fill-column'.\n\ | |
1557 Each buffer has its own value of this variable.\n\ | |
1558 NOTE: This variable is not an ordinary hook;\n\ | |
1559 It may not be a list of functions."); | |
1560 | |
1561 DEFVAR_PER_BUFFER ("buffer-file-name", ¤t_buffer->filename, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1562 make_number (Lisp_String), |
333 | 1563 "Name of file visited in current buffer, or nil if not visiting a file.\n\ |
1564 Each buffer has its own value of this variable."); | |
1565 | |
1566 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name", | |
1041 | 1567 ¤t_buffer->auto_save_file_name, |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1568 make_number (Lisp_String), |
333 | 1569 "Name of file for auto-saving current buffer,\n\ |
1570 or nil if buffer should not be auto-saved.\n\ | |
1571 Each buffer has its own value of this variable."); | |
1572 | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1573 DEFVAR_PER_BUFFER ("buffer-read-only", ¤t_buffer->read_only, Qnil, |
333 | 1574 "Non-nil if this buffer is read-only.\n\ |
1575 Each buffer has its own value of this variable."); | |
1576 | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1577 DEFVAR_PER_BUFFER ("buffer-backed-up", ¤t_buffer->backed_up, Qnil, |
333 | 1578 "Non-nil if this buffer's file has been backed up.\n\ |
1579 Backing up is done before the first time the file is saved.\n\ | |
1580 Each buffer has its own value of this variable."); | |
1581 | |
1582 DEFVAR_PER_BUFFER ("buffer-saved-size", ¤t_buffer->save_length, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1583 make_number (Lisp_Int), |
333 | 1584 "Length of current buffer when last read in, saved or auto-saved.\n\ |
1585 0 initially.\n\ | |
1586 Each buffer has its own value of this variable."); | |
1587 | |
1588 DEFVAR_PER_BUFFER ("selective-display", ¤t_buffer->selective_display, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1589 Qnil, |
333 | 1590 "Non-nil enables selective display:\n\ |
1591 Integer N as value means display only lines\n\ | |
1592 that start with less than n columns of space.\n\ | |
1593 A value of t means, after a ^M, all the rest of the line is invisible.\n\ | |
1594 Then ^M's in the file are written into files as newlines.\n\n\ | |
1595 Automatically becomes buffer-local when set in any fashion."); | |
1596 | |
1597 #ifndef old | |
1598 DEFVAR_PER_BUFFER ("selective-display-ellipses", | |
1599 ¤t_buffer->selective_display_ellipses, | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1600 Qnil, |
333 | 1601 "t means display ... on previous line when a line is invisible.\n\ |
1602 Automatically becomes buffer-local when set in any fashion."); | |
1603 #endif | |
1604 | |
1001
c1ebe69206df
* buffer.c (syms_of_buffer): Call DEFVAR_PER_BUFFER with the new
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1605 DEFVAR_PER_BUFFER ("overwrite-mode", ¤t_buffer->overwrite_mode, Qnil, |
333 | 1606 "Non-nil if self-insertion should replace existing text.\n\ |
1607 Automatically becomes buffer-local when set in any fashion."); | |
1608 | |
1609 DEFVAR_PER_BUFFER ("buffer-display-table", ¤t_buffer->display_table, | |
1038
59fa7697bb14
(syms_of_buffer): Made buffer-display-table,
Richard M. Stallman <rms@gnu.org>
parents:
1001
diff
changeset
|
1610 Qnil, |
333 | 1611 "Display table that controls display of the contents of current buffer.\n\ |
1612 Automatically becomes buffer-local when set in any fashion.\n\ | |
1613 The display table is a vector created with `make-display-table'.\n\ | |
1614 The first 256 elements control how to display each possible text character.\n\ | |
1615 The value should be a \"rope\" (see `make-rope') or nil;\n\ | |
1616 nil means display the character in the default fashion.\n\ | |
1617 The remaining five elements are ropes that control the display of\n\ | |
1618 the end of a truncated screen line (element 256);\n\ | |
1619 the end of a continued line (element 257);\n\ | |
1620 the escape character used to display character codes in octal (element 258);\n\ | |
1621 the character used as an arrow for control characters (element 259);\n\ | |
1622 the decoration indicating the presence of invisible lines (element 260).\n\ | |
1623 If this variable is nil, the value of `standard-display-table' is used.\n\ | |
1624 Each window can have its own, overriding display table."); | |
1625 | |
1041 | 1626 DEFVAR_PER_BUFFER ("buffer-field-list", ¤t_buffer->fieldlist, Qnil, |
333 | 1627 "List of fields in the current buffer. See `add-field'."); |
1628 | |
1909
ea6c75bc0d38
* buffer.c (Fswitch_to_buffer): Pass the correct number of
Jim Blandy <jimb@redhat.com>
parents:
1876
diff
changeset
|
1629 DEFVAR_BOOL ("check-protected-fields", &check_protected_fields, |
333 | 1630 "Non-nil means don't allow modification of a protected field.\n\ |
1631 See `add-field'."); | |
1632 check_protected_fields = 0; | |
1633 | |
1634 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, | |
1635 "Don't ask."); | |
1636 */ | |
392 | 1637 DEFVAR_LISP ("before-change-function", &Vbefore_change_function, |
333 | 1638 "Function to call before each text change.\n\ |
1639 Two arguments are passed to the function: the positions of\n\ | |
1640 the beginning and end of the range of old text to be changed.\n\ | |
1641 \(For an insertion, the beginning and end are at the same place.)\n\ | |
1642 No information is given about the length of the text after the change.\n\ | |
1643 position of the change\n\ | |
1644 \n\ | |
1645 While executing the `before-change-function', changes to buffers do not\n\ | |
1646 cause calls to any `before-change-function' or `after-change-function'."); | |
1647 Vbefore_change_function = Qnil; | |
1648 | |
1649 DEFVAR_LISP ("after-change-function", &Vafter_change_function, | |
1650 "Function to call after each text change.\n\ | |
1651 Three arguments are passed to the function: the positions of\n\ | |
1652 the beginning and end of the range of changed text,\n\ | |
1653 and the length of the pre-change text replaced by that range.\n\ | |
1654 \(For an insertion, the pre-change length is zero;\n\ | |
1655 for a deletion, that length is the number of characters deleted,\n\ | |
1656 and the post-change beginning and end are at the same place.)\n\ | |
1657 \n\ | |
1658 While executing the `after-change-function', changes to buffers do not\n\ | |
1659 cause calls to any `before-change-function' or `after-change-function'."); | |
1660 Vafter_change_function = Qnil; | |
1661 | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1707
diff
changeset
|
1662 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook, |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1707
diff
changeset
|
1663 "A list of functions to call before changing a buffer which is unmodified.\n\ |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1707
diff
changeset
|
1664 The functions are run using the `run-hooks' function."); |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1707
diff
changeset
|
1665 Vfirst_change_hook = Qnil; |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1707
diff
changeset
|
1666 Qfirst_change_hook = intern ("first-change-hook"); |
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1707
diff
changeset
|
1667 staticpro (&Qfirst_change_hook); |
333 | 1668 |
1041 | 1669 DEFVAR_PER_BUFFER ("buffer-undo-list", ¤t_buffer->undo_list, Qnil, |
333 | 1670 "List of undo entries in current buffer.\n\ |
1671 Recent changes come first; older changes follow newer.\n\ | |
1672 \n\ | |
1673 An entry (START . END) represents an insertion which begins at\n\ | |
1674 position START and ends at position END.\n\ | |
1675 \n\ | |
1676 An entry (TEXT . POSITION) represents the deletion of the string TEXT\n\ | |
1677 from (abs POSITION). If POSITION is positive, point was at the front\n\ | |
1678 of the text being deleted; if negative, point was at the end.\n\ | |
1679 \n\ | |
1680 An entry (t HIGHWORD LOWWORD) indicates that the buffer had been\n\ | |
1681 previously unmodified. HIGHWORD and LOWWORD are the high and low\n\ | |
1682 16-bit words of the buffer's modification count at the time. If the\n\ | |
1683 modification count of the most recent save is different, this entry is\n\ | |
1684 obsolete.\n\ | |
1685 \n\ | |
1952
b0ec61f76511
(syms_of_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1909
diff
changeset
|
1686 An entry (nil PROP VAL BEG . END) indicates that a text property\n\ |
b0ec61f76511
(syms_of_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1909
diff
changeset
|
1687 was modified between BEG and END. PROP is the property name,\n\ |
b0ec61f76511
(syms_of_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1909
diff
changeset
|
1688 and VAL is the old value.\n\ |
b0ec61f76511
(syms_of_buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1909
diff
changeset
|
1689 \n\ |
333 | 1690 nil marks undo boundaries. The undo command treats the changes\n\ |
1691 between two undo boundaries as a single step to be undone.\n\ | |
1692 \n\ | |
1693 If the value of the variable is t, undo information is not recorded.\n\ | |
1694 "); | |
1695 | |
1696 defsubr (&Sbuffer_list); | |
1697 defsubr (&Sget_buffer); | |
1698 defsubr (&Sget_file_buffer); | |
1699 defsubr (&Sget_buffer_create); | |
392 | 1700 defsubr (&Sgenerate_new_buffer_name); |
333 | 1701 defsubr (&Sbuffer_name); |
1702 /*defsubr (&Sbuffer_number);*/ | |
1703 defsubr (&Sbuffer_file_name); | |
1704 defsubr (&Sbuffer_local_variables); | |
1705 defsubr (&Sbuffer_modified_p); | |
1706 defsubr (&Sset_buffer_modified_p); | |
1707 defsubr (&Sbuffer_modified_tick); | |
1708 defsubr (&Srename_buffer); | |
1709 defsubr (&Sother_buffer); | |
1710 defsubr (&Sbuffer_disable_undo); | |
1711 defsubr (&Sbuffer_enable_undo); | |
1712 defsubr (&Skill_buffer); | |
1713 defsubr (&Serase_buffer); | |
1714 defsubr (&Sswitch_to_buffer); | |
1715 defsubr (&Spop_to_buffer); | |
1716 defsubr (&Scurrent_buffer); | |
1717 defsubr (&Sset_buffer); | |
1718 defsubr (&Sbarf_if_buffer_read_only); | |
1719 defsubr (&Sbury_buffer); | |
1720 defsubr (&Slist_buffers); | |
1721 defsubr (&Skill_all_local_variables); | |
1722 defsubr (&Sregion_fields); | |
1723 } | |
1724 | |
1725 keys_of_buffer () | |
1726 { | |
1727 initial_define_key (control_x_map, 'b', "switch-to-buffer"); | |
1728 initial_define_key (control_x_map, 'k', "kill-buffer"); | |
1729 initial_define_key (control_x_map, Ctl ('B'), "list-buffers"); | |
1730 } |