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