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