0
|
1 /* Buffer manipulation primitives for XEmacs.
|
|
2 Copyright (C) 1985-1989, 1992-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Sun Microsystems, Inc.
|
|
4 Copyright (C) 1995, 1996 Ben Wing.
|
|
5
|
|
6 This file is part of XEmacs.
|
|
7
|
|
8 XEmacs is free software; you can redistribute it and/or modify it
|
|
9 under the terms of the GNU General Public License as published by the
|
|
10 Free Software Foundation; either version 2, or (at your option) any
|
|
11 later version.
|
|
12
|
|
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
16 for more details.
|
|
17
|
|
18 You should have received a copy of the GNU General Public License
|
|
19 along with XEmacs; see the file COPYING. If not, write to
|
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
21 Boston, MA 02111-1307, USA. */
|
|
22
|
|
23 /* Synched up with: Mule 2.0, FSF 19.30. */
|
|
24
|
|
25 /* Authorship:
|
|
26
|
|
27 FSF: long ago.
|
|
28 JWZ: some changes for Lemacs, long ago. (e.g. separate buffer
|
|
29 list per frame.)
|
|
30 Mly: a few changes for buffer-local vars, 19.8 or 19.9.
|
|
31 Ben Wing: some changes and cleanups for Mule, 19.12.
|
|
32 */
|
|
33
|
|
34 /* This file contains functions that work with buffer objects.
|
|
35 Functions that manipulate a buffer's text, however, are not
|
|
36 in this file:
|
|
37
|
|
38 1) The low-level functions that actually know about the
|
|
39 implementation of a buffer's text are located in insdel.c.
|
|
40 2) The higher-level (mostly Lisp) functions that manipulate a
|
|
41 buffer's text are in editfns.c.
|
|
42 3) The highest-level Lisp commands are in cmds.c.
|
|
43
|
|
44 However:
|
|
45
|
|
46 -- Functions that know about syntax tables (forward-word,
|
|
47 scan-sexps, etc.) are in syntax.c, as are functions
|
|
48 that manipulate syntax tables.
|
|
49 -- Functions that know about case tables (upcase, downcase,
|
|
50 etc.) are in casefiddle.c. Functions that manipulate
|
|
51 case tables (case-table-p, set-case-table, etc.) are
|
|
52 in casetab.c.
|
|
53 -- Functions that do searching and replacing are in
|
|
54 search.c. The low-level functions that implement
|
|
55 regular expressions are in regex.c.
|
|
56
|
|
57 Also:
|
|
58
|
|
59 -- Some file and process functions (in fileio.c and process.c)
|
|
60 copy text from or insert text into a buffer; they call
|
|
61 low-level functions in insdel.c to do this.
|
|
62 -- insdel.c calls low-level functions in undo.c and extents.c
|
|
63 to record buffer modifications for undoing and to handle
|
|
64 extent adjustment and extent-data creation and insertion.
|
|
65
|
|
66 */
|
|
67
|
|
68 #include <config.h>
|
|
69 #include "lisp.h"
|
|
70
|
|
71 #include "buffer.h"
|
|
72 #include "commands.h"
|
|
73 #include "elhash.h"
|
|
74 #include "extents.h"
|
|
75 #include "faces.h"
|
|
76 #include "frame.h"
|
|
77 #include "insdel.h"
|
|
78 #include "process.h" /* for kill_buffer_processes */
|
|
79 #ifdef REGION_CACHE_NEEDS_WORK
|
|
80 #include "region-cache.h"
|
|
81 #endif
|
|
82 #include "symeval.h"
|
|
83 #include "syntax.h"
|
|
84 #include "sysdep.h" /* for getwd */
|
|
85 #include "window.h"
|
|
86
|
|
87 #include "sysfile.h"
|
|
88
|
|
89 struct buffer *current_buffer; /* the current buffer */
|
|
90
|
|
91 /* This structure holds the default values of the buffer-local variables
|
|
92 defined with DEFVAR_BUFFER_LOCAL, that have special slots in each buffer.
|
|
93 The default value occupies the same slot in this structure
|
|
94 as an individual buffer's value occupies in that buffer.
|
|
95 Setting the default value also goes through the alist of buffers
|
|
96 and stores into each buffer that does not say it has a local value. */
|
|
97 Lisp_Object Vbuffer_defaults;
|
|
98
|
|
99 /* This structure marks which slots in a buffer have corresponding
|
|
100 default values in buffer_defaults.
|
|
101 Each such slot has a nonzero value in this structure.
|
|
102 The value has only one nonzero bit.
|
|
103
|
|
104 When a buffer has its own local value for a slot,
|
|
105 the bit for that slot (found in the same slot in this structure)
|
|
106 is turned on in the buffer's local_var_flags slot.
|
|
107
|
|
108 If a slot in this structure is 0, then there is a DEFVAR_BUFFER_LOCAL
|
|
109 for the slot, but there is no default value for it; the corresponding
|
|
110 slot in buffer_defaults is not used except to initialize newly-created
|
|
111 buffers.
|
|
112
|
|
113 If a slot is -1, then there is a DEFVAR_BUFFER_LOCAL for it
|
|
114 as well as a default value which is used to initialize newly-created
|
|
115 buffers and as a reset-value when local-vars are killed.
|
|
116
|
|
117 If a slot is -2, there is no DEFVAR_BUFFER_LOCAL for it.
|
|
118 (The slot is always local, but there's no lisp variable for it.)
|
|
119 The default value is only used to initialize newly-creation buffers.
|
|
120
|
|
121 If a slot is -3, then there is no DEFVAR_BUFFER_LOCAL for it but
|
|
122 there is a default which is used to initialize newly-creation
|
|
123 buffers and as a reset-value when local-vars are killed.
|
|
124
|
|
125
|
|
126 */
|
|
127 struct buffer buffer_local_flags;
|
|
128
|
|
129 /* This structure holds the names of symbols whose values may be
|
|
130 buffer-local. It is indexed and accessed in the same way as the above. */
|
|
131 static Lisp_Object Vbuffer_local_symbols;
|
|
132
|
|
133 /* Alist of all buffer names vs the buffers. */
|
|
134 /* This used to be a variable, but is no longer,
|
|
135 to prevent lossage due to user rplac'ing this alist or its elements.
|
|
136 Note that there is a per-frame copy of this as well; the frame slot
|
|
137 and the global variable contain the same data, but possibly in different
|
|
138 orders, so that the buffer ordering can be per-frame.
|
|
139 */
|
|
140 Lisp_Object Vbuffer_alist;
|
|
141
|
|
142 /* Functions to call before and after each text change. */
|
|
143 Lisp_Object Qbefore_change_functions;
|
|
144 Lisp_Object Qafter_change_functions;
|
|
145 Lisp_Object Vbefore_change_functions;
|
|
146 Lisp_Object Vafter_change_functions;
|
|
147
|
|
148 /* #### Obsolete, for compatibility */
|
|
149 Lisp_Object Qbefore_change_function;
|
|
150 Lisp_Object Qafter_change_function;
|
|
151 Lisp_Object Vbefore_change_function;
|
|
152 Lisp_Object Vafter_change_function;
|
|
153
|
|
154 #if 0 /* FSFmacs */
|
|
155 Lisp_Object Vtransient_mark_mode;
|
|
156 #endif
|
|
157
|
|
158 /* t means ignore all read-only text properties.
|
|
159 A list means ignore such a property if its value is a member of the list.
|
|
160 Any non-nil value means ignore buffer-read-only. */
|
|
161 Lisp_Object Vinhibit_read_only;
|
|
162
|
|
163 /* List of functions to call that can query about killing a buffer.
|
|
164 If any of these functions returns nil, we don't kill it. */
|
|
165 Lisp_Object Vkill_buffer_query_functions;
|
|
166
|
|
167 /* Non-nil means delete a buffer's auto-save file when the buffer is saved. */
|
|
168 Lisp_Object Vdelete_auto_save_files;
|
|
169
|
|
170 Lisp_Object Qbuffer_live_p;
|
|
171 Lisp_Object Qbuffer_or_string_p;
|
|
172
|
|
173 /* List of functions to call before changing an unmodified buffer. */
|
|
174 Lisp_Object Vfirst_change_hook;
|
|
175 Lisp_Object Qfirst_change_hook;
|
|
176
|
|
177 Lisp_Object Qfundamental_mode;
|
|
178 Lisp_Object Qmode_class;
|
|
179 Lisp_Object Qpermanent_local;
|
|
180
|
|
181 Lisp_Object Qprotected_field;
|
|
182
|
|
183 Lisp_Object QSFundamental; /* A string "Fundamental" */
|
|
184 Lisp_Object QSscratch; /* "*scratch*" */
|
|
185 Lisp_Object Qdefault_directory;
|
|
186
|
|
187 Lisp_Object Qkill_buffer_hook;
|
|
188 Lisp_Object Qbuffer_file_name, Qbuffer_undo_list;
|
|
189
|
|
190 Lisp_Object Qrename_auto_save_file;
|
|
191
|
|
192 Lisp_Object Qget_file_buffer;
|
|
193 Lisp_Object Qchange_major_mode_hook, Vchange_major_mode_hook;
|
|
194
|
|
195 Lisp_Object Qfind_file_compare_truenames;
|
|
196
|
|
197 Lisp_Object Qswitch_to_buffer;
|
|
198
|
|
199 /* Two thresholds controlling how much undo information to keep. */
|
|
200 int undo_threshold;
|
|
201 int undo_high_threshold;
|
|
202
|
|
203 int find_file_compare_truenames;
|
|
204 int find_file_use_truenames;
|
|
205
|
|
206
|
|
207 static void reset_buffer_local_variables (struct buffer *, int first_time);
|
|
208 static void nuke_all_buffer_slots (struct buffer *b, Lisp_Object zap);
|
|
209 static Lisp_Object mark_buffer (Lisp_Object, void (*) (Lisp_Object));
|
|
210 static void print_buffer (Lisp_Object, Lisp_Object, int);
|
|
211 /* We do not need a finalize method to handle a buffer's children list
|
|
212 because all buffers have `kill-buffer' applied to them before
|
|
213 they disappear, and the children removal happens then. */
|
|
214 DEFINE_LRECORD_IMPLEMENTATION ("buffer", buffer,
|
|
215 mark_buffer, print_buffer, 0, 0, 0,
|
|
216 struct buffer);
|
|
217
|
|
218 #ifdef ENERGIZE
|
|
219 extern void mark_energize_buffer_data (struct buffer *b,
|
|
220 void (*markobj) (Lisp_Object));
|
|
221 #endif
|
|
222
|
|
223 Lisp_Object
|
|
224 make_buffer (struct buffer *buf)
|
|
225 {
|
|
226 Lisp_Object obj;
|
|
227 XSETBUFFER (obj, buf);
|
|
228 return obj;
|
|
229 }
|
|
230
|
|
231 static Lisp_Object
|
|
232 mark_buffer (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
233 {
|
|
234 struct buffer *buf = XBUFFER (obj);
|
|
235
|
|
236 /* Truncate undo information. */
|
|
237 buf->undo_list = truncate_undo_list (buf->undo_list,
|
|
238 undo_threshold,
|
|
239 undo_high_threshold);
|
|
240
|
|
241 #define MARKED_SLOT(x) ((markobj) (buf->x));
|
|
242 #include "bufslots.h"
|
|
243 #undef MARKED_SLOT
|
|
244
|
|
245 #ifdef ENERGIZE
|
|
246 mark_energize_buffer_data (XBUFFER (obj), markobj);
|
|
247 #endif
|
|
248
|
|
249 ((markobj) (buf->extent_info));
|
|
250
|
|
251 /* Don't mark normally through the children slot.
|
|
252 (Actually, in this case, it doesn't matter.)
|
|
253 */
|
|
254 mark_conses_in_list (buf->indirect_children);
|
|
255
|
|
256 if (buf->base_buffer)
|
|
257 {
|
|
258 Lisp_Object base_buf_obj = Qnil;
|
|
259
|
|
260 XSETBUFFER (base_buf_obj, buf->base_buffer);
|
|
261 return base_buf_obj;
|
|
262 }
|
|
263 else
|
|
264 return Qnil;
|
|
265 }
|
|
266
|
|
267 static void
|
|
268 print_buffer (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
269 {
|
|
270 struct buffer *b = XBUFFER (obj);
|
|
271
|
|
272 if (print_readably)
|
|
273 {
|
|
274 if (!BUFFER_LIVE_P (b))
|
|
275 error ("printing unreadable object #<killed buffer>");
|
|
276 else
|
|
277 error ("printing unreadable object #<buffer %s>",
|
14
|
278 XSTRING_DATA (b->name));
|
0
|
279 }
|
|
280 else if (!BUFFER_LIVE_P (b))
|
|
281 write_c_string ("#<killed buffer>", printcharfun);
|
|
282 else if (escapeflag)
|
|
283 {
|
|
284 write_c_string ("#<buffer ", printcharfun);
|
|
285 print_internal (b->name, printcharfun, 1);
|
|
286 write_c_string (">", printcharfun);
|
|
287 }
|
|
288 else
|
|
289 {
|
|
290 print_internal (b->name, printcharfun, 0);
|
|
291 }
|
|
292 }
|
|
293
|
|
294
|
20
|
295 DEFUN ("bufferp", Fbufferp, 1, 1, 0, /*
|
0
|
296 T if OBJECT is an editor buffer.
|
20
|
297 */
|
|
298 (object))
|
0
|
299 {
|
|
300 if (BUFFERP (object))
|
|
301 return Qt;
|
|
302 return Qnil;
|
|
303 }
|
|
304
|
20
|
305 DEFUN ("buffer-live-p", Fbuffer_live_p, 1, 1, 0, /*
|
0
|
306 T if OBJECT is an editor buffer that has not been deleted.
|
20
|
307 */
|
|
308 (object))
|
0
|
309 {
|
|
310 if (BUFFERP (object) && BUFFER_LIVE_P (XBUFFER (object)))
|
|
311 return Qt;
|
|
312 return Qnil;
|
|
313 }
|
|
314
|
|
315 static void
|
|
316 nsberror (Lisp_Object spec)
|
|
317 {
|
|
318 if (STRINGP (spec))
|
14
|
319 error ("No buffer named %s", XSTRING_DATA (spec));
|
0
|
320 signal_simple_error ("Invalid buffer argument", spec);
|
|
321 }
|
|
322
|
20
|
323 DEFUN ("buffer-list", Fbuffer_list, 0, 1, 0, /*
|
0
|
324 Return a list of all existing live buffers.
|
|
325 The order is specific to the selected frame; if the optional FRAME
|
|
326 argument is provided, the ordering for that frame is returned instead.
|
|
327 If the FRAME argument is t, then the global (non-frame) ordering is
|
|
328 returned instead.
|
20
|
329 */
|
|
330 (frame))
|
0
|
331 {
|
|
332 Lisp_Object list;
|
|
333 if (EQ (frame, Qt))
|
|
334 list = Vbuffer_alist;
|
|
335 else
|
|
336 list = decode_frame (frame)->buffer_alist;
|
|
337 return Fmapcar (Qcdr, list);
|
|
338 }
|
|
339
|
|
340 Lisp_Object
|
|
341 get_buffer (Lisp_Object name, int error_if_deleted_or_does_not_exist)
|
|
342 {
|
|
343 Lisp_Object buf;
|
|
344
|
|
345 if (BUFFERP (name))
|
|
346 {
|
|
347 if (!BUFFER_LIVE_P (XBUFFER (name)))
|
|
348 {
|
|
349 if (error_if_deleted_or_does_not_exist)
|
|
350 nsberror (name);
|
|
351 return (Qnil);
|
|
352 }
|
|
353 return name;
|
|
354 }
|
|
355 else
|
|
356 {
|
|
357 struct gcpro gcpro1;
|
|
358
|
|
359 CHECK_STRING (name);
|
|
360 name = LISP_GETTEXT (name); /* I18N3 */
|
|
361 GCPRO1 (name);
|
|
362 buf = Fcdr (Fassoc (name, Vbuffer_alist));
|
|
363 UNGCPRO;
|
|
364 if (NILP (buf) && error_if_deleted_or_does_not_exist)
|
|
365 nsberror (name);
|
|
366 return (buf);
|
|
367 }
|
|
368 }
|
|
369
|
|
370 struct buffer *
|
|
371 decode_buffer (Lisp_Object buffer, int allow_string)
|
|
372 {
|
|
373 if (NILP (buffer))
|
|
374 {
|
|
375 return current_buffer;
|
|
376 }
|
|
377 else if (STRINGP (buffer))
|
|
378 {
|
|
379 if (allow_string)
|
|
380 return XBUFFER (get_buffer (buffer, 1));
|
|
381 else
|
|
382 CHECK_BUFFER (buffer); /* This will cause a wrong-type error. */
|
|
383 }
|
|
384
|
|
385 CHECK_LIVE_BUFFER (buffer);
|
|
386 return XBUFFER (buffer);
|
|
387 }
|
|
388
|
20
|
389 DEFUN ("decode-buffer", Fdecode_buffer, 1, 1, 0, /*
|
0
|
390 Validate BUFFER or if BUFFER is nil, return the current buffer.
|
|
391 If BUFFER is a valid buffer or a string representing a valid buffer,
|
|
392 the corresponding buffer object will be returned. Otherwise an error
|
|
393 will be signaled.
|
20
|
394 */
|
|
395 (buffer))
|
0
|
396 {
|
|
397 struct buffer *b = decode_buffer (buffer, 1);
|
|
398 XSETBUFFER (buffer, b);
|
|
399 return buffer;
|
|
400 }
|
|
401
|
|
402 #if 0 /* FSFmacs */
|
|
403 /* bleagh!!! */
|
|
404 /* Like Fassoc, but use Fstring_equal to compare
|
|
405 (which ignores text properties),
|
|
406 and don't ever QUIT. */
|
|
407
|
|
408 static Lisp_Object
|
|
409 assoc_ignore_text_properties (register Lisp_Object key, Lisp_Object list)
|
|
410 {
|
|
411 register Lisp_Object tail;
|
|
412 for (tail = list; !NILP (tail); tail = Fcdr (tail))
|
|
413 {
|
|
414 register Lisp_Object elt, tem;
|
|
415 elt = Fcar (tail);
|
|
416 tem = Fstring_equal (Fcar (elt), key);
|
|
417 if (!NILP (tem))
|
|
418 return elt;
|
|
419 }
|
|
420 return Qnil;
|
|
421 }
|
|
422
|
|
423 #endif
|
|
424
|
20
|
425 DEFUN ("get-buffer", Fget_buffer, 1, 1, 0, /*
|
0
|
426 Return the buffer named NAME (a string).
|
|
427 If there is no live buffer named NAME, return nil.
|
|
428 NAME may also be a buffer; if so, the value is that buffer.
|
20
|
429 */
|
|
430 (name))
|
0
|
431 {
|
|
432 #ifdef I18N3
|
|
433 /* #### Doc string should indicate that the buffer name will get
|
|
434 translated. */
|
|
435 #endif
|
|
436
|
|
437 /* #### This might return a dead buffer. This is gross. This is
|
|
438 called FSF compatibility. */
|
|
439 if (BUFFERP (name))
|
|
440 return name;
|
|
441 return (get_buffer (name, 0));
|
|
442 /* FSFmacs 19.29 calls assoc_ignore_text_properties() here.
|
|
443 Bleagh!! */
|
|
444 }
|
|
445
|
|
446
|
20
|
447 DEFUN ("get-file-buffer", Fget_file_buffer, 1, 1, 0, /*
|
0
|
448 Return the buffer visiting file FILENAME (a string).
|
|
449 The buffer's `buffer-file-name' must match exactly the expansion of FILENAME.
|
|
450 If there is no such live buffer, return nil.
|
|
451
|
|
452 Normally, the comparison is done by canonicalizing FILENAME (using
|
|
453 `expand-file-name') and comparing that to the value of `buffer-file-name'
|
|
454 for each existing buffer. However, If `find-file-compare-truenames' is
|
|
455 non-nil, FILENAME will be converted to its truename and the search will be
|
|
456 done on each buffer's value of `buffer-file-truename' instead of
|
|
457 `buffer-file-name'. Otherwise, if `find-file-use-truenames' is non-nil,
|
|
458 FILENAME will be converted to its truename and used for searching, but
|
|
459 the search will still be done on `buffer-file-name'.
|
20
|
460 */
|
|
461 (filename))
|
0
|
462 {
|
|
463 /* This function can GC */
|
|
464 REGISTER Lisp_Object tail, buf, tem;
|
|
465 struct gcpro gcpro1;
|
|
466
|
|
467 #ifdef I18N3
|
|
468 /* DO NOT translate the filename. */
|
|
469 #endif
|
|
470 GCPRO1 (filename);
|
|
471 CHECK_STRING (filename);
|
|
472 filename = Fexpand_file_name (filename, Qnil);
|
|
473 {
|
|
474 /* If the file name has special constructs in it,
|
|
475 call the corresponding file handler. */
|
|
476 Lisp_Object handler = Ffind_file_name_handler (filename, Qget_file_buffer);
|
|
477 if (!NILP (handler))
|
|
478 {
|
|
479 UNGCPRO;
|
|
480 return call2 (handler, Qget_file_buffer, filename);
|
|
481 }
|
|
482 }
|
|
483 UNGCPRO;
|
|
484
|
|
485 if (find_file_compare_truenames || find_file_use_truenames)
|
|
486 {
|
|
487 struct gcpro ngcpro1, ngcpro2, ngcpro3;
|
|
488 Lisp_Object fn = Qnil;
|
|
489 Lisp_Object dn = Qnil;
|
|
490
|
|
491 NGCPRO3 (fn, dn, filename);
|
|
492 fn = Ffile_truename (filename, Qnil);
|
|
493 if (NILP (fn))
|
|
494 {
|
|
495 dn = Ffile_name_directory (filename);
|
|
496 fn = Ffile_truename (dn, Qnil);
|
|
497 if (! NILP (fn)) dn = fn;
|
|
498 fn = Fexpand_file_name (Ffile_name_nondirectory (filename),
|
|
499 dn);
|
|
500 }
|
|
501 filename = fn;
|
|
502 NUNGCPRO;
|
|
503 }
|
|
504
|
|
505 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
|
|
506 {
|
|
507 buf = Fcdr (XCAR (tail));
|
|
508 if (!BUFFERP (buf)) continue;
|
|
509 if (!STRINGP (XBUFFER (buf)->filename)) continue;
|
|
510 tem = Fstring_equal (filename,
|
|
511 (find_file_compare_truenames
|
|
512 ? XBUFFER (buf)->file_truename
|
|
513 : XBUFFER (buf)->filename));
|
|
514 if (!NILP (tem))
|
|
515 return buf;
|
|
516 }
|
|
517 return Qnil;
|
|
518 }
|
|
519
|
|
520
|
|
521 static void
|
|
522 push_buffer_alist (Lisp_Object name, Lisp_Object buf)
|
|
523 {
|
|
524 Lisp_Object cons = Fcons (name, buf);
|
|
525 Lisp_Object frmcons, devcons, concons;
|
|
526
|
|
527 Vbuffer_alist = nconc2 (Vbuffer_alist, Fcons (cons, Qnil));
|
|
528 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
|
|
529 {
|
|
530 struct frame *f;
|
|
531 f = XFRAME (XCAR (frmcons));
|
|
532 f->buffer_alist = nconc2 (f->buffer_alist, Fcons (cons, Qnil));
|
|
533 }
|
|
534 }
|
|
535
|
|
536 static void
|
|
537 delete_from_buffer_alist (Lisp_Object buf)
|
|
538 {
|
|
539 Lisp_Object cons = Frassq (buf, Vbuffer_alist);
|
|
540 Lisp_Object frmcons, devcons, concons;
|
|
541 if (NILP (cons))
|
|
542 return; /* abort() ? */
|
|
543 Vbuffer_alist = delq_no_quit (cons, Vbuffer_alist);
|
|
544
|
|
545 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
|
|
546 {
|
|
547 struct frame *f;
|
|
548 f = XFRAME (XCAR (frmcons));
|
|
549 f->buffer_alist = delq_no_quit (cons, f->buffer_alist);
|
|
550 }
|
|
551 }
|
|
552
|
|
553 Lisp_Object
|
|
554 get_truename_buffer (REGISTER Lisp_Object filename)
|
|
555 {
|
|
556 /* FSFmacs has its own code here and doesn't call get-file-buffer.
|
|
557 That's because their equivalent of find-file-compare-truenames
|
|
558 (find-file-existing-other-name) isn't looked at in get-file-buffer.
|
|
559 This way is more correct. */
|
|
560 int count = specpdl_depth ();
|
|
561
|
|
562 specbind (Qfind_file_compare_truenames, Qt);
|
|
563 return unbind_to (count, Fget_file_buffer (filename));
|
|
564 }
|
|
565
|
|
566 static struct buffer *
|
|
567 allocate_buffer (void)
|
|
568 {
|
|
569 struct buffer *b = alloc_lcrecord (sizeof (struct buffer), lrecord_buffer);
|
|
570
|
|
571 copy_lcrecord (b, XBUFFER (Vbuffer_defaults));
|
|
572
|
|
573 return b;
|
|
574 }
|
|
575
|
|
576 static Lisp_Object
|
|
577 finish_init_buffer (struct buffer *b, Lisp_Object name)
|
|
578 {
|
|
579 Lisp_Object buf;
|
|
580
|
|
581 XSETBUFFER (buf, b);
|
|
582
|
|
583 name = Fcopy_sequence (name);
|
|
584 /* #### This really does not need to be called. We already
|
|
585 initialized the buffer-local variables in allocate_buffer().
|
|
586 local_var_alist is set to Qnil at the same point, in
|
|
587 nuke_all_buffer_slots(). */
|
|
588 reset_buffer_local_variables (b, 1);
|
|
589 b->directory = ((current_buffer) ? current_buffer->directory : Qnil);
|
|
590
|
|
591 b->last_window_start = 1;
|
|
592
|
|
593 b->name = name;
|
|
594 if (string_byte (XSTRING (name), 0) != ' ')
|
|
595 b->undo_list = Qnil;
|
|
596 else
|
|
597 b->undo_list = Qt;
|
|
598
|
|
599 /* initialize the extent list */
|
|
600 init_buffer_extents (b);
|
|
601
|
|
602 /* Put this in the alist of all live buffers. */
|
|
603 push_buffer_alist (name, buf);
|
|
604
|
|
605 init_buffer_markers (b);
|
|
606
|
|
607 b->generated_modeline_string = Fmake_string (make_int (84), make_int (' '));
|
|
608 b->modeline_extent_table = make_lisp_hashtable (20, HASHTABLE_KEY_WEAK,
|
|
609 HASHTABLE_EQ);
|
|
610
|
|
611 return buf;
|
|
612 }
|
|
613
|
20
|
614 DEFUN ("get-buffer-create", Fget_buffer_create, 1, 1, 0, /*
|
0
|
615 Return the buffer named NAME, or create such a buffer and return it.
|
|
616 A new buffer is created if there is no live buffer named NAME.
|
|
617 If NAME starts with a space, the new buffer does not keep undo information.
|
|
618 If NAME is a buffer instead of a string, then it is the value returned.
|
|
619 The value is never nil.
|
20
|
620 */
|
|
621 (name))
|
0
|
622 {
|
|
623 /* This function can GC */
|
|
624 Lisp_Object buf;
|
|
625 REGISTER struct buffer *b;
|
|
626
|
|
627 #ifdef I18N3
|
|
628 /* #### Doc string should indicate that the buffer name will get
|
|
629 translated. */
|
|
630 #endif
|
|
631
|
|
632 name = LISP_GETTEXT (name);
|
|
633 buf = Fget_buffer (name);
|
|
634 if (!NILP (buf))
|
|
635 return buf;
|
|
636
|
14
|
637 if (XSTRING_LENGTH (name) == 0)
|
0
|
638 error ("Empty string for buffer name is not allowed");
|
|
639
|
|
640 b = allocate_buffer ();
|
|
641
|
|
642 b->text = &b->own_text;
|
|
643 b->base_buffer = 0;
|
|
644 b->indirect_children = Qnil;
|
|
645 init_buffer_text (b, 0);
|
|
646
|
|
647 return finish_init_buffer (b, name);
|
|
648 }
|
|
649
|
20
|
650 DEFUN ("make-indirect-buffer", Fmake_indirect_buffer, 2, 2,
|
|
651 "bMake indirect buffer (to buffer): \nBName of indirect buffer: ", /*
|
0
|
652 Create and return an indirect buffer for buffer BASE, named NAME.
|
|
653 BASE should be an existing buffer (or buffer name).
|
|
654 NAME should be a string which is not the name of an existing buffer.
|
|
655 If BASE is an indirect buffer itself, the base buffer for that buffer
|
|
656 is made the base buffer for the newly created buffer. (Thus, there will
|
|
657 never be indirect buffers whose base buffers are themselves indirect.)
|
20
|
658 */
|
|
659 (base_buffer, name))
|
0
|
660 {
|
|
661 error ("make-indirect-buffer not yet implemented, oops");
|
|
662 return Qnil;
|
|
663
|
|
664 #if 0 /* #### implement this! Need various changes in insdel.c */
|
|
665 Lisp_Object buf;
|
|
666 REGISTER struct buffer *b;
|
|
667
|
|
668 name = LISP_GETTEXT (name);
|
|
669 buf = Fget_buffer (name);
|
|
670 if (!NILP (buf))
|
14
|
671 error ("Buffer name `%s' is in use", XSTRING_DATA (name));
|
0
|
672
|
|
673 base_buffer = Fget_buffer (base_buffer);
|
|
674 if (NILP (base_buffer))
|
14
|
675 error ("No such buffer: `%s'", XSTRING_DATA (XBUFFER (base_buffer)->name));
|
|
676
|
|
677 if (XSTRING_LENGTH (name) == 0)
|
0
|
678 error ("Empty string for buffer name is not allowed");
|
|
679
|
|
680 b = allocate_buffer ();
|
|
681
|
|
682 if (XBUFFER (base_buffer)->base_buffer)
|
|
683 b->base_buffer = XBUFFER (base_buffer)->base_buffer;
|
|
684 else
|
|
685 b->base_buffer = XBUFFER (base_buffer);
|
|
686
|
|
687 /* Use the base buffer's text object. */
|
|
688 b->text = b->base_buffer->text;
|
|
689 b->indirect_children = Qnil;
|
|
690 XSETBUFFER (buf, b);
|
|
691 b->base_buffer->indirect_children =
|
|
692 Fcons (buf, b->base_buffer->indirect_children);
|
|
693 init_buffer_text (b, 1);
|
|
694
|
|
695 return finish_init_buffer (b, name);
|
|
696 #endif /* 0 */
|
|
697 }
|
|
698
|
|
699
|
|
700 static void
|
|
701 reset_buffer_local_variables (struct buffer *b, int first_time)
|
|
702 {
|
|
703 struct buffer *def = XBUFFER (Vbuffer_defaults);
|
|
704
|
|
705 b->local_var_flags = 0;
|
|
706 /* For each slot that has a default value,
|
|
707 copy that into the slot. */
|
|
708 #define MARKED_SLOT(slot) \
|
|
709 { int mask = XINT (buffer_local_flags.slot); \
|
|
710 if ((mask > 0 || mask == -1 || mask == -3) \
|
|
711 && (first_time \
|
|
712 || NILP (Fget (XBUFFER (Vbuffer_local_symbols)->slot, \
|
|
713 Qpermanent_local, Qnil)))) \
|
|
714 b->slot = def->slot; \
|
|
715 }
|
|
716 #include "bufslots.h"
|
|
717 #undef MARKED_SLOT
|
|
718 }
|
|
719
|
|
720
|
|
721 /* We split this away from generate-new-buffer, because rename-buffer
|
|
722 and set-visited-file-name ought to be able to use this to really
|
|
723 rename the buffer properly. */
|
|
724
|
20
|
725 DEFUN ("generate-new-buffer-name", Fgenerate_new_buffer_name, 1, 2, 0, /*
|
0
|
726 Return a string that is the name of no existing buffer based on NAME.
|
|
727 If there is no live buffer named NAME, then return NAME.
|
|
728 Otherwise modify name by appending `<NUMBER>', incrementing NUMBER
|
|
729 until an unused name is found, and then return that name.
|
|
730 Optional second argument IGNORE specifies a name that is okay to use
|
|
731 \(if it is in the sequence to be tried)
|
|
732 even if a buffer with that name exists.
|
20
|
733 */
|
|
734 (name, ignore))
|
0
|
735 {
|
|
736 REGISTER Lisp_Object gentemp, tem;
|
|
737 int count;
|
|
738 char number[10];
|
|
739
|
|
740 CHECK_STRING (name);
|
|
741
|
|
742 name = LISP_GETTEXT (name);
|
|
743 #ifdef I18N3
|
|
744 /* #### Doc string should indicate that the buffer name will get
|
|
745 translated. */
|
|
746 #endif
|
|
747
|
|
748 tem = Fget_buffer (name);
|
|
749 if (NILP (tem))
|
|
750 return (name);
|
|
751
|
|
752 count = 1;
|
|
753 while (1)
|
|
754 {
|
|
755 sprintf (number, "<%d>", ++count);
|
|
756 gentemp = concat2 (name, build_string (number));
|
|
757 if (!NILP (ignore))
|
|
758 {
|
|
759 tem = Fstring_equal (gentemp, ignore);
|
|
760 if (!NILP (tem))
|
|
761 return gentemp;
|
|
762 }
|
|
763 tem = Fget_buffer (gentemp);
|
|
764 if (NILP (tem))
|
|
765 return (gentemp);
|
|
766 }
|
|
767 }
|
|
768
|
|
769
|
20
|
770 DEFUN ("buffer-name", Fbuffer_name, 0, 1, 0, /*
|
0
|
771 Return the name of BUFFER, as a string.
|
|
772 With no argument or nil as argument, return the name of the current buffer.
|
20
|
773 */
|
|
774 (buffer))
|
0
|
775 {
|
|
776 /* For compatibility, we allow a dead buffer here.
|
|
777 Earlier versions of Emacs didn't provide buffer-live-p. */
|
|
778 if (NILP (buffer))
|
|
779 return current_buffer->name;
|
|
780 CHECK_BUFFER (buffer);
|
|
781 return XBUFFER (buffer)->name;
|
|
782 }
|
|
783
|
20
|
784 DEFUN ("buffer-file-name", Fbuffer_file_name, 0, 1, 0, /*
|
0
|
785 Return name of file BUFFER is visiting, or nil if none.
|
|
786 No argument or nil as argument means use the current buffer.
|
20
|
787 */
|
|
788 (buffer))
|
0
|
789 {
|
|
790 /* For compatibility, we allow a dead buffer here. Yuck! */
|
|
791 if (NILP (buffer))
|
|
792 return current_buffer->filename;
|
|
793 CHECK_BUFFER (buffer);
|
|
794 return XBUFFER (buffer)->filename;
|
|
795 }
|
|
796
|
20
|
797 DEFUN ("buffer-base-buffer", Fbuffer_base_buffer, 0, 1, 0, /*
|
0
|
798 Return the base buffer of indirect buffer BUFFER.
|
|
799 If BUFFER is not indirect, return nil.
|
20
|
800 */
|
|
801 (buffer))
|
0
|
802 {
|
|
803 struct buffer *buf = decode_buffer (buffer, 0);
|
|
804 struct buffer *base = buf->base_buffer;
|
|
805 Lisp_Object base_buffer = Qnil;
|
|
806
|
|
807 if (! base)
|
|
808 return Qnil;
|
|
809 XSETBUFFER (base_buffer, base);
|
|
810 return base_buffer;
|
|
811 }
|
|
812
|
20
|
813 DEFUN ("buffer-indirect-children", Fbuffer_indirect_children, 0, 1, 0, /*
|
0
|
814 Return a list of all indirect buffers whose base buffer is BUFFER.
|
|
815 If BUFFER is indirect, the return value will always be nil; see
|
|
816 `make-indirect-buffer'.
|
20
|
817 */
|
|
818 (buffer))
|
0
|
819 {
|
|
820 struct buffer *buf = decode_buffer (buffer, 0);
|
|
821
|
|
822 return Fcopy_sequence (buf->indirect_children);
|
|
823 }
|
|
824
|
|
825 /* Map MAPFUN over all buffers that share the same text as BUF
|
|
826 (this includes BUF). Pass two arguments to MAPFUN: a buffer,
|
|
827 and CLOSURE. If any invocation of MAPFUN returns non-zero,
|
|
828 halt immediately and return that value. Otherwise, continue
|
|
829 the mapping to the end and return 0. */
|
|
830
|
|
831 int
|
|
832 map_over_sharing_buffers (struct buffer *buf,
|
|
833 int (*mapfun) (struct buffer *buf, void *closure),
|
|
834 void *closure)
|
|
835 {
|
|
836 int result;
|
|
837 Lisp_Object tail;
|
|
838
|
|
839 if (buf->base_buffer)
|
|
840 {
|
|
841 buf = buf->base_buffer;
|
|
842 assert (!buf->base_buffer);
|
|
843 }
|
|
844
|
|
845 result = (mapfun) (buf, closure);
|
|
846 if (result)
|
|
847 return result;
|
|
848
|
|
849 LIST_LOOP (tail, buf->indirect_children)
|
|
850 {
|
|
851 Lisp_Object buffer = XCAR (tail);
|
|
852 result = (mapfun) (XBUFFER (buffer), closure);
|
|
853 if (result)
|
|
854 return result;
|
|
855 }
|
|
856
|
|
857 return 0;
|
|
858 }
|
|
859
|
20
|
860 DEFUN ("buffer-local-variables", Fbuffer_local_variables, 0, 1, 0, /*
|
0
|
861 Return an alist of variables that are buffer-local in BUFFER.
|
|
862 Most elements look like (SYMBOL . VALUE), describing one variable.
|
|
863 For a symbol that is locally unbound, just the symbol appears in the value.
|
|
864 Note that storing new VALUEs in these elements doesn't change the variables.
|
|
865 No argument or nil as argument means use current buffer as BUFFER.
|
20
|
866 */
|
|
867 (buffer))
|
0
|
868 {
|
|
869 struct buffer *buf = decode_buffer (buffer, 0);
|
|
870 Lisp_Object result = Qnil;
|
|
871
|
|
872 {
|
|
873 Lisp_Object tail;
|
|
874 for (tail = buf->local_var_alist; CONSP (tail); tail = XCDR (tail))
|
|
875 {
|
|
876 Lisp_Object elt = XCAR (tail);
|
|
877 /* Reference each variable in the alist in buf.
|
|
878 If inquiring about the current buffer, this gets the current values,
|
|
879 so store them into the alist so the alist is up to date.
|
|
880 If inquiring about some other buffer, this swaps out any values
|
|
881 for that buffer, making the alist up to date automatically. */
|
|
882 Lisp_Object val = find_symbol_value (XCAR (elt));
|
|
883 /* Use the current buffer value only if buf is the current buffer. */
|
|
884 if (buf != current_buffer)
|
|
885 val = XCDR (elt);
|
|
886
|
|
887 /* If symbol is unbound, put just the symbol in the list. */
|
|
888 if (UNBOUNDP (val))
|
|
889 result = Fcons (XCAR (elt), result);
|
|
890 /* Otherwise, put (symbol . value) in the list. */
|
|
891 else
|
|
892 result = Fcons (Fcons (XCAR (elt), val), result);
|
|
893 }
|
|
894 }
|
|
895
|
|
896 /* Add on all the variables stored in special slots. */
|
|
897 {
|
|
898 struct buffer *syms = XBUFFER (Vbuffer_local_symbols);
|
|
899 #define MARKED_SLOT(slot) \
|
|
900 { int mask = XINT (buffer_local_flags.slot); \
|
|
901 if (mask == 0 || mask == -1 \
|
|
902 || ((mask > 0) && (buf->local_var_flags & mask))) \
|
|
903 result = Fcons (Fcons (syms->slot, buf->slot), result); \
|
|
904 }
|
|
905 #include "bufslots.h"
|
|
906 #undef MARKED_SLOT
|
|
907 }
|
|
908 return (result);
|
|
909 }
|
|
910
|
20
|
911 DEFUN ("buffer-dedicated-frame", Fbuffer_dedicated_frame, 0, 1, 0, /*
|
0
|
912 Return the frame dedicated to this BUFFER, or nil if there is none.
|
|
913 No argument or nil as argument means use current buffer as BUFFER.
|
20
|
914 */
|
|
915 (buffer))
|
0
|
916 {
|
|
917 struct buffer *buf = decode_buffer (buffer, 0);
|
|
918
|
|
919 /* XEmacs addition: if the frame is dead, silently make it go away. */
|
|
920 if (!NILP (buf->dedicated_frame) &&
|
|
921 !FRAME_LIVE_P (XFRAME (buf->dedicated_frame)))
|
|
922 buf->dedicated_frame = Qnil;
|
|
923
|
|
924 return buf->dedicated_frame;
|
|
925 }
|
|
926
|
20
|
927 DEFUN ("set-buffer-dedicated-frame", Fset_buffer_dedicated_frame, 2, 2, 0, /*
|
0
|
928 For this BUFFER, set the FRAME dedicated to it.
|
|
929 FRAME must be a frame or nil.
|
20
|
930 */
|
|
931 (buffer, frame))
|
0
|
932 {
|
|
933 struct buffer *buf = decode_buffer (buffer, 0);
|
|
934
|
|
935 if (!NILP (frame))
|
|
936 CHECK_LIVE_FRAME (frame); /* XEmacs change */
|
|
937
|
|
938 return buf->dedicated_frame = frame;
|
|
939 }
|
|
940
|
|
941
|
|
942
|
20
|
943 DEFUN ("buffer-modified-p", Fbuffer_modified_p, 0, 1, 0, /*
|
0
|
944 Return t if BUFFER was modified since its file was last read or saved.
|
|
945 No argument or nil as argument means use current buffer as BUFFER.
|
20
|
946 */
|
|
947 (buffer))
|
0
|
948 {
|
|
949 struct buffer *buf = decode_buffer (buffer, 0);
|
|
950
|
|
951 return BUF_SAVE_MODIFF (buf) < BUF_MODIFF (buf) ? Qt : Qnil;
|
|
952 }
|
|
953
|
20
|
954 DEFUN ("set-buffer-modified-p", Fset_buffer_modified_p, 1, 2, 0, /*
|
0
|
955 Mark BUFFER as modified or unmodified according to FLAG.
|
|
956 A non-nil FLAG means mark the buffer modified. No argument or nil
|
|
957 as BUFFER means use current buffer.
|
20
|
958 */
|
|
959 (flag, buffer))
|
0
|
960 {
|
|
961 /* This function can GC */
|
|
962 Lisp_Object fn;
|
|
963 struct buffer *buf = decode_buffer (buffer, 0);
|
|
964
|
|
965 #ifdef ENERGIZE
|
|
966 Lisp_Object starting_flag =
|
|
967 (BUF_SAVE_MODIFF (buf) < BUF_MODIFF (buf)) ? Qt : Qnil;
|
|
968 Lisp_Object argument_flag = (NILP (flag)) ? Qnil : Qt;
|
|
969 #endif
|
|
970
|
|
971 #ifdef CLASH_DETECTION
|
|
972 /* If buffer becoming modified, lock the file.
|
|
973 If buffer becoming unmodified, unlock the file. */
|
|
974
|
|
975 fn = buf->file_truename;
|
|
976 if (!NILP (fn))
|
|
977 {
|
|
978 int already = BUF_SAVE_MODIFF (buf) < BUF_MODIFF (buf);
|
|
979 if (already == NILP (flag))
|
|
980 {
|
|
981 int count = specpdl_depth ();
|
|
982 /* lock_file() and unlock_file() currently use current_buffer */
|
|
983 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
984 set_buffer_internal (buf);
|
|
985 if (!already && !NILP (flag))
|
|
986 lock_file (fn);
|
|
987 else if (already && NILP (flag))
|
|
988 unlock_file (fn);
|
|
989 unbind_to (count, Qnil);
|
|
990 }
|
|
991 }
|
|
992 #endif /* CLASH_DETECTION */
|
|
993
|
|
994 /* This is often called when the buffer contents are altered but we
|
|
995 don't want to treat the changes that way (e.g. selective
|
|
996 display). We still need to make sure redisplay realizes that the
|
|
997 contents have potentially altered and it needs to do some
|
|
998 work. */
|
|
999 BUF_MODIFF (buf)++;
|
|
1000 BUF_SAVE_MODIFF (buf) = NILP (flag) ? BUF_MODIFF (buf) : 0;
|
|
1001 MARK_MODELINE_CHANGED;
|
|
1002
|
|
1003 #ifdef ENERGIZE
|
|
1004 /* don't send any notification if we are "setting" the modification bit
|
|
1005 to be the same as it already was */
|
|
1006 if (!EQ (starting_flag, argument_flag))
|
|
1007 {
|
|
1008 extern Lisp_Object Qenergize_buffer_modified_hook;
|
|
1009 int count = specpdl_depth ();
|
|
1010 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
1011 set_buffer_internal (buf);
|
|
1012 va_run_hook_with_args (Qenergize_buffer_modified_hook, 3,
|
|
1013 flag, make_int (BUF_BEG (buf)),
|
|
1014 make_int (BUF_Z (buf)));
|
|
1015 unbind_to (count, Qnil);
|
|
1016 }
|
|
1017 #endif /* ENERGIZE */
|
|
1018
|
|
1019 return flag;
|
|
1020 }
|
|
1021
|
20
|
1022 DEFUN ("buffer-modified-tick", Fbuffer_modified_tick, 0, 1, 0, /*
|
0
|
1023 Return BUFFER's tick counter, incremented for each change in text.
|
|
1024 Each buffer has a tick counter which is incremented each time the text in
|
|
1025 that buffer is changed. It wraps around occasionally.
|
|
1026 No argument or nil as argument means use current buffer as BUFFER.
|
20
|
1027 */
|
|
1028 (buffer))
|
0
|
1029 {
|
|
1030 struct buffer *buf = decode_buffer (buffer, 0);
|
|
1031
|
|
1032 return make_int (BUF_MODIFF (buf));
|
|
1033 }
|
|
1034
|
20
|
1035 DEFUN ("rename-buffer", Frename_buffer, 1, 2,
|
|
1036 "sRename buffer (to new name): \nP", /*
|
0
|
1037 Change current buffer's name to NEWNAME (a string).
|
|
1038 If second arg UNIQUE is nil or omitted, it is an error if a
|
|
1039 buffer named NEWNAME already exists.
|
|
1040 If UNIQUE is non-nil, come up with a new name using
|
|
1041 `generate-new-buffer-name'.
|
|
1042 Interactively, one can set UNIQUE with a prefix argument.
|
|
1043 Returns the name we actually gave the buffer.
|
|
1044 This does not change the name of the visited file (if any).
|
20
|
1045 */
|
|
1046 (newname, unique))
|
0
|
1047 {
|
|
1048 /* This function can GC */
|
|
1049 Lisp_Object tem, buf;
|
|
1050
|
|
1051 #ifdef I18N3
|
|
1052 /* #### Doc string should indicate that the buffer name will get
|
|
1053 translated. */
|
|
1054 #endif
|
|
1055 CHECK_STRING (newname);
|
|
1056 newname = LISP_GETTEXT (newname);
|
|
1057
|
14
|
1058 if (XSTRING_LENGTH (newname) == 0)
|
0
|
1059 error ("Empty string is invalid as a buffer name");
|
|
1060
|
|
1061 tem = Fget_buffer (newname);
|
|
1062 /* Don't short-circuit if UNIQUE is t. That is a useful way to rename
|
|
1063 the buffer automatically so you can create another with the original name.
|
|
1064 It makes UNIQUE equivalent to
|
|
1065 (rename-buffer (generate-new-buffer-name NEWNAME)). */
|
|
1066 /* XEmacs change: added check for nil */
|
|
1067 if (NILP (unique) && !NILP (tem) && XBUFFER (tem) == current_buffer)
|
|
1068 return current_buffer->name;
|
|
1069 if (!NILP (tem))
|
|
1070 {
|
|
1071 if (!NILP (unique))
|
|
1072 newname = Fgenerate_new_buffer_name (newname, current_buffer->name);
|
|
1073 else
|
|
1074 error ("Buffer name \"%s\" is in use",
|
14
|
1075 XSTRING_DATA (newname));
|
0
|
1076 }
|
|
1077
|
|
1078 current_buffer->name = newname;
|
|
1079
|
|
1080 /* Catch redisplay's attention. Unless we do this, the modelines for
|
|
1081 any windows displaying current_buffer will stay unchanged. */
|
|
1082 MARK_MODELINE_CHANGED;
|
|
1083
|
|
1084 buf = Fcurrent_buffer ();
|
|
1085
|
|
1086 /* The aconses in the Vbuffer_alist are shared with frame->buffer_alist,
|
|
1087 so this will change it in the per-frame ordering as well. */
|
|
1088 Fsetcar (Frassq (buf, Vbuffer_alist), newname);
|
|
1089 if (NILP (current_buffer->filename)
|
|
1090 && !NILP (current_buffer->auto_save_file_name))
|
|
1091 call0 (Qrename_auto_save_file);
|
|
1092 /* refetch since that last call may have done GC */
|
|
1093 /* (hypothetical relocating GC) */
|
|
1094 return current_buffer->name;
|
|
1095 }
|
|
1096
|
20
|
1097 DEFUN ("other-buffer", Fother_buffer, 0, 3, 0, /*
|
0
|
1098 Return most recently selected buffer other than BUFFER.
|
|
1099 Buffers not visible in windows are preferred to visible buffers,
|
|
1100 unless optional third argument VISIBLE-OK is non-nil.
|
|
1101 If no other buffer exists, the buffer `*scratch*' is returned.
|
|
1102 If BUFFER is omitted or nil, some interesting buffer is returned.
|
|
1103
|
|
1104 The ordering is for this frame; If second optional argument FRAME
|
|
1105 is provided, then the ordering is for that frame. If the second arg
|
|
1106 is t, then the global ordering is returned.
|
|
1107
|
|
1108 Note: In FSF Emacs, this function takes two arguments: BUFFER and
|
|
1109 VISIBLE-OK.
|
20
|
1110 */
|
|
1111 (buffer, frame, visible_ok))
|
0
|
1112 {
|
|
1113 /* This function can GC */
|
|
1114 Lisp_Object tail, buf, notsogood, tem;
|
|
1115 Lisp_Object alist;
|
|
1116
|
|
1117 notsogood = Qnil;
|
|
1118
|
|
1119 if (EQ (frame, Qt))
|
|
1120 alist = Vbuffer_alist;
|
|
1121 else
|
|
1122 {
|
|
1123 struct frame *f = decode_frame (frame);
|
|
1124
|
|
1125 XSETFRAME (frame, f);
|
|
1126 alist = f->buffer_alist;
|
|
1127 }
|
|
1128
|
|
1129 for (tail = alist; !NILP (tail); tail = Fcdr (tail))
|
|
1130 {
|
|
1131 buf = Fcdr (Fcar (tail));
|
|
1132 if (EQ (buf, buffer))
|
|
1133 continue;
|
|
1134 if (string_byte (XSTRING (XBUFFER (buf)->name), 0) == ' ')
|
|
1135 continue;
|
|
1136 /* If FRAME has a buffer_predicate,
|
|
1137 disregard buffers that don't fit the predicate. */
|
|
1138 if (FRAMEP (frame))
|
|
1139 {
|
|
1140 tem = XFRAME (frame)->buffer_predicate;
|
|
1141 if (!NILP (tem))
|
|
1142 {
|
|
1143 tem = call1 (tem, buf);
|
|
1144 if (NILP (tem))
|
|
1145 continue;
|
|
1146 }
|
|
1147 }
|
|
1148
|
|
1149 if (NILP (visible_ok))
|
|
1150 {
|
|
1151 /* get-buffer-window will handle nil or t frame */
|
|
1152 tem = Fget_buffer_window (buf, frame, Qnil);
|
|
1153 }
|
|
1154 else
|
|
1155 tem = Qnil;
|
|
1156 if (NILP (tem))
|
|
1157 return buf;
|
|
1158 if (NILP (notsogood))
|
|
1159 notsogood = buf;
|
|
1160 }
|
|
1161 if (!NILP (notsogood))
|
|
1162 return notsogood;
|
|
1163 return Fget_buffer_create (QSscratch);
|
|
1164 }
|
|
1165
|
|
1166 /* XEmacs change: Make this argument required because this is a dangerous
|
|
1167 function. */
|
20
|
1168 DEFUN ("buffer-disable-undo", Fbuffer_disable_undo, 1, 1, "", /*
|
0
|
1169 Make BUFFER stop keeping undo information.
|
|
1170 Any undo records it already has are discarded.
|
20
|
1171 */
|
|
1172 (buffer))
|
0
|
1173 {
|
|
1174 /* Allowing nil is an RMSism */
|
|
1175 struct buffer *real_buf = decode_buffer (buffer, 1);
|
|
1176 real_buf->undo_list = Qt;
|
|
1177 return Qnil;
|
|
1178 }
|
|
1179
|
20
|
1180 DEFUN ("buffer-enable-undo", Fbuffer_enable_undo, 0, 1, "", /*
|
0
|
1181 Start keeping undo information for buffer BUFFER.
|
|
1182 No argument or nil as argument means do this for the current buffer.
|
20
|
1183 */
|
|
1184 (buffer))
|
0
|
1185 {
|
|
1186 /* Allowing nil is an RMSism */
|
|
1187 struct buffer *real_buf = decode_buffer (buffer, 1);
|
|
1188 if (EQ (real_buf->undo_list, Qt))
|
|
1189 real_buf->undo_list = Qnil;
|
|
1190
|
|
1191 return Qnil;
|
|
1192 }
|
|
1193
|
20
|
1194 DEFUN ("kill-buffer", Fkill_buffer, 1, 1, "bKill buffer: ", /*
|
0
|
1195 Kill the buffer BUFNAME.
|
|
1196 The argument may be a buffer or may be the name of a buffer.
|
|
1197 An argument of nil means kill the current buffer.
|
|
1198
|
|
1199 Value is t if the buffer is actually killed, nil if user says no.
|
|
1200
|
|
1201 The value of `kill-buffer-hook' (which may be local to that buffer),
|
|
1202 if not void, is a list of functions to be called, with no arguments,
|
|
1203 before the buffer is actually killed. The buffer to be killed is current
|
|
1204 when the hook functions are called.
|
|
1205
|
|
1206 Any processes that have this buffer as the `process-buffer' are killed
|
|
1207 with `delete-process'.
|
20
|
1208 */
|
|
1209 (bufname))
|
0
|
1210 {
|
|
1211 /* This function can GC */
|
|
1212 Lisp_Object buf;
|
|
1213 REGISTER struct buffer *b;
|
|
1214 struct gcpro gcpro1, gcpro2;
|
|
1215
|
|
1216 if (NILP (bufname))
|
|
1217 buf = Fcurrent_buffer ();
|
|
1218 else if (BUFFERP (bufname))
|
|
1219 buf = bufname;
|
|
1220 else
|
|
1221 {
|
|
1222 buf = get_buffer (bufname, 0);
|
|
1223 if (NILP (buf)) nsberror (bufname);
|
|
1224 }
|
|
1225
|
|
1226 b = XBUFFER (buf);
|
|
1227
|
|
1228 /* OK to delete an already-deleted buffer. */
|
|
1229 if (!BUFFER_LIVE_P (b))
|
|
1230 return Qnil;
|
|
1231
|
|
1232 /* Don't kill the minibuffer now current. */
|
|
1233 if (EQ (buf, Vminibuffer_zero))
|
|
1234 return Qnil;
|
|
1235
|
|
1236 /* Or the echo area. */
|
|
1237 if (EQ (buf, Vecho_area_buffer))
|
|
1238 return Qnil;
|
|
1239
|
|
1240 /* Query if the buffer is still modified. */
|
|
1241 if (INTERACTIVE && !NILP (b->filename)
|
|
1242 && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b))
|
|
1243 {
|
|
1244 Lisp_Object killp;
|
|
1245 GCPRO2 (buf, bufname);
|
|
1246 killp = call1
|
|
1247 (Qyes_or_no_p,
|
|
1248 (emacs_doprnt_string_c
|
|
1249 ((CONST Bufbyte *) GETTEXT ("Buffer %s modified; kill anyway? "),
|
14
|
1250 Qnil, -1, XSTRING_DATA (b->name))));
|
0
|
1251 UNGCPRO;
|
|
1252 if (NILP (killp))
|
|
1253 return Qnil;
|
|
1254 b = XBUFFER (buf); /* Hypothetical relocating GC. */
|
|
1255 }
|
|
1256
|
|
1257 /* Run hooks with the buffer to be killed temporarily selected,
|
|
1258 unless the buffer is already dead (could have been deleted
|
|
1259 in the question above).
|
|
1260 */
|
|
1261 if (BUFFER_LIVE_P (b))
|
|
1262 {
|
|
1263 int speccount = specpdl_depth ();
|
|
1264 Lisp_Object tail = Qnil;
|
|
1265
|
|
1266 GCPRO2 (buf, tail);
|
|
1267 record_unwind_protect (save_excursion_restore, save_excursion_save ());
|
|
1268 Fset_buffer (buf);
|
|
1269
|
|
1270 /* First run the query functions; if any query is answered no,
|
|
1271 don't kill the buffer. */
|
|
1272 for (tail = Vkill_buffer_query_functions;
|
|
1273 !NILP (tail);
|
|
1274 tail = Fcdr (tail))
|
|
1275 {
|
|
1276 if (NILP (call0 (Fcar (tail))))
|
|
1277 {
|
|
1278 UNGCPRO;
|
|
1279 return unbind_to (speccount, Qnil);
|
|
1280 }
|
|
1281 }
|
|
1282
|
|
1283 /* Then run the hooks. */
|
|
1284 run_hook (Qkill_buffer_hook);
|
|
1285 #ifdef HAVE_X_WINDOWS
|
|
1286 /* If an X selection was in this buffer, disown it.
|
|
1287 We could have done this by simply adding this function to the
|
|
1288 kill-buffer-hook, but the user might mess that up.
|
|
1289 */
|
|
1290 if (EQ (Vwindow_system, Qx))
|
|
1291 call0 (intern ("xselect-kill-buffer-hook"));
|
|
1292 /* #### generalize me! */
|
|
1293 #endif
|
|
1294 unbind_to (speccount, Qnil);
|
|
1295 UNGCPRO;
|
|
1296 b = XBUFFER (buf); /* Hypothetical relocating GC. */
|
|
1297 }
|
|
1298
|
|
1299 /* We have no more questions to ask. Verify that it is valid
|
|
1300 to kill the buffer. This must be done after the questions
|
|
1301 since anything can happen within yes-or-no-p. */
|
|
1302
|
|
1303 /* Don't kill the minibuffer now current. */
|
|
1304 if (EQ (buf, XWINDOW (minibuf_window)->buffer))
|
|
1305 return Qnil;
|
|
1306
|
|
1307 /* Might have been deleted during the last question above */
|
|
1308 if (!BUFFER_LIVE_P (b))
|
|
1309 return Qnil;
|
|
1310
|
|
1311 /* When we kill a base buffer, kill all its indirect buffers.
|
|
1312 We do it at this stage so nothing terrible happens if they
|
|
1313 ask questions or their hooks get errors. */
|
|
1314 if (! b->base_buffer)
|
|
1315 {
|
|
1316 Lisp_Object rest;
|
|
1317
|
|
1318 GCPRO1 (buf);
|
|
1319
|
|
1320 LIST_LOOP (rest, b->indirect_children)
|
|
1321 Fkill_buffer (XCAR (rest));
|
|
1322
|
|
1323 UNGCPRO;
|
|
1324 }
|
|
1325
|
|
1326 /* Make this buffer not be current.
|
|
1327 In the process, notice if this is the sole visible buffer
|
|
1328 and give up if so. */
|
|
1329 if (b == current_buffer)
|
|
1330 {
|
|
1331 Fset_buffer (Fother_buffer (buf, Qnil, Qnil));
|
|
1332 if (b == current_buffer)
|
|
1333 return Qnil;
|
|
1334 }
|
|
1335
|
|
1336 /* Now there is no question: we can kill the buffer. */
|
|
1337
|
|
1338 #ifdef CLASH_DETECTION
|
|
1339 /* Unlock this buffer's file, if it is locked. */
|
|
1340 unlock_buffer (b);
|
|
1341 #endif /* CLASH_DETECTION */
|
|
1342
|
|
1343 {
|
|
1344 int speccount = specpdl_depth ();
|
|
1345 specbind (Qinhibit_quit, Qt);
|
|
1346
|
|
1347 kill_buffer_processes (buf);
|
|
1348
|
|
1349 /* #### This is a problem if this buffer is in a dedicated window.
|
|
1350 Need to undedicate any windows of this buffer first (and delete them?)
|
|
1351 */
|
|
1352 Freplace_buffer_in_windows (buf);
|
|
1353
|
|
1354 delete_from_buffer_alist (buf);
|
|
1355
|
|
1356 font_lock_buffer_was_killed (b);
|
|
1357
|
|
1358 /* Delete any auto-save file, if we saved it in this session. */
|
|
1359 if (STRINGP (b->auto_save_file_name)
|
|
1360 && b->auto_save_modified != 0
|
|
1361 && BUF_SAVE_MODIFF (b) < b->auto_save_modified)
|
|
1362 {
|
|
1363 if (!NILP (Vdelete_auto_save_files))
|
|
1364 internal_delete_file (b->auto_save_file_name);
|
|
1365 }
|
|
1366
|
|
1367 uninit_buffer_markers (b);
|
|
1368
|
|
1369 kill_buffer_local_variables (b);
|
|
1370
|
|
1371 b->name = Qnil;
|
|
1372 uninit_buffer_text (b, !!b->base_buffer);
|
|
1373 b->undo_list = Qnil;
|
|
1374 uninit_buffer_extents (b);
|
|
1375 if (b->base_buffer)
|
|
1376 {
|
|
1377 #ifdef ERROR_CHECK_BUFPOS
|
|
1378 assert (!NILP (memq_no_quit (buf, b->base_buffer->indirect_children)));
|
|
1379 #endif
|
|
1380 b->base_buffer->indirect_children =
|
|
1381 delq_no_quit (buf, b->base_buffer->indirect_children);
|
|
1382 }
|
|
1383
|
|
1384 /* Clear away all Lisp objects, so that they
|
|
1385 won't be protected from GC. */
|
|
1386 nuke_all_buffer_slots (b, Qnil);
|
|
1387
|
|
1388 unbind_to (speccount, Qnil);
|
|
1389 }
|
|
1390 return Qt;
|
|
1391 }
|
|
1392
|
20
|
1393 DEFUN ("record-buffer", Frecord_buffer, 1, 1, 0, /*
|
2
|
1394 Place buffer BUF first in the buffer order.
|
|
1395 Call this function when a buffer is selected \"visibly\".
|
|
1396
|
|
1397 This function changes the global buffer order and the per-frame buffer
|
|
1398 order for the selected frame. The buffer order keeps track of recency
|
|
1399 of selection so that `other-buffer' will return a recently selected
|
|
1400 buffer. See `other-buffer' for more information.
|
20
|
1401 */
|
|
1402 (buf))
|
0
|
1403 {
|
|
1404 REGISTER Lisp_Object lynk, prev;
|
|
1405 struct frame *f = selected_frame ();
|
|
1406
|
|
1407 prev = Qnil;
|
|
1408 for (lynk = Vbuffer_alist; CONSP (lynk); lynk = XCDR (lynk))
|
|
1409 {
|
|
1410 if (EQ (XCDR (XCAR (lynk)), buf))
|
|
1411 break;
|
|
1412 prev = lynk;
|
|
1413 }
|
|
1414 /* Effectively do Vbuffer_alist = delq_no_quit (lynk, Vbuffer_alist) */
|
|
1415 if (NILP (prev))
|
|
1416 Vbuffer_alist = XCDR (Vbuffer_alist);
|
|
1417 else
|
|
1418 XCDR (prev) = XCDR (XCDR (prev));
|
|
1419 XCDR (lynk) = Vbuffer_alist;
|
|
1420 Vbuffer_alist = lynk;
|
|
1421
|
|
1422 /* That was the global one. Now do the same thing for the
|
|
1423 per-frame buffer-alist. */
|
|
1424 prev = Qnil;
|
|
1425 for (lynk = f->buffer_alist; CONSP (lynk); lynk = XCDR (lynk))
|
|
1426 {
|
|
1427 if (EQ (XCDR (XCAR (lynk)), buf))
|
|
1428 break;
|
|
1429 prev = lynk;
|
|
1430 }
|
|
1431 /* Effectively do f->buffer_alist = delq_no_quit (lynk, f->buffer_alist) */
|
|
1432 if (NILP (prev))
|
|
1433 f->buffer_alist = XCDR (f->buffer_alist);
|
|
1434 else
|
|
1435 XCDR (prev) = XCDR (XCDR (prev));
|
|
1436 XCDR (lynk) = f->buffer_alist;
|
|
1437 f->buffer_alist = lynk;
|
|
1438 return Qnil;
|
|
1439 }
|
|
1440
|
20
|
1441 DEFUN ("set-buffer-major-mode", Fset_buffer_major_mode, 1, 1, 0, /*
|
0
|
1442 Set an appropriate major mode for BUFFER, according to `default-major-mode'.
|
|
1443 Use this function before selecting the buffer, since it may need to inspect
|
|
1444 the current buffer's major mode.
|
20
|
1445 */
|
|
1446 (buf))
|
0
|
1447 {
|
|
1448 int speccount = specpdl_depth ();
|
|
1449 REGISTER Lisp_Object function, tem;
|
|
1450
|
|
1451 function = XBUFFER (Vbuffer_defaults)->major_mode;
|
|
1452 if (NILP (function))
|
|
1453 {
|
|
1454 tem = Fget (current_buffer->major_mode, Qmode_class, Qnil);
|
|
1455 if (NILP (tem))
|
|
1456 function = current_buffer->major_mode;
|
|
1457 }
|
|
1458
|
|
1459 if (NILP (function) || EQ (function, Qfundamental_mode))
|
|
1460 return Qnil;
|
|
1461
|
|
1462 /* To select a nonfundamental mode,
|
|
1463 select the buffer temporarily and then call the mode function. */
|
|
1464
|
|
1465 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
|
|
1466
|
|
1467 Fset_buffer (buf);
|
|
1468 call0 (function);
|
|
1469
|
|
1470 return unbind_to (speccount, Qnil);
|
|
1471 }
|
|
1472
|
|
1473 void
|
|
1474 switch_to_buffer (Lisp_Object bufname, Lisp_Object norecord)
|
|
1475 {
|
|
1476 call2 (Qswitch_to_buffer, bufname, norecord);
|
|
1477 }
|
|
1478
|
|
1479
|
20
|
1480 DEFUN ("current-buffer", Fcurrent_buffer, 0, 0, 0, /*
|
0
|
1481 Return the current buffer as a Lisp object.
|
20
|
1482 */
|
|
1483 ())
|
0
|
1484 {
|
|
1485 Lisp_Object buf;
|
|
1486 XSETBUFFER (buf, current_buffer);
|
|
1487 return buf;
|
|
1488 }
|
|
1489
|
|
1490 /* Set the current buffer to B. */
|
|
1491
|
|
1492 void
|
|
1493 set_buffer_internal (struct buffer *b)
|
|
1494 {
|
|
1495 REGISTER struct buffer *old_buf;
|
|
1496 REGISTER Lisp_Object tail;
|
|
1497
|
|
1498 if (current_buffer == b)
|
|
1499 return;
|
|
1500
|
|
1501 INVALIDATE_PIXEL_TO_GLYPH_CACHE;
|
|
1502
|
|
1503 old_buf = current_buffer;
|
|
1504 current_buffer = b;
|
|
1505 invalidate_current_column (); /* invalidate indentation cache */
|
|
1506
|
|
1507 #ifdef HAVE_FEP
|
|
1508 if (!noninteractive && initialized)
|
|
1509 {
|
|
1510 extern Lisp_Object Ffep_force_on (), Ffep_force_off (), Ffep_get_mode ();
|
|
1511
|
|
1512 old_buf->fep_mode = Ffep_get_mode ();
|
|
1513
|
|
1514 if (!NILP (current_buffer->fep_mode))
|
|
1515 Ffep_force_on ();
|
|
1516 else
|
|
1517 Ffep_force_off ();
|
|
1518 }
|
|
1519 #endif
|
|
1520
|
|
1521 if (old_buf)
|
|
1522 {
|
|
1523 /* Put the undo list back in the base buffer, so that it appears
|
|
1524 that an indirect buffer shares the undo list of its base. */
|
|
1525 if (old_buf->base_buffer)
|
|
1526 old_buf->base_buffer->undo_list = old_buf->undo_list;
|
|
1527 }
|
|
1528
|
|
1529 /* Get the undo list from the base buffer, so that it appears
|
|
1530 that an indirect buffer shares the undo list of its base. */
|
|
1531 if (b->base_buffer)
|
|
1532 b->undo_list = b->base_buffer->undo_list;
|
|
1533
|
|
1534 /* Look down buffer's list of local Lisp variables
|
|
1535 to find and update any that forward into C variables. */
|
|
1536
|
|
1537 LIST_LOOP (tail, b->local_var_alist)
|
|
1538 {
|
|
1539 Lisp_Object sym = XCAR (XCAR (tail));
|
|
1540 Lisp_Object valcontents = XSYMBOL (sym)->value;
|
|
1541 if (SYMBOL_VALUE_MAGIC_P (valcontents))
|
|
1542 {
|
|
1543 /* Just reference the variable
|
|
1544 to cause it to become set for this buffer. */
|
16
|
1545 /* Use find_symbol_value_quickly to avoid an unnecessary O(n)
|
|
1546 lookup. */
|
|
1547 (void) find_symbol_value_quickly (XCAR (tail), 1);
|
0
|
1548 }
|
|
1549 }
|
|
1550
|
|
1551 /* Do the same with any others that were local to the previous buffer */
|
|
1552
|
|
1553 if (old_buf)
|
|
1554 {
|
16
|
1555 LIST_LOOP (tail, old_buf->local_var_alist)
|
0
|
1556 {
|
|
1557 Lisp_Object sym = XCAR (XCAR (tail));
|
|
1558 Lisp_Object valcontents = XSYMBOL (sym)->value;
|
|
1559
|
|
1560 if (SYMBOL_VALUE_MAGIC_P (valcontents))
|
|
1561 {
|
|
1562 /* Just reference the variable
|
|
1563 to cause it to become set for this buffer. */
|
16
|
1564 /* Use find_symbol_value_quickly with find_it_p as 0 to avoid an
|
|
1565 unnecessary O(n) lookup which is guaranteed to be worst case.
|
|
1566 Any symbols which are local are guaranteed to have been
|
|
1567 handled in the previous loop, above. */
|
|
1568 (void) find_symbol_value_quickly (sym, 0);
|
0
|
1569 }
|
|
1570 }
|
|
1571 }
|
|
1572 }
|
|
1573
|
20
|
1574 DEFUN ("set-buffer", Fset_buffer, 1, 1, 0, /*
|
0
|
1575 Make the buffer BUFNAME current for editing operations.
|
|
1576 BUFNAME may be a buffer or the name of an existing buffer.
|
|
1577 See also `save-excursion' when you want to make a buffer current temporarily.
|
|
1578 This function does not display the buffer, so its effect ends
|
|
1579 when the current command terminates.
|
|
1580 Use `switch-to-buffer' or `pop-to-buffer' to switch buffers permanently.
|
20
|
1581 */
|
|
1582 (bufname))
|
0
|
1583 {
|
|
1584 Lisp_Object buffer;
|
|
1585 buffer = get_buffer (bufname, 0);
|
|
1586 if (NILP (buffer))
|
|
1587 error ("Selecting deleted or non-existent buffer");
|
|
1588 set_buffer_internal (XBUFFER (buffer));
|
|
1589 return buffer;
|
|
1590 }
|
|
1591
|
|
1592
|
20
|
1593 DEFUN ("barf-if-buffer-read-only", Fbarf_if_buffer_read_only, 0, 3, 0, /*
|
0
|
1594 Signal a `buffer-read-only' error if the buffer is read-only.
|
|
1595 Optional argument BUFFER defaults to the current buffer.
|
|
1596
|
|
1597 If optional argument START is non-nil, all extents in the buffer
|
|
1598 which overlap that part of the buffer are checked to ensure none has a
|
|
1599 `read-only' property. (Extents that lie completely within the range,
|
|
1600 however, are not checked.) END defaults to the value of START.
|
|
1601
|
|
1602 If START and END are equal, the range checked is [START, END] (i.e.
|
|
1603 closed on both ends); otherwise, the range checked is (START, END)
|
|
1604 (open on both ends), except that extents that lie completely within
|
|
1605 [START, END] are not checked. See `extent-in-region-p' for a fuller
|
|
1606 discussion.
|
20
|
1607 */
|
|
1608 (buffer, start, end))
|
0
|
1609 {
|
|
1610 struct buffer *b = decode_buffer (buffer, 0);
|
|
1611 Bufpos s, e;
|
|
1612
|
|
1613 if (NILP (start))
|
|
1614 s = e = -1;
|
|
1615 else
|
|
1616 {
|
|
1617 if (NILP (end))
|
|
1618 end = start;
|
|
1619 get_buffer_range_char (b, start, end, &s, &e, 0);
|
|
1620 }
|
|
1621 barf_if_buffer_read_only (b, s, e);
|
|
1622
|
|
1623 return (Qnil);
|
|
1624 }
|
|
1625
|
|
1626 static void
|
|
1627 bury_buffer_1 (Lisp_Object buffer, Lisp_Object before,
|
|
1628 Lisp_Object *buffer_alist)
|
|
1629 {
|
|
1630 Lisp_Object aelt = rassq_no_quit (buffer, *buffer_alist);
|
|
1631 Lisp_Object lynk = memq_no_quit (aelt, *buffer_alist);
|
|
1632 Lisp_Object iter, before_before;
|
|
1633
|
|
1634 *buffer_alist = delq_no_quit (aelt, *buffer_alist);
|
|
1635 for (before_before = Qnil, iter = *buffer_alist;
|
|
1636 !NILP (iter) && !EQ (XCDR (XCAR (iter)), before);
|
|
1637 before_before = iter, iter = XCDR (iter))
|
|
1638 ;
|
|
1639 XCDR (lynk) = iter;
|
|
1640 if (!NILP (before_before))
|
|
1641 XCDR (before_before) = lynk;
|
|
1642 else
|
|
1643 *buffer_alist = lynk;
|
|
1644 }
|
|
1645
|
20
|
1646 DEFUN ("bury-buffer", Fbury_buffer, 0, 2, "", /*
|
0
|
1647 Put BUFFER at the end of the list of all buffers.
|
|
1648 There it is the least likely candidate for `other-buffer' to return;
|
|
1649 thus, the least likely buffer for \\[switch-to-buffer] to select by default.
|
|
1650 If BUFFER is nil or omitted, bury the current buffer.
|
|
1651 Also, if BUFFER is nil or omitted, remove the current buffer from the
|
|
1652 selected window if it is displayed there.
|
|
1653 If BEFORE is non-nil, it specifies a buffer before which BUFFER
|
|
1654 will be placed, instead of being placed at the end.
|
20
|
1655 */
|
|
1656 (buffer, before))
|
0
|
1657 {
|
|
1658 /* This function can GC */
|
|
1659 struct buffer *buf = decode_buffer (buffer, 1);
|
|
1660 /* If we're burying the current buffer, unshow it. */
|
|
1661 /* Note that the behavior of (bury-buffer nil) and
|
|
1662 (bury-buffer (current-buffer)) is not the same.
|
|
1663 This is illogical but is historical. Changing it
|
|
1664 breaks mh-e and TeX and such packages. */
|
|
1665 if (NILP (buffer))
|
|
1666 switch_to_buffer (Fother_buffer (Fcurrent_buffer (), Qnil, Qnil), Qnil);
|
|
1667 XSETBUFFER (buffer, buf);
|
|
1668
|
|
1669 if (!NILP (before))
|
|
1670 before = get_buffer (before, 1);
|
|
1671
|
|
1672 if (EQ (before, buffer))
|
|
1673 error ("Cannot place a buffer before itself");
|
|
1674
|
|
1675 bury_buffer_1 (buffer, before, &Vbuffer_alist);
|
|
1676 bury_buffer_1 (buffer, before, &selected_frame ()->buffer_alist);
|
|
1677
|
|
1678 return Qnil;
|
|
1679 }
|
|
1680
|
|
1681
|
20
|
1682 DEFUN ("erase-buffer", Ferase_buffer, 0, 1, "*", /*
|
0
|
1683 Delete the entire contents of the BUFFER.
|
|
1684 Any clipping restriction in effect (see `narrow-to-region') is removed,
|
|
1685 so the buffer is truly empty after this.
|
|
1686 BUFFER defaults to the current buffer if omitted.
|
20
|
1687 */
|
|
1688 (buffer))
|
0
|
1689 {
|
|
1690 /* This function can GC */
|
|
1691 struct buffer *b = decode_buffer (buffer, 1);
|
|
1692 /* #### yuck yuck yuck. This is gross. The old echo-area code,
|
|
1693 however, was the only place that called erase_buffer() with a
|
|
1694 non-zero NO_CLIP argument.
|
|
1695
|
|
1696 Someone needs to fix up the redisplay code so it is smarter
|
|
1697 about this, so that the NO_CLIP junk isn't necessary. */
|
|
1698 int no_clip = (b == XBUFFER (Vecho_area_buffer));
|
|
1699
|
|
1700 INVALIDATE_PIXEL_TO_GLYPH_CACHE;
|
|
1701
|
|
1702 widen_buffer (b, no_clip);
|
|
1703 buffer_delete_range (b, BUF_BEG (b), BUF_Z (b), 0);
|
|
1704 b->last_window_start = 1;
|
|
1705
|
|
1706 /* Prevent warnings, or suspension of auto saving, that would happen
|
|
1707 if future size is less than past size. Use of erase-buffer
|
|
1708 implies that the future text is not really related to the past text. */
|
|
1709 b->save_length = Qzero;
|
|
1710
|
|
1711 zmacs_region_stays = 0;
|
|
1712 return Qnil;
|
|
1713 }
|
|
1714
|
|
1715
|
|
1716
|
20
|
1717 DEFUN ("kill-all-local-variables", Fkill_all_local_variables, 0, 0, 0, /*
|
0
|
1718 Switch to Fundamental mode by killing current buffer's local variables.
|
|
1719 Most local variable bindings are eliminated so that the default values
|
|
1720 become effective once more. Also, the syntax table is set from
|
|
1721 `standard-syntax-table', local keymap is set to nil,
|
|
1722 the abbrev table is set from `fundamental-mode-abbrev-table',
|
|
1723 and all specifier specifications whose locale is the current buffer
|
|
1724 are removed. This function also forces redisplay of the modeline.
|
|
1725
|
|
1726 Every function to select a new major mode starts by
|
|
1727 calling this function.
|
|
1728
|
|
1729 As a special exception, local variables whose names have
|
|
1730 a non-nil `permanent-local' property are not eliminated by this function.
|
|
1731
|
|
1732 The first thing this function does is run
|
|
1733 the normal hook `change-major-mode-hook'.
|
20
|
1734 */
|
|
1735 ())
|
0
|
1736 {
|
|
1737 /* This function can GC */
|
|
1738 run_hook (Qchange_major_mode_hook);
|
|
1739
|
|
1740 reset_buffer_local_variables (current_buffer, 0);
|
|
1741
|
|
1742 kill_buffer_local_variables (current_buffer);
|
|
1743
|
|
1744 kill_specifier_buffer_locals (Fcurrent_buffer ());
|
|
1745
|
|
1746 /* Force modeline redisplay. Useful here because all major mode
|
|
1747 commands call this function. */
|
|
1748 MARK_MODELINE_CHANGED;
|
|
1749
|
|
1750 return Qnil;
|
|
1751 }
|
|
1752
|
|
1753 #ifdef MEMORY_USAGE_STATS
|
|
1754
|
|
1755 struct buffer_stats
|
|
1756 {
|
|
1757 int text;
|
|
1758 int markers;
|
|
1759 int extents;
|
|
1760 int other;
|
|
1761 };
|
|
1762
|
|
1763 static int
|
|
1764 compute_buffer_text_usage (struct buffer *b, struct overhead_stats *ovstats)
|
|
1765 {
|
|
1766 int malloc_use;
|
|
1767 int was_requested;
|
|
1768 int gap;
|
|
1769
|
|
1770 was_requested = b->text->z - 1;
|
|
1771 gap = b->text->gap_size;
|
|
1772 malloc_use = malloced_storage_size (b->text->beg, was_requested + gap, 0);
|
|
1773 ovstats->gap_overhead += gap;
|
|
1774 ovstats->was_requested += was_requested;
|
|
1775 ovstats->malloc_overhead += malloc_use - (was_requested + gap);
|
|
1776 return malloc_use;
|
|
1777 }
|
|
1778
|
|
1779 static void
|
|
1780 compute_buffer_usage (struct buffer *b, struct buffer_stats *stats,
|
|
1781 struct overhead_stats *ovstats)
|
|
1782 {
|
|
1783 memset (stats, 0, sizeof (*stats));
|
|
1784 stats->other += malloced_storage_size (b, sizeof (struct buffer), ovstats);
|
|
1785 stats->text += compute_buffer_text_usage (b, ovstats);
|
|
1786 stats->markers += compute_buffer_marker_usage (b, ovstats);
|
|
1787 stats->extents += compute_buffer_extent_usage (b, ovstats);
|
|
1788 }
|
|
1789
|
20
|
1790 DEFUN ("buffer-memory-usage", Fbuffer_memory_usage, 1, 1, 0, /*
|
0
|
1791 Return stats about the memory usage of buffer BUFFER.
|
|
1792 The values returned are in the form an alist of usage types and byte
|
|
1793 counts. The byte counts attempt to encompass all the memory used
|
|
1794 by the buffer (separate from the memory logically associated with a
|
|
1795 buffer or frame), including internal structures and any malloc()
|
|
1796 overhead associated with them. In practice, the byte counts are
|
|
1797 underestimated because certain memory usage is very hard to determine
|
|
1798 (e.g. the amount of memory used inside the Xt library or inside the
|
|
1799 X server) and because there is other stuff that might logically
|
|
1800 be associated with a window, buffer, or frame (e.g. window configurations,
|
|
1801 glyphs) but should not obviously be included in the usage counts.
|
|
1802
|
|
1803 Multiple slices of the total memory usage may be returned, separated
|
|
1804 by a nil. Each slice represents a particular view of the memory, a
|
|
1805 particular way of partitioning it into groups. Within a slice, there
|
|
1806 is no overlap between the groups of memory, and each slice collectively
|
|
1807 represents all the memory concerned.
|
20
|
1808 */
|
|
1809 (buffer))
|
0
|
1810 {
|
|
1811 struct buffer_stats stats;
|
|
1812 struct overhead_stats ovstats;
|
|
1813
|
|
1814 CHECK_BUFFER (buffer); /* dead buffers should be allowed, no? */
|
|
1815 memset (&ovstats, 0, sizeof (ovstats));
|
|
1816 compute_buffer_usage (XBUFFER (buffer), &stats, &ovstats);
|
|
1817
|
|
1818 return nconc2 (list4 (Fcons (Qtext, make_int (stats.text)),
|
|
1819 Fcons (Qmarkers, make_int (stats.markers)),
|
|
1820 Fcons (Qextents, make_int (stats.extents)),
|
|
1821 Fcons (Qother, make_int (stats.other))),
|
|
1822 list5 (Qnil,
|
|
1823 Fcons (Qactually_requested,
|
|
1824 make_int (ovstats.was_requested)),
|
|
1825 Fcons (Qmalloc_overhead,
|
|
1826 make_int (ovstats.malloc_overhead)),
|
|
1827 Fcons (Qgap_overhead,
|
|
1828 make_int (ovstats.malloc_overhead)),
|
|
1829 Fcons (Qdynarr_overhead,
|
|
1830 make_int (ovstats.dynarr_overhead))));
|
|
1831 }
|
|
1832
|
|
1833 #endif /* MEMORY_USAGE_STATS */
|
|
1834
|
|
1835 void
|
|
1836 syms_of_buffer (void)
|
|
1837 {
|
|
1838 defsymbol (&Qbuffer_live_p, "buffer-live-p");
|
|
1839 defsymbol (&Qbuffer_or_string_p, "buffer-or-string-p");
|
|
1840 defsymbol (&Qmode_class, "mode-class");
|
|
1841 defsymbol (&Qrename_auto_save_file, "rename-auto-save-file");
|
|
1842 defsymbol (&Qkill_buffer_hook, "kill-buffer-hook");
|
|
1843 defsymbol (&Qpermanent_local, "permanent-local");
|
|
1844
|
|
1845 defsymbol (&Qfirst_change_hook, "first-change-hook");
|
|
1846 defsymbol (&Qbefore_change_functions, "before-change-functions");
|
|
1847 defsymbol (&Qafter_change_functions, "after-change-functions");
|
|
1848
|
|
1849 /* #### Obsolete, for compatibility */
|
|
1850 defsymbol (&Qbefore_change_function, "before-change-function");
|
|
1851 defsymbol (&Qafter_change_function, "after-change-function");
|
|
1852
|
|
1853 defsymbol (&Qbuffer_file_name, "buffer-file-name");
|
|
1854 defsymbol (&Qbuffer_undo_list, "buffer-undo-list");
|
|
1855 defsymbol (&Qdefault_directory, "default-directory");
|
|
1856
|
|
1857 defsymbol (&Qget_file_buffer, "get-file-buffer");
|
|
1858 defsymbol (&Qchange_major_mode_hook, "change-major-mode-hook");
|
|
1859
|
|
1860 defsymbol (&Qfundamental_mode, "fundamental-mode");
|
|
1861
|
|
1862 defsymbol (&Qfind_file_compare_truenames, "find-file-compare-truenames");
|
|
1863
|
|
1864 defsymbol (&Qswitch_to_buffer, "switch-to-buffer");
|
|
1865
|
20
|
1866 DEFSUBR (Fbufferp);
|
|
1867 DEFSUBR (Fbuffer_live_p);
|
|
1868 DEFSUBR (Fbuffer_list);
|
|
1869 DEFSUBR (Fdecode_buffer);
|
|
1870 DEFSUBR (Fget_buffer);
|
|
1871 DEFSUBR (Fget_file_buffer);
|
|
1872 DEFSUBR (Fget_buffer_create);
|
|
1873 DEFSUBR (Fmake_indirect_buffer);
|
|
1874
|
|
1875 DEFSUBR (Fgenerate_new_buffer_name);
|
|
1876 DEFSUBR (Fbuffer_name);
|
|
1877 DEFSUBR (Fbuffer_file_name);
|
|
1878 DEFSUBR (Fbuffer_base_buffer);
|
|
1879 DEFSUBR (Fbuffer_indirect_children);
|
|
1880 DEFSUBR (Fbuffer_local_variables);
|
|
1881 DEFSUBR (Fbuffer_dedicated_frame);
|
|
1882 DEFSUBR (Fset_buffer_dedicated_frame);
|
|
1883 DEFSUBR (Fbuffer_modified_p);
|
|
1884 DEFSUBR (Fset_buffer_modified_p);
|
|
1885 DEFSUBR (Fbuffer_modified_tick);
|
|
1886 DEFSUBR (Frename_buffer);
|
|
1887 DEFSUBR (Fother_buffer);
|
|
1888 DEFSUBR (Fbuffer_disable_undo);
|
|
1889 DEFSUBR (Fbuffer_enable_undo);
|
|
1890 DEFSUBR (Fkill_buffer);
|
|
1891 DEFSUBR (Ferase_buffer);
|
|
1892 DEFSUBR (Frecord_buffer);
|
|
1893 DEFSUBR (Fset_buffer_major_mode);
|
|
1894 DEFSUBR (Fcurrent_buffer);
|
|
1895 DEFSUBR (Fset_buffer);
|
|
1896 DEFSUBR (Fbarf_if_buffer_read_only);
|
|
1897 DEFSUBR (Fbury_buffer);
|
|
1898 DEFSUBR (Fkill_all_local_variables);
|
0
|
1899 #ifdef MEMORY_USAGE_STATS
|
20
|
1900 DEFSUBR (Fbuffer_memory_usage);
|
0
|
1901 #endif
|
|
1902
|
|
1903 deferror (&Qprotected_field, "protected-field",
|
|
1904 "Attempt to modify a protected field", Qerror);
|
|
1905 }
|
|
1906
|
|
1907 /* initialize the buffer routines */
|
|
1908 void
|
|
1909 vars_of_buffer (void)
|
|
1910 {
|
|
1911 /* This function can GC */
|
|
1912 staticpro (&QSFundamental);
|
|
1913 staticpro (&QSscratch);
|
|
1914 staticpro (&Vbuffer_alist);
|
|
1915
|
|
1916 QSFundamental = Fpurecopy (build_string ("Fundamental"));
|
|
1917 QSscratch = Fpurecopy (build_string (DEFER_GETTEXT ("*scratch*")));
|
|
1918
|
|
1919 Vbuffer_alist = Qnil;
|
|
1920 current_buffer = 0;
|
|
1921
|
|
1922 DEFVAR_LISP ("change-major-mode-hook", &Vchange_major_mode_hook /*
|
|
1923 List of hooks to be run before killing local variables in a buffer.
|
2
|
1924 This should be used by any mode that temporarily alters the contents or
|
0
|
1925 the read-only state of the buffer. See also `kill-all-local-variables'.
|
|
1926 */ );
|
|
1927 Vchange_major_mode_hook = Qnil;
|
|
1928
|
|
1929 DEFVAR_BOOL ("find-file-compare-truenames", &find_file_compare_truenames /*
|
|
1930 If this is true, then the find-file command will check the truenames
|
|
1931 of all visited files when deciding whether a given file is already in
|
|
1932 a buffer, instead of just the buffer-file-name. This means that if you
|
|
1933 attempt to visit another file which is a symbolic-link to a file which is
|
|
1934 already in a buffer, the existing buffer will be found instead of a newly-
|
|
1935 created one. This works if any component of the pathname (including a non-
|
|
1936 terminal component) is a symbolic link as well, but doesn't work with hard
|
|
1937 links (nothing does).
|
|
1938
|
|
1939 See also the variable find-file-use-truenames.
|
|
1940 */ );
|
|
1941 find_file_compare_truenames = 0;
|
|
1942
|
|
1943 DEFVAR_BOOL ("find-file-use-truenames", &find_file_use_truenames /*
|
|
1944 If this is true, then a buffer's visited file-name will always be
|
|
1945 chased back to the real file; it will never be a symbolic link, and there
|
|
1946 will never be a symbolic link anywhere in its directory path.
|
|
1947 That is, the buffer-file-name and buffer-file-truename will be equal.
|
|
1948 This doesn't work with hard links.
|
|
1949
|
|
1950 See also the variable find-file-compare-truenames.
|
|
1951 */ );
|
|
1952 find_file_use_truenames = 0;
|
|
1953
|
|
1954 DEFVAR_LISP ("before-change-functions", &Vbefore_change_functions /*
|
|
1955 List of functions to call before each text change.
|
|
1956 Two arguments are passed to each function: the positions of
|
|
1957 the beginning and end of the range of old text to be changed.
|
|
1958 \(For an insertion, the beginning and end are at the same place.)
|
|
1959 No information is given about the length of the text after the change.
|
|
1960
|
|
1961 Buffer changes made while executing the `before-change-functions'
|
|
1962 don't call any before-change or after-change functions.
|
|
1963 */ );
|
|
1964 Vbefore_change_functions = Qnil;
|
|
1965
|
|
1966 /* FSF Emacs has the following additional doc at the end of
|
|
1967 before-change-functions and after-change-functions:
|
|
1968
|
|
1969 That's because these variables are temporarily set to nil.\n\
|
|
1970 As a result, a hook function cannot straightforwardly alter the value of\n\
|
|
1971 these variables. See the Emacs Lisp manual for a way of\n\
|
|
1972 accomplishing an equivalent result by using other variables.
|
|
1973
|
|
1974 But this doesn't apply under XEmacs because things are
|
|
1975 handled better. */
|
|
1976
|
|
1977 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions /*
|
|
1978 List of functions to call after each text change.
|
|
1979 Three arguments are passed to each function: the positions of
|
|
1980 the beginning and end of the range of changed text,
|
|
1981 and the length of the pre-change text replaced by that range.
|
|
1982 \(For an insertion, the pre-change length is zero;
|
|
1983 for a deletion, that length is the number of characters deleted,
|
|
1984 and the post-change beginning and end are at the same place.)
|
|
1985
|
|
1986 Buffer changes made while executing `after-change-functions'
|
|
1987 don't call any before-change or after-change functions.
|
|
1988 */ );
|
|
1989 Vafter_change_functions = Qnil;
|
|
1990
|
|
1991 DEFVAR_LISP ("before-change-function", &Vbefore_change_function /*
|
|
1992
|
|
1993 */ ); /* obsoleteness will be documented */
|
|
1994 Vbefore_change_function = Qnil;
|
|
1995
|
|
1996 DEFVAR_LISP ("after-change-function", &Vafter_change_function /*
|
|
1997
|
|
1998 */ ); /* obsoleteness will be documented */
|
|
1999 Vafter_change_function = Qnil;
|
|
2000
|
|
2001 DEFVAR_LISP ("first-change-hook", &Vfirst_change_hook /*
|
|
2002 A list of functions to call before changing a buffer which is unmodified.
|
|
2003 The functions are run using the `run-hooks' function.
|
|
2004 */ );
|
|
2005 Vfirst_change_hook = Qnil;
|
|
2006
|
|
2007 #if 0 /* FSFmacs */
|
|
2008 xxDEFVAR_LISP ("transient-mark-mode", &Vtransient_mark_mode /*
|
|
2009 *Non-nil means deactivate the mark when the buffer contents change.
|
|
2010 */ );
|
|
2011 Vtransient_mark_mode = Qnil;
|
|
2012 #endif
|
|
2013
|
|
2014 DEFVAR_INT ("undo-threshold", &undo_threshold /*
|
|
2015 Keep no more undo information once it exceeds this size.
|
|
2016 This threshold is applied when garbage collection happens.
|
|
2017 The size is counted as the number of bytes occupied,
|
|
2018 which includes both saved text and other data.
|
|
2019 */ );
|
|
2020 undo_threshold = 20000;
|
|
2021
|
|
2022 DEFVAR_INT ("undo-high-threshold", &undo_high_threshold /*
|
|
2023 Don't keep more than this much size of undo information.
|
|
2024 A command which pushes past this size is itself forgotten.
|
|
2025 This threshold is applied when garbage collection happens.
|
|
2026 The size is counted as the number of bytes occupied,
|
|
2027 which includes both saved text and other data.
|
|
2028 */ );
|
|
2029 undo_high_threshold = 30000;
|
|
2030
|
|
2031 DEFVAR_LISP ("inhibit-read-only", &Vinhibit_read_only /*
|
|
2032 *Non-nil means disregard read-only status of buffers or characters.
|
|
2033 If the value is t, disregard `buffer-read-only' and all `read-only'
|
|
2034 text properties. If the value is a list, disregard `buffer-read-only'
|
|
2035 and disregard a `read-only' extent property or text property if the
|
|
2036 property value is a member of the list.
|
|
2037 */ );
|
|
2038 Vinhibit_read_only = Qnil;
|
|
2039
|
|
2040 DEFVAR_LISP ("kill-buffer-query-functions", &Vkill_buffer_query_functions /*
|
|
2041 List of functions called with no args to query before killing a buffer.
|
|
2042 */ );
|
|
2043 Vkill_buffer_query_functions = Qnil;
|
|
2044
|
|
2045 DEFVAR_LISP ("delete-auto-save-files", &Vdelete_auto_save_files /*
|
|
2046 *Non-nil means delete auto-save file when a buffer is saved or killed.
|
|
2047 */ );
|
|
2048 Vdelete_auto_save_files = Qt;
|
|
2049 }
|
|
2050
|
|
2051 /* DOC is ignored because it is snagged and recorded externally
|
|
2052 * by make-docfile */
|
|
2053 /* Renamed from DEFVAR_PER_BUFFER because FSFmacs D_P_B takes
|
|
2054 * a bogus extra arg, which confuses an otherwise identical make-docfile.c */
|
|
2055 /* Declaring this stuff as const produces 'Cannot reinitialize' messages
|
|
2056 from SunPro C's fix-and-continue feature (a way neato feature that
|
|
2057 makes debugging unbelievably more bearable) */
|
|
2058 #define DEFVAR_BUFFER_LOCAL(lname, field_name) \
|
|
2059 do { static CONST_IF_NOT_DEBUG struct symbol_value_forward I_hate_C \
|
|
2060 = { { { { lrecord_symbol_value_forward }, \
|
|
2061 (void *) &(buffer_local_flags.field_name), 69 }, \
|
|
2062 SYMVAL_CURRENT_BUFFER_FORWARD }, 0 }; \
|
|
2063 defvar_buffer_local ((lname), &I_hate_C); \
|
|
2064 } while (0)
|
|
2065
|
|
2066 #define DEFVAR_BUFFER_LOCAL_MAGIC(lname, field_name, magicfun) \
|
|
2067 do { static CONST_IF_NOT_DEBUG struct symbol_value_forward I_hate_C \
|
|
2068 = { { { { lrecord_symbol_value_forward }, \
|
|
2069 (void *) &(buffer_local_flags.field_name), 69 }, \
|
|
2070 SYMVAL_CURRENT_BUFFER_FORWARD }, magicfun }; \
|
|
2071 defvar_buffer_local ((lname), &I_hate_C); \
|
|
2072 } while (0)
|
|
2073
|
|
2074 #define DEFVAR_CONST_BUFFER_LOCAL(lname, field_name) \
|
|
2075 do { static CONST_IF_NOT_DEBUG struct symbol_value_forward I_hate_C \
|
|
2076 = { { { { lrecord_symbol_value_forward }, \
|
|
2077 (void *) &(buffer_local_flags.field_name), 69 }, \
|
|
2078 SYMVAL_CONST_CURRENT_BUFFER_FORWARD }, 0 }; \
|
|
2079 defvar_buffer_local ((lname), &I_hate_C); \
|
|
2080 } while (0)
|
|
2081
|
|
2082 #define DEFVAR_CONST_BUFFER_LOCAL_MAGIC(lname, field_name, magicfun) \
|
|
2083 do { static CONST_IF_NOT_DEBUG struct symbol_value_forward I_hate_C \
|
|
2084 = { { { { lrecord_symbol_value_forward }, \
|
|
2085 (void *) &(buffer_local_flags.field_name), 69 }, \
|
|
2086 SYMVAL_CONST_CURRENT_BUFFER_FORWARD }, magicfun }; \
|
|
2087 defvar_buffer_local ((lname), &I_hate_C); \
|
|
2088 } while (0)
|
|
2089
|
|
2090 static void
|
|
2091 defvar_buffer_local (CONST char *namestring,
|
|
2092 CONST struct symbol_value_forward *m)
|
|
2093 {
|
|
2094 int offset = ((char *)symbol_value_forward_forward (m)
|
|
2095 - (char *)&buffer_local_flags);
|
|
2096
|
|
2097 defvar_mumble (namestring, m, sizeof (*m));
|
|
2098
|
|
2099 *((Lisp_Object *)(offset + (char *)XBUFFER (Vbuffer_local_symbols)))
|
|
2100 = intern (namestring);
|
|
2101 }
|
|
2102
|
|
2103 /* DOC is ignored because it is snagged and recorded externally
|
|
2104 * by make-docfile */
|
|
2105 #define DEFVAR_BUFFER_DEFAULTS(lname, field_name) \
|
|
2106 do { static CONST_IF_NOT_DEBUG struct symbol_value_forward I_hate_C \
|
|
2107 = { { { { lrecord_symbol_value_forward }, \
|
|
2108 (void *) &(buffer_local_flags.field_name), 69 }, \
|
|
2109 SYMVAL_DEFAULT_BUFFER_FORWARD }, 0 }; \
|
|
2110 defvar_mumble ((lname), &I_hate_C, sizeof (I_hate_C)); \
|
|
2111 } while (0)
|
|
2112
|
|
2113 #define DEFVAR_BUFFER_DEFAULTS_MAGIC(lname, field_name, magicfun) \
|
|
2114 do { static CONST_IF_NOT_DEBUG struct symbol_value_forward I_hate_C \
|
|
2115 = { { { { lrecord_symbol_value_forward }, \
|
|
2116 (void *) &(buffer_local_flags.field_name), 69 }, \
|
|
2117 SYMVAL_DEFAULT_BUFFER_FORWARD }, magicfun }; \
|
|
2118 defvar_mumble ((lname), &I_hate_C, sizeof (I_hate_C)); \
|
|
2119 } while (0)
|
|
2120
|
|
2121 static void
|
|
2122 nuke_all_buffer_slots (struct buffer *b, Lisp_Object zap)
|
|
2123 {
|
|
2124 zero_lcrecord (b);
|
|
2125
|
|
2126 #define MARKED_SLOT(x) b->x = (zap);
|
|
2127 #include "bufslots.h"
|
|
2128 #undef MARKED_SLOT
|
|
2129 }
|
|
2130
|
|
2131 void
|
|
2132 complex_vars_of_buffer (void)
|
|
2133 {
|
|
2134 /* Make sure all markable slots in buffer_defaults
|
|
2135 are initialized reasonably, so mark_buffer won't choke.
|
|
2136 */
|
|
2137 struct buffer *defs = alloc_lcrecord (sizeof (struct buffer),
|
|
2138 lrecord_buffer);
|
|
2139 struct buffer *syms = alloc_lcrecord (sizeof (struct buffer),
|
|
2140 lrecord_buffer);
|
|
2141
|
|
2142 staticpro (&Vbuffer_defaults);
|
|
2143 staticpro (&Vbuffer_local_symbols);
|
|
2144 XSETBUFFER (Vbuffer_defaults, defs);
|
|
2145 XSETBUFFER (Vbuffer_local_symbols, syms);
|
|
2146
|
|
2147 nuke_all_buffer_slots (syms, Qnil);
|
|
2148 nuke_all_buffer_slots (defs, Qnil);
|
|
2149 defs->text = &defs->own_text;
|
|
2150 syms->text = &syms->own_text;
|
|
2151
|
|
2152 /* Set up the non-nil default values of various buffer slots.
|
|
2153 Must do these before making the first buffer.
|
|
2154 */
|
|
2155 defs->major_mode = Qfundamental_mode;
|
|
2156 defs->mode_name = QSFundamental;
|
|
2157 defs->abbrev_table = Qnil; /* real default setup by Lisp code */
|
|
2158 defs->downcase_table = Vascii_downcase_table;
|
|
2159 defs->upcase_table = Vascii_upcase_table;
|
|
2160 defs->case_canon_table = Vascii_canon_table;
|
|
2161 defs->case_eqv_table = Vascii_eqv_table;
|
|
2162 defs->syntax_table = Vstandard_syntax_table;
|
|
2163
|
|
2164 defs->modeline_format = build_string ("%-"); /* reset in loaddefs.el */
|
|
2165 defs->case_fold_search = Qt;
|
|
2166 defs->selective_display_ellipses = Qt;
|
|
2167 defs->tab_width = make_int (8);
|
|
2168 defs->ctl_arrow = Qt;
|
|
2169 defs->fill_column = make_int (70);
|
|
2170 defs->left_margin = Qzero;
|
|
2171 defs->save_length = Qzero; /* lisp code wants int-or-nil */
|
|
2172 defs->modtime = 0;
|
|
2173 defs->auto_save_modified = 0;
|
|
2174 defs->auto_save_failure_time = -1;
|
|
2175 defs->invisibility_spec = Qt;
|
|
2176
|
|
2177 {
|
|
2178 /* 0 means var is always local. Default used only at creation.
|
|
2179 * -1 means var is always local. Default used only at reset and
|
|
2180 * creation.
|
|
2181 * -2 means there's no lisp variable corresponding to this slot
|
|
2182 * and the default is only used at creation.
|
|
2183 * -3 means no Lisp variable. Default used only at reset and creation.
|
|
2184 * >0 is mask. Var is local if ((buffer->local_var_flags & mask) != 0)
|
|
2185 * Otherwise default is used.
|
|
2186 */
|
|
2187 Lisp_Object always_local_no_default = make_int (0);
|
|
2188 Lisp_Object always_local_resettable = make_int (-1);
|
|
2189 Lisp_Object resettable = make_int (-3);
|
|
2190
|
|
2191 /* Assign the local-flags to the slots that have default values.
|
|
2192 The local flag is a bit that is used in the buffer
|
|
2193 to say that it has its own local value for the slot.
|
|
2194 The local flag bits are in the local_var_flags slot of the
|
|
2195 buffer. */
|
|
2196
|
|
2197 nuke_all_buffer_slots (&buffer_local_flags, make_int (-2));
|
|
2198 buffer_local_flags.filename = always_local_no_default;
|
|
2199 buffer_local_flags.directory = always_local_no_default;
|
|
2200 buffer_local_flags.backed_up = always_local_no_default;
|
|
2201 buffer_local_flags.save_length = always_local_no_default;
|
|
2202 buffer_local_flags.auto_save_file_name = always_local_no_default;
|
|
2203 buffer_local_flags.read_only = always_local_no_default;
|
|
2204
|
|
2205 buffer_local_flags.major_mode = always_local_resettable;
|
|
2206 buffer_local_flags.mode_name = always_local_resettable;
|
|
2207 buffer_local_flags.undo_list = always_local_no_default;
|
|
2208 #if 0 /* FSFmacs */
|
|
2209 buffer_local_flags.mark_active = always_local_resettable;
|
|
2210 #endif
|
|
2211 buffer_local_flags.point_before_scroll = always_local_resettable;
|
|
2212 buffer_local_flags.file_truename = always_local_no_default;
|
|
2213 buffer_local_flags.invisibility_spec = always_local_resettable;
|
|
2214 buffer_local_flags.file_format = always_local_resettable;
|
|
2215 buffer_local_flags.generated_modeline_string = always_local_no_default;
|
|
2216
|
|
2217 buffer_local_flags.keymap = resettable;
|
|
2218 buffer_local_flags.downcase_table = resettable;
|
|
2219 buffer_local_flags.upcase_table = resettable;
|
|
2220 buffer_local_flags.case_canon_table = resettable;
|
|
2221 buffer_local_flags.case_eqv_table = resettable;
|
|
2222 buffer_local_flags.syntax_table = resettable;
|
|
2223
|
|
2224 buffer_local_flags.modeline_format = make_int (1);
|
|
2225 buffer_local_flags.abbrev_mode = make_int (2);
|
|
2226 buffer_local_flags.overwrite_mode = make_int (4);
|
|
2227 buffer_local_flags.case_fold_search = make_int (8);
|
|
2228 buffer_local_flags.auto_fill_function = make_int (0x10);
|
|
2229 buffer_local_flags.selective_display = make_int (0x20);
|
|
2230 buffer_local_flags.selective_display_ellipses = make_int (0x40);
|
|
2231 buffer_local_flags.tab_width = make_int (0x80);
|
|
2232 buffer_local_flags.truncate_lines = make_int (0x100);
|
|
2233 buffer_local_flags.ctl_arrow = make_int (0x200);
|
|
2234 buffer_local_flags.fill_column = make_int (0x400);
|
|
2235 buffer_local_flags.left_margin = make_int (0x800);
|
|
2236 buffer_local_flags.abbrev_table = make_int (0x1000);
|
|
2237 #ifdef REGION_CACHE_NEEDS_WORK
|
|
2238 buffer_local_flags.cache_long_line_scans = make_int (0x2000);
|
|
2239 #endif
|
|
2240 buffer_local_flags.buffer_file_type = make_int (0x4000);
|
|
2241
|
|
2242 /* #### Warning, 0x4000000 (that's six zeroes) is the largest number
|
|
2243 currently allowable due to the XINT() handling of this value.
|
|
2244 With some rearrangement you can get 4 more bits. */
|
|
2245 }
|
|
2246
|
|
2247 DEFVAR_BUFFER_DEFAULTS ("default-modeline-format", modeline_format /*
|
|
2248 Default value of `modeline-format' for buffers that don't override it.
|
|
2249 This is the same as (default-value 'modeline-format).
|
|
2250 */ );
|
|
2251
|
|
2252 DEFVAR_BUFFER_DEFAULTS ("default-abbrev-mode", abbrev_mode /*
|
|
2253 Default value of `abbrev-mode' for buffers that do not override it.
|
|
2254 This is the same as (default-value 'abbrev-mode).
|
|
2255 */ );
|
|
2256
|
|
2257 DEFVAR_BUFFER_DEFAULTS ("default-ctl-arrow", ctl_arrow /*
|
|
2258 Default value of `ctl-arrow' for buffers that do not override it.
|
|
2259 This is the same as (default-value 'ctl-arrow).
|
|
2260 */ );
|
|
2261
|
|
2262 #if 0 /* #### make this a specifier! */
|
|
2263 DEFVAR_BUFFER_DEFAULTS ("default-display-direction", display_direction /*
|
|
2264 Default display-direction for buffers that do not override it.
|
|
2265 This is the same as (default-value 'display-direction).
|
|
2266 Note: This is not yet implemented.
|
|
2267 */ );
|
|
2268 #endif
|
|
2269
|
|
2270 DEFVAR_BUFFER_DEFAULTS ("default-truncate-lines", truncate_lines /*
|
|
2271 Default value of `truncate-lines' for buffers that do not override it.
|
|
2272 This is the same as (default-value 'truncate-lines).
|
|
2273 */ );
|
|
2274
|
|
2275 DEFVAR_BUFFER_DEFAULTS ("default-fill-column", fill_column /*
|
|
2276 Default value of `fill-column' for buffers that do not override it.
|
|
2277 This is the same as (default-value 'fill-column).
|
|
2278 */ );
|
|
2279
|
|
2280 DEFVAR_BUFFER_DEFAULTS ("default-left-margin", left_margin /*
|
|
2281 Default value of `left-margin' for buffers that do not override it.
|
|
2282 This is the same as (default-value 'left-margin).
|
|
2283 */ );
|
|
2284
|
|
2285 DEFVAR_BUFFER_DEFAULTS ("default-tab-width", tab_width /*
|
|
2286 Default value of `tab-width' for buffers that do not override it.
|
|
2287 This is the same as (default-value 'tab-width).
|
|
2288 */ );
|
|
2289
|
|
2290 DEFVAR_BUFFER_DEFAULTS ("default-case-fold-search", case_fold_search /*
|
|
2291 Default value of `case-fold-search' for buffers that don't override it.
|
|
2292 This is the same as (default-value 'case-fold-search).
|
|
2293 */ );
|
|
2294
|
|
2295 DEFVAR_BUFFER_DEFAULTS ("default-buffer-file-type", buffer_file_type /*
|
|
2296 Default file type for buffers that do not override it.
|
|
2297 This is the same as (default-value 'buffer-file-type).
|
|
2298 The file type is nil for text, t for binary.
|
|
2299 */ );
|
|
2300
|
|
2301 DEFVAR_BUFFER_LOCAL ("modeline-format", modeline_format /*
|
|
2302 Template for displaying modeline for current buffer.
|
|
2303 Each buffer has its own value of this variable.
|
|
2304 Value may be a string, a symbol or a list or cons cell.
|
|
2305 For a symbol, its value is used (but it is ignored if t or nil).
|
|
2306 A string appearing directly as the value of a symbol is processed verbatim
|
|
2307 in that the %-constructs below are not recognized.
|
|
2308 For a glyph, it is inserted as is.
|
|
2309 For a list whose car is a symbol, the symbol's value is taken,
|
|
2310 and if that is non-nil, the cadr of the list is processed recursively.
|
|
2311 Otherwise, the caddr of the list (if there is one) is processed.
|
|
2312 For a list whose car is a string or list, each element is processed
|
|
2313 recursively and the results are effectively concatenated.
|
|
2314 For a list whose car is an integer, the cdr of the list is processed
|
|
2315 and padded (if the number is positive) or truncated (if negative)
|
|
2316 to the width specified by that number.
|
|
2317 For a list whose car is an extent, the cdr of the list is processed
|
|
2318 normally but the results are displayed using the face of the
|
|
2319 extent, and mouse clicks over this section are processed using the
|
|
2320 keymap of the extent. (In addition, if the extent has a help-echo
|
|
2321 property, that string will be echoed when the mouse moves over this
|
|
2322 section.) See `generated-modeline-string' for more information.
|
|
2323 For a list whose car is a face, the cdr of the list is processed
|
|
2324 normally but the results will be displayed using the face in the car.
|
|
2325 For a list whose car is a keymap, the cdr of the list is processed
|
|
2326 normally but the keymap will apply for mouse clicks over the results,
|
|
2327 in addition to `modeline-map'. Nested keymap specifications are
|
|
2328 handled properly.
|
|
2329 A string is printed verbatim in the modeline except for %-constructs:
|
|
2330 (%-constructs are processed when the string is the entire modeline-format
|
|
2331 or when it is found in a cons-cell or a list)
|
|
2332 %b -- print buffer name. %c -- print the current column number.
|
|
2333 %f -- print visited file name.
|
|
2334 %* -- print %, * or hyphen. %+ -- print *, % or hyphen.
|
|
2335 % means buffer is read-only and * means it is modified.
|
|
2336 For a modified read-only buffer, %* gives % and %+ gives *.
|
|
2337 %s -- print process status. %l -- print the current line number.
|
|
2338 %S -- print name of selected frame (only meaningful under X Windows).
|
|
2339 %p -- print percent of buffer above top of window, or Top, Bot or All.
|
|
2340 %P -- print percent of buffer above bottom of window, perhaps plus Top,
|
|
2341 or print Bottom or All.
|
|
2342 %n -- print Narrow if appropriate.
|
|
2343 %t -- Under MS-DOS, print T if files is text, B if binary.
|
|
2344 %[ -- print one [ for each recursive editing level. %] similar.
|
|
2345 %% -- print %. %- -- print infinitely many dashes.
|
14
|
2346 Decimal digits after the % specify field width to which to pad.
|
|
2347 */ );
|
0
|
2348
|
|
2349 DEFVAR_BUFFER_DEFAULTS ("default-major-mode", major_mode /*
|
|
2350 *Major mode for new buffers. Defaults to `fundamental-mode'.
|
|
2351 nil here means use current buffer's major mode.
|
|
2352 */ );
|
|
2353
|
|
2354 DEFVAR_BUFFER_DEFAULTS ("fundamental-mode-abbrev-table", abbrev_table /*
|
|
2355 The abbrev table of mode-specific abbrevs for Fundamental Mode.
|
|
2356 */ );
|
|
2357
|
|
2358 DEFVAR_BUFFER_LOCAL ("major-mode", major_mode /*
|
|
2359 Symbol for current buffer's major mode.
|
|
2360 */ );
|
|
2361
|
|
2362 DEFVAR_BUFFER_LOCAL ("mode-name", mode_name /*
|
|
2363 Pretty name of current buffer's major mode (a string).
|
|
2364 */ );
|
|
2365
|
|
2366 DEFVAR_BUFFER_LOCAL ("abbrev-mode", abbrev_mode /*
|
|
2367 Non-nil turns on automatic expansion of abbrevs as they are inserted.
|
|
2368 Automatically becomes buffer-local when set in any fashion.
|
|
2369 */ );
|
|
2370
|
|
2371 DEFVAR_BUFFER_LOCAL ("case-fold-search", case_fold_search /*
|
|
2372 *Non-nil if searches should ignore case.
|
|
2373 Automatically becomes buffer-local when set in any fashion.
|
|
2374 */ );
|
|
2375
|
|
2376 DEFVAR_BUFFER_LOCAL ("fill-column", fill_column /*
|
|
2377 *Column beyond which automatic line-wrapping should happen.
|
|
2378 Automatically becomes buffer-local when set in any fashion.
|
|
2379 */ );
|
|
2380
|
|
2381 DEFVAR_BUFFER_LOCAL ("left-margin", left_margin /*
|
|
2382 *Column for the default indent-line-function to indent to.
|
|
2383 Linefeed indents to this column in Fundamental mode.
|
|
2384 Automatically becomes buffer-local when set in any fashion.
|
|
2385 Do not confuse this with the specifier `left-margin-width';
|
|
2386 that controls the size of a margin that is displayed outside
|
|
2387 of the text area.
|
|
2388 */ );
|
|
2389
|
|
2390 DEFVAR_BUFFER_LOCAL_MAGIC ("tab-width", tab_width /*
|
|
2391 *Distance between tab stops (for display of tab characters), in columns.
|
|
2392 Automatically becomes buffer-local when set in any fashion.
|
|
2393 */ , redisplay_variable_changed);
|
|
2394
|
|
2395 DEFVAR_BUFFER_LOCAL_MAGIC ("ctl-arrow", ctl_arrow /*
|
|
2396 *Non-nil means display control chars with uparrow.
|
|
2397 Nil means use backslash and octal digits.
|
|
2398 An integer means characters >= ctl-arrow are assumed to be printable, and
|
|
2399 will be displayed as a single glyph.
|
|
2400 Any other value is the same as 160 - the code SPC with the high bit on.
|
|
2401
|
|
2402 The interpretation of this variable is likely to change in the future.
|
|
2403
|
|
2404 Automatically becomes buffer-local when set in any fashion.
|
|
2405 This variable does not apply to characters whose display is specified
|
|
2406 in the current display table (if there is one).
|
|
2407 */ , redisplay_variable_changed);
|
|
2408
|
|
2409 #if 0 /* #### Make this a specifier! */
|
|
2410 xxDEFVAR_BUFFER_LOCAL ("display-direction", display_direction /*
|
|
2411 *Non-nil means lines in the buffer are displayed right to left.
|
|
2412 Nil means left to right. (Not yet implemented.)
|
|
2413 */ );
|
|
2414 #endif
|
|
2415
|
|
2416 DEFVAR_BUFFER_LOCAL_MAGIC ("truncate-lines", truncate_lines /*
|
|
2417 *Non-nil means do not display continuation lines;
|
|
2418 give each line of text one frame line.
|
|
2419 Automatically becomes buffer-local when set in any fashion.
|
|
2420
|
|
2421 Note that this is overridden by the variable
|
|
2422 `truncate-partial-width-windows' if that variable is non-nil
|
|
2423 and this buffer is not full-frame width.
|
2
|
2424 */ , redisplay_variable_changed);
|
0
|
2425
|
|
2426 DEFVAR_BUFFER_LOCAL ("default-directory", directory /*
|
|
2427 Name of default directory of current buffer. Should end with slash.
|
|
2428 Each buffer has its own value of this variable.
|
|
2429 */ );
|
|
2430
|
|
2431 DEFVAR_BUFFER_LOCAL ("buffer-file-type", buffer_file_type /*
|
|
2432 "Non-nil if the visited file is a binary file.
|
|
2433 This variable is meaningful on MS-DOG and Windows NT.
|
|
2434 On those systems, it is automatically local in every buffer.
|
|
2435 On other systems, this variable is normally always nil.
|
|
2436 */ );
|
|
2437
|
|
2438 DEFVAR_BUFFER_LOCAL ("auto-fill-function", auto_fill_function /*
|
|
2439 Function called (if non-nil) to perform auto-fill.
|
|
2440 It is called after self-inserting a space at a column beyond `fill-column'.
|
|
2441 Each buffer has its own value of this variable.
|
|
2442 NOTE: This variable is not an ordinary hook;
|
|
2443 It may not be a list of functions.
|
|
2444 */ );
|
|
2445
|
|
2446 DEFVAR_BUFFER_LOCAL ("buffer-file-name", filename /*
|
|
2447 Name of file visited in current buffer, or nil if not visiting a file.
|
|
2448 Each buffer has its own value of this variable.
|
|
2449 */ );
|
|
2450
|
|
2451 #if 0 /* FSFmacs */
|
|
2452 /*
|
|
2453 Abbreviated truename of file visited in current buffer, or nil if none.
|
|
2454 The truename of a file is calculated by `file-truename'
|
|
2455 and then abbreviated with `abbreviate-file-name'.
|
|
2456 Each buffer has its own value of this variable.
|
|
2457 */
|
|
2458 #endif /* FSFmacs */
|
|
2459
|
|
2460 DEFVAR_BUFFER_LOCAL ("buffer-file-truename", file_truename /*
|
|
2461 The real name of the file visited in the current buffer,
|
|
2462 or nil if not visiting a file. This is the result of passing
|
|
2463 buffer-file-name to the `file-truename' function. Every buffer has
|
|
2464 its own value of this variable. This variable is automatically
|
|
2465 maintained by the functions that change the file name associated
|
|
2466 with a buffer.
|
|
2467 */ );
|
|
2468
|
|
2469 DEFVAR_BUFFER_LOCAL ("buffer-auto-save-file-name", auto_save_file_name /*
|
|
2470 Name of file for auto-saving current buffer,
|
|
2471 or nil if buffer should not be auto-saved.
|
|
2472 Each buffer has its own value of this variable.
|
|
2473 */ );
|
|
2474
|
|
2475 DEFVAR_BUFFER_LOCAL ("buffer-read-only", read_only /*
|
|
2476 Non-nil if this buffer is read-only.
|
|
2477 Each buffer has its own value of this variable.
|
|
2478 */ );
|
|
2479
|
|
2480 DEFVAR_BUFFER_LOCAL ("buffer-backed-up", backed_up /*
|
|
2481 Non-nil if this buffer's file has been backed up.
|
|
2482 Backing up is done before the first time the file is saved.
|
|
2483 Each buffer has its own value of this variable.
|
|
2484 */ );
|
|
2485
|
|
2486 DEFVAR_BUFFER_LOCAL ("buffer-saved-size", save_length /*
|
|
2487 Length of current buffer when last read in, saved or auto-saved.
|
|
2488 0 initially.
|
|
2489 Each buffer has its own value of this variable.
|
|
2490 */ );
|
|
2491
|
|
2492 DEFVAR_BUFFER_LOCAL_MAGIC ("selective-display", selective_display /*
|
|
2493 Non-nil enables selective display:
|
|
2494 Integer N as value means display only lines
|
|
2495 that start with less than n columns of space.
|
|
2496 A value of t means, after a ^M, all the rest of the line is invisible.
|
|
2497 Then ^M's in the file are written into files as newlines.
|
|
2498
|
|
2499 Automatically becomes buffer-local when set in any fashion.
|
|
2500 */, redisplay_variable_changed);
|
|
2501
|
|
2502 #ifndef old
|
|
2503 DEFVAR_BUFFER_LOCAL_MAGIC ("selective-display-ellipses",
|
|
2504 selective_display_ellipses /*
|
|
2505 t means display ... on previous line when a line is invisible.
|
|
2506 Automatically becomes buffer-local when set in any fashion.
|
|
2507 */, redisplay_variable_changed);
|
|
2508 #endif
|
|
2509
|
|
2510 DEFVAR_BUFFER_LOCAL ("local-abbrev-table", abbrev_table /*
|
|
2511 Local (mode-specific) abbrev table of current buffer.
|
|
2512 */ );
|
|
2513
|
|
2514 DEFVAR_BUFFER_LOCAL ("overwrite-mode", overwrite_mode /*
|
|
2515 Non-nil if self-insertion should replace existing text.
|
|
2516 The value should be one of `overwrite-mode-textual',
|
|
2517 `overwrite-mode-binary', or nil.
|
|
2518 If it is `overwrite-mode-textual', self-insertion still
|
|
2519 inserts at the end of a line, and inserts when point is before a tab,
|
|
2520 until the tab is filled in.
|
|
2521 If `overwrite-mode-binary', self-insertion replaces newlines and tabs too.
|
|
2522 Automatically becomes buffer-local when set in any fashion.
|
|
2523 */ );
|
|
2524
|
|
2525 #if 0 /* FSFmacs */
|
|
2526 /* Adds the following to the doc string for buffer-undo-list:
|
|
2527
|
|
2528 An entry (nil PROPERTY VALUE BEG . END) indicates that a text property
|
|
2529 was modified between BEG and END. PROPERTY is the property name,
|
|
2530 and VALUE is the old value.
|
|
2531 */
|
|
2532 #endif
|
|
2533
|
|
2534 DEFVAR_BUFFER_LOCAL ("buffer-undo-list", undo_list /*
|
|
2535 List of undo entries in current buffer.
|
|
2536 Recent changes come first; older changes follow newer.
|
|
2537
|
|
2538 An entry (BEG . END) represents an insertion which begins at
|
|
2539 position BEG and ends at position END.
|
|
2540
|
|
2541 An entry (TEXT . POSITION) represents the deletion of the string TEXT
|
|
2542 from (abs POSITION). If POSITION is positive, point was at the front
|
|
2543 of the text being deleted; if negative, point was at the end.
|
|
2544
|
|
2545 An entry (t HIGH . LOW) indicates that the buffer previously had
|
|
2546 \"unmodified\" status. HIGH and LOW are the high and low 16-bit portions
|
|
2547 of the visited file's modification time, as of that time. If the
|
|
2548 modification time of the most recent save is different, this entry is
|
|
2549 obsolete.
|
|
2550
|
|
2551 An entry of the form EXTENT indicates that EXTENT was attached in
|
|
2552 the buffer. Undoing an entry of this form detaches EXTENT.
|
|
2553
|
|
2554 An entry of the form (EXTENT START END) indicates that EXTENT was
|
|
2555 detached from the buffer. Undoing an entry of this form attaches
|
|
2556 EXTENT from START to END.
|
|
2557
|
|
2558 An entry of the form POSITION indicates that point was at the buffer
|
|
2559 location given by the integer. Undoing an entry of this form places
|
|
2560 point at POSITION.
|
|
2561
|
|
2562 nil marks undo boundaries. The undo command treats the changes
|
|
2563 between two undo boundaries as a single step to be undone.
|
|
2564
|
|
2565 If the value of the variable is t, undo information is not recorded.
|
|
2566 */ );
|
|
2567
|
|
2568 #if 0 /* FSFmacs */
|
|
2569 xxDEFVAR_BUFFER_LOCAL ("mark-active", mark_active /*
|
|
2570 Non-nil means the mark and region are currently active in this buffer.
|
|
2571 Automatically local in all buffers.
|
|
2572 */ );
|
|
2573 #endif
|
|
2574
|
|
2575 #ifdef REGION_CACHE_NEEDS_WORK
|
|
2576 xxDEFVAR_BUFFER_LOCAL ("cache-long-line-scans", cache_long_line_scans /*
|
|
2577 Non-nil means that Emacs should use caches to handle long lines more quickly.
|
|
2578 This variable is buffer-local, in all buffers.
|
|
2579
|
|
2580 Normally, the line-motion functions work by scanning the buffer for
|
|
2581 newlines. Columnar operations (like move-to-column and
|
|
2582 compute-motion) also work by scanning the buffer, summing character
|
|
2583 widths as they go. This works well for ordinary text, but if the
|
|
2584 buffer's lines are very long (say, more than 500 characters), these
|
|
2585 motion functions will take longer to execute. Emacs may also take
|
|
2586 longer to update the display.
|
|
2587
|
|
2588 If cache-long-line-scans is non-nil, these motion functions cache the
|
|
2589 results of their scans, and consult the cache to avoid rescanning
|
|
2590 regions of the buffer until the text is modified. The caches are most
|
|
2591 beneficial when they prevent the most searching---that is, when the
|
|
2592 buffer contains long lines and large regions of characters with the
|
|
2593 same, fixed screen width.
|
|
2594
|
|
2595 When cache-long-line-scans is non-nil, processing short lines will
|
|
2596 become slightly slower (because of the overhead of consulting the
|
|
2597 cache), and the caches will use memory roughly proportional to the
|
|
2598 number of newlines and characters whose screen width varies.
|
|
2599
|
|
2600 The caches require no explicit maintenance; their accuracy is
|
|
2601 maintained internally by the Emacs primitives. Enabling or disabling
|
|
2602 the cache should not affect the behavior of any of the motion
|
|
2603 functions; it should only affect their performance.
|
|
2604 */ );
|
|
2605 #endif /* REGION_CACHE_NEEDS_WORK */
|
|
2606
|
|
2607 DEFVAR_BUFFER_LOCAL ("point-before-scroll", point_before_scroll /*
|
|
2608 Value of point before the last series of scroll operations, or nil.
|
|
2609 */ );
|
|
2610
|
|
2611 DEFVAR_BUFFER_LOCAL ("buffer-file-format", file_format /*
|
|
2612 List of formats to use when saving this buffer.
|
|
2613 Formats are defined by `format-alist'. This variable is
|
|
2614 set when a file is visited. Automatically local in all buffers.
|
|
2615 */ );
|
|
2616
|
|
2617 DEFVAR_BUFFER_LOCAL_MAGIC ("buffer-invisibility-spec", invisibility_spec /*
|
|
2618 Invisibility spec of this buffer.
|
|
2619 The default is t, which means that text is invisible
|
|
2620 if it has (or is covered by an extent with) a non-nil `invisible' property.
|
|
2621 If the value is a list, a text character is invisible if its `invisible'
|
|
2622 property is an element in that list.
|
|
2623 If an element is a cons cell of the form (PROP . ELLIPSIS),
|
|
2624 then characters with property value PROP are invisible,
|
|
2625 and they have an ellipsis as well if ELLIPSIS is non-nil.
|
|
2626 Note that the actual characters used for the ellipsis are controllable
|
|
2627 using `invisible-text-glyph', and default to \"...\".
|
|
2628 */, redisplay_variable_changed);
|
|
2629
|
|
2630 DEFVAR_CONST_BUFFER_LOCAL ("generated-modeline-string",
|
|
2631 generated_modeline_string /*
|
|
2632 String of characters in this buffer's modeline as of the last redisplay.
|
|
2633 Each time the modeline is recomputed, the resulting characters are
|
|
2634 stored in this string, which is resized as necessary. You may not
|
|
2635 set this variable, and modifying this string will not change the
|
|
2636 modeline; you have to change `modeline-format' if you want that.
|
|
2637
|
|
2638 For each extent in `modeline-format' that is encountered when
|
|
2639 processing the modeline, a corresponding extent is placed in
|
|
2640 `generated-modeline-string' and covers the text over which the
|
|
2641 extent in `modeline-format' applies. The extent in
|
|
2642 `generated-modeline-string' is made a child of the extent in
|
|
2643 `modeline-format', which means that it inherits all properties from
|
|
2644 that extent. Note that the extents in `generated-modeline-string'
|
|
2645 are managed automatically. You should not explicitly put any extents
|
|
2646 in `generated-modeline-string'; if you do, they will disappear the
|
|
2647 next time the modeline is processed.
|
|
2648
|
|
2649 For extents in `modeline-format', the following properties are currently
|
|
2650 handled:
|
|
2651
|
|
2652 `face'
|
|
2653 Affects the face of the modeline text. Currently, faces do
|
|
2654 not merge properly; only the most recently encountered face
|
|
2655 is used. This is a bug.
|
|
2656
|
|
2657 `keymap'
|
|
2658 Affects the disposition of button events over the modeline
|
|
2659 text. Multiple applicable keymaps *are* handled properly,
|
|
2660 and `modeline-map' still applies to any events that don't
|
|
2661 have bindings in extent-specific keymaps.
|
|
2662
|
|
2663 `help-echo'
|
|
2664 If a string, causes the string to be displayed when the mouse
|
|
2665 moves over the text.
|
|
2666 */ );
|
|
2667
|
|
2668 /* Check for DEFVAR_BUFFER_LOCAL without initializing the corresponding
|
|
2669 slot of buffer_local_flags and vice-versa. Must be done after all
|
|
2670 DEFVAR_BUFFER_LOCAL() calls. */
|
|
2671 #define MARKED_SLOT(slot) \
|
|
2672 if ((XINT (buffer_local_flags.slot) != -2 && \
|
|
2673 XINT (buffer_local_flags.slot) != -3) \
|
|
2674 != !(NILP (XBUFFER (Vbuffer_local_symbols)->slot))) \
|
|
2675 abort ()
|
|
2676 #include "bufslots.h"
|
|
2677 #undef MARKED_SLOT
|
|
2678
|
|
2679 Vprin1_to_string_buffer
|
|
2680 = Fget_buffer_create (Fpurecopy (build_string (" prin1")));
|
|
2681 /* Reset Vbuffer_alist again so that the above buf is magically
|
|
2682 invisible */
|
|
2683 Vbuffer_alist = Qnil;
|
|
2684 /* Want no undo records for prin1_to_string_buffer */
|
|
2685 Fbuffer_disable_undo (Vprin1_to_string_buffer);
|
|
2686
|
|
2687 {
|
|
2688 Lisp_Object scratch =
|
|
2689 Fset_buffer (Fget_buffer_create (QSscratch));
|
|
2690 /* Want no undo records for *scratch* until after Emacs is dumped */
|
|
2691 Fbuffer_disable_undo (scratch);
|
|
2692 }
|
|
2693 }
|
|
2694
|
|
2695 void
|
|
2696 init_buffer (void)
|
|
2697 {
|
|
2698 /* This function can GC */
|
|
2699 char buf[MAXPATHLEN+1];
|
|
2700 char *pwd;
|
|
2701 struct stat dotstat, pwdstat;
|
|
2702 int rc;
|
|
2703
|
|
2704 buf[0] = 0;
|
|
2705
|
|
2706 Fset_buffer (Fget_buffer_create (QSscratch));
|
|
2707
|
|
2708 /* If PWD is accurate, use it instead of calling getwd. This is faster
|
|
2709 when PWD is right, and may avoid a fatal error. */
|
|
2710 if ((pwd = getenv ("PWD")) != 0 && IS_DIRECTORY_SEP (*pwd)
|
|
2711 && stat (pwd, &pwdstat) == 0
|
|
2712 && stat (".", &dotstat) == 0
|
|
2713 && dotstat.st_ino == pwdstat.st_ino
|
|
2714 && dotstat.st_dev == pwdstat.st_dev
|
|
2715 && (int) strlen (pwd) < MAXPATHLEN)
|
|
2716 strcpy (buf, pwd);
|
|
2717 else if (getwd (buf) == 0)
|
2
|
2718 fatal ("`getwd' failed: errno %d\n", errno);
|
0
|
2719
|
|
2720 #ifndef VMS
|
|
2721 /* Maybe this should really use some standard subroutine
|
|
2722 whose definition is filename syntax dependent. */
|
|
2723 rc = strlen (buf);
|
|
2724 if (!(IS_DIRECTORY_SEP (buf[rc - 1])))
|
|
2725 {
|
|
2726 buf[rc] = DIRECTORY_SEP;
|
|
2727 buf[rc + 1] = '\0';
|
|
2728 }
|
|
2729 #endif /* not VMS */
|
|
2730 current_buffer->directory = build_string (buf);
|
|
2731
|
|
2732 #if 0 /* FSFmacs */
|
|
2733 /* #### is this correct? */
|
|
2734 temp = get_minibuffer (0);
|
|
2735 XBUFFER (temp)->directory = current_buffer->directory;
|
|
2736 #endif
|
|
2737 }
|