428
|
1 /* Lisp functions pertaining to editing.
|
|
2 Copyright (C) 1985-1987, 1989, 1992-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
|
771
|
4 Copyright (C) 1996, 2001, 2002 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
|
771
|
25 /* This file has been Mule-ized, June 2001. */
|
428
|
26
|
|
27 /* Hacked on for Mule by Ben Wing, December 1994. */
|
|
28
|
|
29 #include <config.h>
|
|
30 #include "lisp.h"
|
|
31
|
|
32 #include "buffer.h"
|
|
33 #include "commands.h"
|
|
34 #include "events.h" /* for EVENTP */
|
|
35 #include "extents.h"
|
|
36 #include "frame.h"
|
|
37 #include "insdel.h"
|
|
38 #include "window.h"
|
446
|
39 #include "casetab.h"
|
428
|
40 #include "chartab.h"
|
|
41 #include "line-number.h"
|
|
42
|
|
43 #include "systime.h"
|
|
44 #include "sysdep.h"
|
|
45 #include "syspwd.h"
|
771
|
46 #include "sysproc.h" /* for qxe_getpid() */
|
|
47 #include "sysfile.h"
|
|
48 #include "sysdir.h"
|
428
|
49
|
|
50 /* Some static data, and a function to initialize it for each run */
|
|
51
|
|
52 Lisp_Object Vsystem_name; /* #### - I don't see why this should be */
|
|
53 /* static, either... --Stig */
|
|
54 #if 0 /* XEmacs - this is now dynamic */
|
|
55 /* if at some point it's deemed desirable to
|
|
56 use lisp variables here, then they can be
|
|
57 initialized to nil and then set to their
|
|
58 real values upon the first call to the
|
|
59 functions that generate them. --stig */
|
|
60 Lisp_Object Vuser_real_login_name; /* login name of current user ID */
|
|
61 Lisp_Object Vuser_login_name; /* user name from LOGNAME or USER. */
|
|
62 #endif
|
|
63
|
|
64 /* It's useful to be able to set this as user customization, so we'll
|
|
65 keep it. */
|
|
66 Lisp_Object Vuser_full_name;
|
|
67 EXFUN (Fuser_full_name, 1);
|
|
68
|
|
69 Lisp_Object Qformat;
|
|
70
|
|
71 Lisp_Object Qpoint, Qmark, Qregion_beginning, Qregion_end;
|
|
72
|
|
73 Lisp_Object Quser_files_and_directories;
|
|
74
|
|
75 /* This holds the value of `environ' produced by the previous
|
|
76 call to Fset_time_zone_rule, or 0 if Fset_time_zone_rule
|
|
77 has never been called. */
|
771
|
78 static Extbyte **environbuf;
|
428
|
79
|
|
80 void
|
|
81 init_editfns (void)
|
|
82 {
|
|
83 /* Only used in removed code below. */
|
771
|
84 Intbyte *p;
|
428
|
85
|
|
86 environbuf = 0;
|
|
87
|
|
88 /* Set up system_name even when dumping. */
|
|
89 init_system_name ();
|
|
90
|
|
91 #ifndef CANNOT_DUMP
|
|
92 if (!initialized)
|
|
93 return;
|
|
94 #endif
|
|
95
|
771
|
96 if ((p = egetenv ("NAME")))
|
428
|
97 /* I don't think it's the right thing to do the ampersand
|
|
98 modification on NAME. Not that it matters anymore... -hniksic */
|
771
|
99 Vuser_full_name = build_intstring (p);
|
428
|
100 else
|
|
101 Vuser_full_name = Fuser_full_name (Qnil);
|
|
102 }
|
|
103
|
|
104 DEFUN ("char-to-string", Fchar_to_string, 1, 1, 0, /*
|
444
|
105 Convert CHARACTER to a one-character string containing that character.
|
428
|
106 */
|
444
|
107 (character))
|
428
|
108 {
|
|
109 Bytecount len;
|
665
|
110 Intbyte str[MAX_EMCHAR_LEN];
|
428
|
111
|
444
|
112 if (EVENTP (character))
|
428
|
113 {
|
444
|
114 Lisp_Object ch2 = Fevent_to_character (character, Qt, Qnil, Qnil);
|
428
|
115 if (NILP (ch2))
|
563
|
116 invalid_argument
|
|
117 ("character has no ASCII equivalent:", Fcopy_event (character, Qnil));
|
444
|
118 character = ch2;
|
428
|
119 }
|
|
120
|
444
|
121 CHECK_CHAR_COERCE_INT (character);
|
428
|
122
|
444
|
123 len = set_charptr_emchar (str, XCHAR (character));
|
428
|
124 return make_string (str, len);
|
|
125 }
|
|
126
|
|
127 DEFUN ("string-to-char", Fstring_to_char, 1, 1, 0, /*
|
|
128 Convert arg STRING to a character, the first character of that string.
|
|
129 An empty string will return the constant `nil'.
|
|
130 */
|
444
|
131 (string))
|
428
|
132 {
|
440
|
133 Lisp_String *p;
|
444
|
134 CHECK_STRING (string);
|
428
|
135
|
444
|
136 p = XSTRING (string);
|
428
|
137 if (string_length (p) != 0)
|
|
138 return make_char (string_char (p, 0));
|
|
139 else
|
|
140 /* This used to return Qzero. That is broken, broken, broken. */
|
|
141 /* It might be kinder to signal an error directly. -slb */
|
|
142 return Qnil;
|
|
143 }
|
|
144
|
|
145
|
|
146 static Lisp_Object
|
665
|
147 buildmark (Charbpos val, Lisp_Object buffer)
|
428
|
148 {
|
|
149 Lisp_Object mark = Fmake_marker ();
|
|
150 Fset_marker (mark, make_int (val), buffer);
|
|
151 return mark;
|
|
152 }
|
|
153
|
|
154 DEFUN ("point", Fpoint, 0, 1, 0, /*
|
|
155 Return value of point, as an integer.
|
|
156 Beginning of buffer is position (point-min).
|
|
157 If BUFFER is nil, the current buffer is assumed.
|
|
158 */
|
|
159 (buffer))
|
|
160 {
|
|
161 struct buffer *b = decode_buffer (buffer, 1);
|
|
162 return make_int (BUF_PT (b));
|
|
163 }
|
|
164
|
|
165 DEFUN ("point-marker", Fpoint_marker, 0, 2, 0, /*
|
|
166 Return value of point, as a marker object.
|
|
167 This marker is a copy; you may modify it with reckless abandon.
|
|
168 If optional argument DONT-COPY-P is non-nil, then it returns the real
|
|
169 point-marker; modifying the position of this marker will move point.
|
|
170 It is illegal to change the buffer of it, or make it point nowhere.
|
|
171 If BUFFER is nil, the current buffer is assumed.
|
|
172 */
|
|
173 (dont_copy_p, buffer))
|
|
174 {
|
|
175 struct buffer *b = decode_buffer (buffer, 1);
|
|
176 if (NILP (dont_copy_p))
|
|
177 return Fcopy_marker (b->point_marker, Qnil);
|
|
178 else
|
|
179 return b->point_marker;
|
|
180 }
|
|
181
|
|
182 /* The following two functions end up being identical but it's
|
|
183 cleaner to declare them separately. */
|
|
184
|
665
|
185 Charbpos
|
|
186 charbpos_clip_to_bounds (Charbpos lower, Charbpos num, Charbpos upper)
|
428
|
187 {
|
|
188 return (num < lower ? lower :
|
|
189 num > upper ? upper :
|
|
190 num);
|
|
191 }
|
|
192
|
665
|
193 Bytebpos
|
|
194 bytebpos_clip_to_bounds (Bytebpos lower, Bytebpos num, Bytebpos upper)
|
428
|
195 {
|
|
196 return (num < lower ? lower :
|
|
197 num > upper ? upper :
|
|
198 num);
|
|
199 }
|
|
200
|
|
201 /*
|
|
202 * Chuck says:
|
|
203 * There is no absolute way to determine if goto-char is the function
|
|
204 * being run. this-command doesn't work because it is often eval'd
|
|
205 * and this-command ends up set to eval-expression. So this flag gets
|
|
206 * added for now.
|
|
207 *
|
|
208 * Jamie thinks he's wrong, but we'll leave this in for now.
|
|
209 */
|
|
210 int atomic_extent_goto_char_p;
|
|
211
|
|
212 DEFUN ("goto-char", Fgoto_char, 1, 2, "NGoto char: ", /*
|
|
213 Set point to POSITION, a number or marker.
|
|
214 Beginning of buffer is position (point-min), end is (point-max).
|
|
215 If BUFFER is nil, the current buffer is assumed.
|
|
216 Return value of POSITION, as an integer.
|
|
217 */
|
|
218 (position, buffer))
|
|
219 {
|
|
220 struct buffer *b = decode_buffer (buffer, 1);
|
665
|
221 Charbpos n = get_buffer_pos_char (b, position, GB_COERCE_RANGE);
|
428
|
222 BUF_SET_PT (b, n);
|
|
223 atomic_extent_goto_char_p = 1;
|
|
224 return make_int (n);
|
|
225 }
|
|
226
|
|
227 static Lisp_Object
|
|
228 region_limit (int beginningp, struct buffer *b)
|
|
229 {
|
|
230 Lisp_Object m;
|
|
231
|
|
232 #if 0 /* FSFmacs */
|
|
233 if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive)
|
|
234 && NILP (b->mark_active))
|
|
235 Fsignal (Qmark_inactive, Qnil);
|
|
236 #endif
|
|
237 m = Fmarker_position (b->mark);
|
563
|
238 if (NILP (m)) invalid_operation ("There is no region now", Qunbound);
|
428
|
239 if (!!(BUF_PT (b) < XINT (m)) == !!beginningp)
|
|
240 return make_int (BUF_PT (b));
|
|
241 else
|
|
242 return m;
|
|
243 }
|
|
244
|
|
245 DEFUN ("region-beginning", Fregion_beginning, 0, 1, 0, /*
|
|
246 Return position of beginning of region in BUFFER, as an integer.
|
|
247 If BUFFER is nil, the current buffer is assumed.
|
|
248 */
|
|
249 (buffer))
|
|
250 {
|
|
251 return region_limit (1, decode_buffer (buffer, 1));
|
|
252 }
|
|
253
|
|
254 DEFUN ("region-end", Fregion_end, 0, 1, 0, /*
|
|
255 Return position of end of region in BUFFER, as an integer.
|
|
256 If BUFFER is nil, the current buffer is assumed.
|
|
257 */
|
|
258 (buffer))
|
|
259 {
|
|
260 return region_limit (0, decode_buffer (buffer, 1));
|
|
261 }
|
|
262
|
|
263 /* Whether to use lispm-style active-regions */
|
|
264 int zmacs_regions;
|
|
265
|
|
266 /* Whether the zmacs region is active. This is not per-buffer because
|
|
267 there can be only one active region at a time. #### Now that the
|
|
268 zmacs region are not directly tied to the X selections this may not
|
|
269 necessarily have to be true. */
|
|
270 int zmacs_region_active_p;
|
|
271
|
|
272 int zmacs_region_stays;
|
|
273
|
|
274 Lisp_Object Qzmacs_update_region, Qzmacs_deactivate_region;
|
|
275 Lisp_Object Qzmacs_region_buffer;
|
|
276
|
|
277 void
|
|
278 zmacs_update_region (void)
|
|
279 {
|
|
280 /* This function can GC */
|
|
281 if (zmacs_region_active_p)
|
|
282 call0 (Qzmacs_update_region);
|
|
283 }
|
|
284
|
|
285 void
|
|
286 zmacs_deactivate_region (void)
|
|
287 {
|
|
288 /* This function can GC */
|
|
289 if (zmacs_region_active_p)
|
|
290 call0 (Qzmacs_deactivate_region);
|
|
291 }
|
|
292
|
|
293 Lisp_Object
|
|
294 zmacs_region_buffer (void)
|
|
295 {
|
|
296 if (zmacs_region_active_p)
|
|
297 return call0 (Qzmacs_region_buffer);
|
|
298 else
|
|
299 return Qnil;
|
|
300 }
|
|
301
|
|
302 DEFUN ("mark-marker", Fmark_marker, 0, 2, 0, /*
|
|
303 Return this buffer's mark, as a marker object.
|
|
304 If `zmacs-regions' is true, then this returns nil unless the region is
|
|
305 currently in the active (highlighted) state. If optional argument FORCE
|
|
306 is t, this returns the mark (if there is one) regardless of the zmacs-region
|
|
307 state. You should *generally* not use the mark unless the region is active,
|
|
308 if the user has expressed a preference for the zmacs-region model.
|
|
309 Watch out! Moving this marker changes the mark position.
|
|
310 If you set the marker not to point anywhere, the buffer will have no mark.
|
|
311 If BUFFER is nil, the current buffer is assumed.
|
|
312 */
|
|
313 (force, buffer))
|
|
314 {
|
|
315 struct buffer *b = decode_buffer (buffer, 1);
|
|
316 if (! zmacs_regions || zmacs_region_active_p || !NILP (force))
|
|
317 return b->mark;
|
|
318 return Qnil;
|
|
319 }
|
|
320
|
|
321
|
|
322 /* The saved object is a cons:
|
|
323
|
|
324 (COPY-OF-POINT-MARKER . COPY-OF-MARK)
|
|
325
|
|
326 We used to have another cons for a VISIBLE-P element, which was t
|
|
327 if `(eq (current-buffer) (window-buffer (selected-window)))' but it
|
|
328 was unused for a long time, so I removed it. --hniksic */
|
|
329 Lisp_Object
|
|
330 save_excursion_save (void)
|
|
331 {
|
|
332 struct buffer *b;
|
|
333
|
|
334 /* #### Huh? --hniksic */
|
|
335 /*if (preparing_for_armageddon) return Qnil;*/
|
|
336
|
665
|
337 #ifdef ERROR_CHECK_CHARBPOS
|
428
|
338 assert (XINT (Fpoint (Qnil)) ==
|
|
339 XINT (Fmarker_position (Fpoint_marker (Qt, Qnil))));
|
|
340 #endif
|
|
341
|
|
342 b = current_buffer;
|
|
343
|
|
344 return noseeum_cons (noseeum_copy_marker (b->point_marker, Qnil),
|
|
345 noseeum_copy_marker (b->mark, Qnil));
|
|
346 }
|
|
347
|
|
348 Lisp_Object
|
|
349 save_excursion_restore (Lisp_Object info)
|
|
350 {
|
|
351 Lisp_Object buffer = Fmarker_buffer (XCAR (info));
|
|
352
|
|
353 /* If buffer being returned to is now deleted, avoid error --
|
|
354 otherwise could get error here while unwinding to top level and
|
|
355 crash. In that case, Fmarker_buffer returns nil now. */
|
|
356 if (!NILP (buffer))
|
|
357 {
|
|
358 struct buffer *buf = XBUFFER (buffer);
|
|
359 struct gcpro gcpro1;
|
|
360 GCPRO1 (info);
|
|
361 set_buffer_internal (buf);
|
|
362 Fgoto_char (XCAR (info), buffer);
|
|
363 Fset_marker (buf->mark, XCDR (info), buffer);
|
|
364
|
|
365 #if 0 /* We used to make the current buffer visible in the selected window
|
|
366 if that was true previously. That avoids some anomalies.
|
|
367 But it creates others, and it wasn't documented, and it is simpler
|
|
368 and cleaner never to alter the window/buffer connections. */
|
|
369 /* I'm certain some code somewhere depends on this behavior. --jwz */
|
|
370 /* Even if it did, it certainly doesn't matter anymore, because
|
|
371 this has been the behavior for countless XEmacs releases
|
|
372 now. --hniksic */
|
|
373 if (visible
|
|
374 && (current_buffer != XBUFFER (XWINDOW (selected_window)->buffer)))
|
|
375 switch_to_buffer (Fcurrent_buffer (), Qnil);
|
|
376 #endif
|
|
377
|
|
378 UNGCPRO;
|
|
379 }
|
|
380
|
|
381 /* Free all the junk we allocated, so that a `save-excursion' comes
|
|
382 for free in terms of GC junk. */
|
|
383 free_marker (XMARKER (XCAR (info)));
|
|
384 free_marker (XMARKER (XCDR (info)));
|
|
385 free_cons (XCONS (info));
|
|
386 return Qnil;
|
|
387 }
|
|
388
|
|
389 DEFUN ("save-excursion", Fsave_excursion, 0, UNEVALLED, 0, /*
|
|
390 Save point, mark, and current buffer; execute BODY; restore those things.
|
|
391 Executes BODY just like `progn'.
|
|
392 The values of point, mark and the current buffer are restored
|
|
393 even in case of abnormal exit (throw or error).
|
|
394 */
|
|
395 (args))
|
|
396 {
|
|
397 /* This function can GC */
|
|
398 int speccount = specpdl_depth ();
|
|
399
|
|
400 record_unwind_protect (save_excursion_restore, save_excursion_save ());
|
|
401
|
771
|
402 return unbind_to_1 (speccount, Fprogn (args));
|
428
|
403 }
|
|
404
|
|
405 Lisp_Object
|
|
406 save_current_buffer_restore (Lisp_Object buffer)
|
|
407 {
|
|
408 struct buffer *buf = XBUFFER (buffer);
|
|
409 /* Avoid signaling an error if the buffer is no longer alive. This
|
|
410 is for consistency with save-excursion. */
|
|
411 if (BUFFER_LIVE_P (buf))
|
|
412 set_buffer_internal (buf);
|
|
413 return Qnil;
|
|
414 }
|
|
415
|
|
416 DEFUN ("save-current-buffer", Fsave_current_buffer, 0, UNEVALLED, 0, /*
|
|
417 Save the current buffer; execute BODY; restore the current buffer.
|
|
418 Executes BODY just like `progn'.
|
|
419 */
|
|
420 (args))
|
|
421 {
|
|
422 /* This function can GC */
|
|
423 int speccount = specpdl_depth ();
|
|
424
|
|
425 record_unwind_protect (save_current_buffer_restore, Fcurrent_buffer ());
|
|
426
|
771
|
427 return unbind_to_1 (speccount, Fprogn (args));
|
428
|
428 }
|
|
429
|
|
430 DEFUN ("buffer-size", Fbuffer_size, 0, 1, 0, /*
|
|
431 Return the number of characters in BUFFER.
|
|
432 If BUFFER is nil, the current buffer is assumed.
|
|
433 */
|
|
434 (buffer))
|
|
435 {
|
|
436 struct buffer *b = decode_buffer (buffer, 1);
|
|
437 return make_int (BUF_SIZE (b));
|
|
438 }
|
|
439
|
|
440 DEFUN ("point-min", Fpoint_min, 0, 1, 0, /*
|
|
441 Return the minimum permissible value of point in BUFFER.
|
434
|
442 This is 1, unless narrowing (a buffer restriction)
|
|
443 is in effect, in which case it may be greater.
|
428
|
444 If BUFFER is nil, the current buffer is assumed.
|
|
445 */
|
|
446 (buffer))
|
|
447 {
|
|
448 struct buffer *b = decode_buffer (buffer, 1);
|
|
449 return make_int (BUF_BEGV (b));
|
|
450 }
|
|
451
|
|
452 DEFUN ("point-min-marker", Fpoint_min_marker, 0, 1, 0, /*
|
|
453 Return a marker to the minimum permissible value of point in BUFFER.
|
434
|
454 This is the beginning, unless narrowing (a buffer restriction)
|
|
455 is in effect, in which case it may be greater.
|
428
|
456 If BUFFER is nil, the current buffer is assumed.
|
|
457 */
|
|
458 (buffer))
|
|
459 {
|
|
460 struct buffer *b = decode_buffer (buffer, 1);
|
771
|
461 return buildmark (BUF_BEGV (b), wrap_buffer (b));
|
428
|
462 }
|
|
463
|
|
464 DEFUN ("point-max", Fpoint_max, 0, 1, 0, /*
|
|
465 Return the maximum permissible value of point in BUFFER.
|
|
466 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
|
434
|
467 is in effect, in which case it may be less.
|
428
|
468 If BUFFER is nil, the current buffer is assumed.
|
|
469 */
|
|
470 (buffer))
|
|
471 {
|
|
472 struct buffer *b = decode_buffer (buffer, 1);
|
|
473 return make_int (BUF_ZV (b));
|
|
474 }
|
|
475
|
|
476 DEFUN ("point-max-marker", Fpoint_max_marker, 0, 1, 0, /*
|
434
|
477 Return a marker to the maximum permissible value of point in BUFFER.
|
428
|
478 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
|
434
|
479 is in effect, in which case it may be less.
|
428
|
480 If BUFFER is nil, the current buffer is assumed.
|
|
481 */
|
|
482 (buffer))
|
|
483 {
|
|
484 struct buffer *b = decode_buffer (buffer, 1);
|
771
|
485 return buildmark (BUF_ZV (b), wrap_buffer (b));
|
428
|
486 }
|
|
487
|
|
488 DEFUN ("following-char", Ffollowing_char, 0, 1, 0, /*
|
|
489 Return the character following point.
|
|
490 At the end of the buffer or accessible region, return 0.
|
|
491 If BUFFER is nil, the current buffer is assumed.
|
|
492 */
|
|
493 (buffer))
|
|
494 {
|
|
495 struct buffer *b = decode_buffer (buffer, 1);
|
|
496 if (BUF_PT (b) >= BUF_ZV (b))
|
|
497 return Qzero; /* #### Gag me! */
|
|
498 else
|
|
499 return make_char (BUF_FETCH_CHAR (b, BUF_PT (b)));
|
|
500 }
|
|
501
|
|
502 DEFUN ("preceding-char", Fpreceding_char, 0, 1, 0, /*
|
|
503 Return the character preceding point.
|
|
504 At the beginning of the buffer or accessible region, return 0.
|
|
505 If BUFFER is nil, the current buffer is assumed.
|
|
506 */
|
|
507 (buffer))
|
|
508 {
|
|
509 struct buffer *b = decode_buffer (buffer, 1);
|
|
510 if (BUF_PT (b) <= BUF_BEGV (b))
|
|
511 return Qzero; /* #### Gag me! */
|
|
512 else
|
|
513 return make_char (BUF_FETCH_CHAR (b, BUF_PT (b) - 1));
|
|
514 }
|
|
515
|
|
516 DEFUN ("bobp", Fbobp, 0, 1, 0, /*
|
|
517 Return t if point is at the beginning of the buffer.
|
|
518 If the buffer is narrowed, this means the beginning of the narrowed part.
|
|
519 If BUFFER is nil, the current buffer is assumed.
|
|
520 */
|
|
521 (buffer))
|
|
522 {
|
|
523 struct buffer *b = decode_buffer (buffer, 1);
|
|
524 return BUF_PT (b) == BUF_BEGV (b) ? Qt : Qnil;
|
|
525 }
|
|
526
|
|
527 DEFUN ("eobp", Feobp, 0, 1, 0, /*
|
|
528 Return t if point is at the end of the buffer.
|
|
529 If the buffer is narrowed, this means the end of the narrowed part.
|
|
530 If BUFFER is nil, the current buffer is assumed.
|
|
531 */
|
|
532 (buffer))
|
|
533 {
|
|
534 struct buffer *b = decode_buffer (buffer, 1);
|
|
535 return BUF_PT (b) == BUF_ZV (b) ? Qt : Qnil;
|
|
536 }
|
|
537
|
|
538 int
|
665
|
539 beginning_of_line_p (struct buffer *b, Charbpos pt)
|
428
|
540 {
|
|
541 return pt <= BUF_BEGV (b) || BUF_FETCH_CHAR (b, pt - 1) == '\n';
|
|
542 }
|
|
543
|
|
544
|
|
545 DEFUN ("bolp", Fbolp, 0, 1, 0, /*
|
|
546 Return t if point is at the beginning of a line.
|
|
547 If BUFFER is nil, the current buffer is assumed.
|
|
548 */
|
|
549 (buffer))
|
|
550 {
|
|
551 struct buffer *b = decode_buffer (buffer, 1);
|
|
552 return beginning_of_line_p (b, BUF_PT (b)) ? Qt : Qnil;
|
|
553 }
|
|
554
|
|
555 DEFUN ("eolp", Feolp, 0, 1, 0, /*
|
|
556 Return t if point is at the end of a line.
|
|
557 `End of a line' includes point being at the end of the buffer.
|
|
558 If BUFFER is nil, the current buffer is assumed.
|
|
559 */
|
|
560 (buffer))
|
|
561 {
|
|
562 struct buffer *b = decode_buffer (buffer, 1);
|
|
563 return (BUF_PT (b) == BUF_ZV (b) || BUF_FETCH_CHAR (b, BUF_PT (b)) == '\n')
|
|
564 ? Qt : Qnil;
|
|
565 }
|
|
566
|
|
567 DEFUN ("char-after", Fchar_after, 0, 2, 0, /*
|
434
|
568 Return the character at position POS in BUFFER.
|
|
569 POS is an integer or a marker.
|
428
|
570 If POS is out of range, the value is nil.
|
434
|
571 if POS is nil, the value of point is assumed.
|
428
|
572 If BUFFER is nil, the current buffer is assumed.
|
|
573 */
|
|
574 (pos, buffer))
|
|
575 {
|
|
576 struct buffer *b = decode_buffer (buffer, 1);
|
665
|
577 Charbpos n = (NILP (pos) ? BUF_PT (b) :
|
428
|
578 get_buffer_pos_char (b, pos, GB_NO_ERROR_IF_BAD));
|
|
579
|
|
580 if (n < 0 || n == BUF_ZV (b))
|
|
581 return Qnil;
|
|
582 return make_char (BUF_FETCH_CHAR (b, n));
|
|
583 }
|
|
584
|
|
585 DEFUN ("char-before", Fchar_before, 0, 2, 0, /*
|
434
|
586 Return the character preceding position POS in BUFFER.
|
|
587 POS is an integer or a marker.
|
428
|
588 If POS is out of range, the value is nil.
|
434
|
589 if POS is nil, the value of point is assumed.
|
428
|
590 If BUFFER is nil, the current buffer is assumed.
|
|
591 */
|
|
592 (pos, buffer))
|
|
593 {
|
|
594 struct buffer *b = decode_buffer (buffer, 1);
|
665
|
595 Charbpos n = (NILP (pos) ? BUF_PT (b) :
|
434
|
596 get_buffer_pos_char (b, pos, GB_NO_ERROR_IF_BAD));
|
428
|
597
|
|
598 n--;
|
|
599
|
|
600 if (n < BUF_BEGV (b))
|
|
601 return Qnil;
|
|
602 return make_char (BUF_FETCH_CHAR (b, n));
|
|
603 }
|
|
604
|
|
605
|
|
606 DEFUN ("temp-directory", Ftemp_directory, 0, 0, 0, /*
|
|
607 Return the pathname to the directory to use for temporary files.
|
442
|
608 On MS Windows, this is obtained from the TEMP or TMP environment variables,
|
771
|
609 defaulting to c:\\ if they are both undefined.
|
444
|
610 On Unix it is obtained from TMPDIR, with /tmp as the default.
|
428
|
611 */
|
|
612 ())
|
|
613 {
|
771
|
614 Intbyte *tmpdir;
|
442
|
615 #if defined(WIN32_NATIVE)
|
771
|
616 tmpdir = egetenv ("TEMP");
|
428
|
617 if (!tmpdir)
|
771
|
618 tmpdir = egetenv ("TMP");
|
428
|
619 if (!tmpdir)
|
771
|
620 tmpdir = (Intbyte *) "c:\\";
|
442
|
621 #else /* WIN32_NATIVE */
|
771
|
622 tmpdir = egetenv ("TMPDIR");
|
428
|
623 if (!tmpdir)
|
442
|
624 {
|
|
625 struct stat st;
|
771
|
626 int myuid = getuid ();
|
|
627 Intbyte *login_name = user_login_name (NULL);
|
|
628 DECLARE_EISTRING (eipath);
|
|
629 Intbyte *path;
|
442
|
630
|
771
|
631 eicpy_c (eipath, "/tmp/");
|
|
632 eicat_rawz (eipath, login_name);
|
|
633 path = eidata (eipath);
|
|
634 if (qxe_lstat (path, &st) < 0 && errno == ENOENT)
|
|
635 qxe_mkdir (path, 0700); /* ignore retval -- checked next anyway. */
|
|
636 if (qxe_lstat (path, &st) == 0 && (int) st.st_uid == myuid
|
|
637 && S_ISDIR (st.st_mode))
|
|
638 tmpdir = path;
|
442
|
639 else
|
|
640 {
|
771
|
641 eicpy_rawz (eipath, egetenv ("HOME"));
|
|
642 eicat_c (eipath, "/tmp/");
|
|
643 path = eidata (eipath);
|
|
644 if (qxe_stat (path, &st) < 0 && errno == ENOENT)
|
442
|
645 {
|
|
646 int fd;
|
771
|
647 DECLARE_EISTRING (eiwarnpath);
|
|
648
|
|
649 qxe_mkdir (path, 0700); /* ignore retvals */
|
|
650 eicpy_ei (eiwarnpath, eipath);
|
|
651 eicat_c (eiwarnpath, ".created_by_xemacs");
|
|
652 if ((fd = qxe_open (eidata (eiwarnpath),
|
|
653 O_WRONLY | O_CREAT, 0644)) > 0)
|
442
|
654 {
|
771
|
655 retry_write (fd, "XEmacs created this directory because "
|
|
656 "/tmp/<yourname> was unavailable -- \n"
|
|
657 "Please check !\n", 89);
|
|
658 retry_close (fd);
|
442
|
659 }
|
|
660 }
|
771
|
661 if (qxe_stat (path, &st) == 0 && S_ISDIR (st.st_mode))
|
|
662 tmpdir = path;
|
442
|
663 else
|
771
|
664 tmpdir = (Intbyte *) "/tmp";
|
442
|
665 }
|
|
666 }
|
428
|
667 #endif
|
|
668
|
771
|
669 return build_intstring (tmpdir);
|
428
|
670 }
|
|
671
|
|
672 DEFUN ("user-login-name", Fuser_login_name, 0, 1, 0, /*
|
|
673 Return the name under which the user logged in, as a string.
|
|
674 This is based on the effective uid, not the real uid.
|
|
675 Also, if the environment variable LOGNAME or USER is set,
|
|
676 that determines the value of this function.
|
|
677 If the optional argument UID is present, then environment variables are
|
|
678 ignored and this function returns the login name for that UID, or nil.
|
|
679 */
|
|
680 (uid))
|
|
681 {
|
771
|
682 Intbyte *returned_name;
|
428
|
683 uid_t local_uid;
|
|
684
|
|
685 if (!NILP (uid))
|
|
686 {
|
|
687 CHECK_INT (uid);
|
|
688 local_uid = XINT (uid);
|
|
689 returned_name = user_login_name (&local_uid);
|
|
690 }
|
|
691 else
|
|
692 {
|
|
693 returned_name = user_login_name (NULL);
|
|
694 }
|
|
695 /* #### - I believe this should return nil instead of "unknown" when pw==0
|
|
696 pw=0 is indicated by a null return from user_login_name
|
|
697 */
|
771
|
698 return returned_name ? build_intstring (returned_name) : Qnil;
|
428
|
699 }
|
|
700
|
|
701 /* This function may be called from other C routines when a
|
|
702 character string representation of the user_login_name is
|
|
703 needed but a Lisp Object is not. The UID is passed by
|
|
704 reference. If UID == NULL, then the USER name
|
|
705 for the user running XEmacs will be returned. This
|
|
706 corresponds to a nil argument to Fuser_login_name.
|
771
|
707
|
|
708 WARNING: The string returned comes from the data of a Lisp_String and
|
|
709 therefore will become garbage after the next GC.
|
428
|
710 */
|
771
|
711 Intbyte *
|
428
|
712 user_login_name (uid_t *uid)
|
|
713 {
|
|
714 /* uid == NULL to return name of this user */
|
|
715 if (uid != NULL)
|
|
716 {
|
771
|
717 struct passwd *pw = qxe_getpwuid (*uid);
|
|
718 return pw ? (Intbyte *) pw->pw_name : NULL;
|
428
|
719 }
|
|
720 else
|
|
721 {
|
|
722 /* #### - when euid != uid, then LOGNAME and USER are leftovers from the
|
|
723 old environment (I site observed behavior on sunos and linux), so the
|
|
724 environment variables should be disregarded in that case. --Stig */
|
771
|
725 Intbyte *user_name = egetenv ("LOGNAME");
|
428
|
726 if (!user_name)
|
771
|
727 user_name = egetenv (
|
442
|
728 #ifdef WIN32_NATIVE
|
428
|
729 "USERNAME" /* it's USERNAME on NT */
|
|
730 #else
|
|
731 "USER"
|
|
732 #endif
|
|
733 );
|
|
734 if (user_name)
|
771
|
735 return user_name;
|
428
|
736 else
|
|
737 {
|
771
|
738 struct passwd *pw = qxe_getpwuid (geteuid ());
|
442
|
739 #ifdef CYGWIN
|
428
|
740 /* Since the Cygwin environment may not have an /etc/passwd,
|
|
741 return "unknown" instead of the null if the username
|
|
742 cannot be determined.
|
|
743 */
|
593
|
744 /* !!#### fix up in my mule ws */
|
771
|
745 return (Intbyte *) (pw ? pw->pw_name : "unknown");
|
428
|
746 #else
|
|
747 /* For all but Cygwin return NULL (nil) */
|
|
748 return pw ? pw->pw_name : NULL;
|
|
749 #endif
|
|
750 }
|
|
751 }
|
|
752 }
|
|
753
|
|
754 DEFUN ("user-real-login-name", Fuser_real_login_name, 0, 0, 0, /*
|
|
755 Return the name of the user's real uid, as a string.
|
|
756 This ignores the environment variables LOGNAME and USER, so it differs from
|
|
757 `user-login-name' when running under `su'.
|
|
758 */
|
|
759 ())
|
|
760 {
|
771
|
761 struct passwd *pw = qxe_getpwuid (getuid ());
|
428
|
762 /* #### - I believe this should return nil instead of "unknown" when pw==0 */
|
|
763
|
771
|
764 Lisp_Object tem = build_string (pw ? pw->pw_name : "unknown");
|
428
|
765 return tem;
|
|
766 }
|
|
767
|
|
768 DEFUN ("user-uid", Fuser_uid, 0, 0, 0, /*
|
|
769 Return the effective uid of Emacs, as an integer.
|
|
770 */
|
|
771 ())
|
|
772 {
|
|
773 return make_int (geteuid ());
|
|
774 }
|
|
775
|
|
776 DEFUN ("user-real-uid", Fuser_real_uid, 0, 0, 0, /*
|
|
777 Return the real uid of Emacs, as an integer.
|
|
778 */
|
|
779 ())
|
|
780 {
|
|
781 return make_int (getuid ());
|
|
782 }
|
|
783
|
|
784 DEFUN ("user-full-name", Fuser_full_name, 0, 1, 0, /*
|
|
785 Return the full name of the user logged in, as a string.
|
|
786 If the optional argument USER is given, then the full name for that
|
|
787 user is returned, or nil. USER may be either a login name or a uid.
|
|
788
|
|
789 If USER is nil, and `user-full-name' contains a string, the
|
|
790 value of `user-full-name' is returned.
|
|
791 */
|
|
792 (user))
|
|
793 {
|
|
794 Lisp_Object user_name;
|
|
795 struct passwd *pw = NULL;
|
|
796 Lisp_Object tem;
|
771
|
797 const Intbyte *p, *q;
|
428
|
798
|
|
799 if (NILP (user) && STRINGP (Vuser_full_name))
|
|
800 return Vuser_full_name;
|
|
801
|
|
802 user_name = (STRINGP (user) ? user : Fuser_login_name (user));
|
|
803 if (!NILP (user_name)) /* nil when nonexistent UID passed as arg */
|
|
804 {
|
|
805 /* Fuck me. getpwnam() can call select() and (under IRIX at least)
|
|
806 things get wedged if a SIGIO arrives during this time. */
|
|
807 slow_down_interrupts ();
|
771
|
808 pw = qxe_getpwnam (XSTRING_DATA (user_name));
|
428
|
809 speed_up_interrupts ();
|
|
810 }
|
|
811
|
|
812 /* #### - Stig sez: this should return nil instead of "unknown" when pw==0 */
|
|
813 /* Ben sez: bad idea because it's likely to break something */
|
|
814 #ifndef AMPERSAND_FULL_NAME
|
771
|
815 p = (Intbyte *) (pw ? USER_FULL_NAME : "unknown"); /* don't gettext */
|
|
816 q = qxestrchr (p, ',');
|
428
|
817 #else
|
771
|
818 p = (Intbyte *) (pw ? USER_FULL_NAME : "unknown"); /* don't gettext */
|
|
819 q = qxestrchr (p, ',');
|
428
|
820 #endif
|
|
821 tem = ((!NILP (user) && !pw)
|
|
822 ? Qnil
|
771
|
823 : make_string (p, (q ? q - p : qxestrlen (p))));
|
428
|
824
|
|
825 #ifdef AMPERSAND_FULL_NAME
|
|
826 if (!NILP (tem))
|
|
827 {
|
771
|
828 p = XSTRING_DATA (tem);
|
|
829 q = qxestrchr (p, '&');
|
428
|
830 /* Substitute the login name for the &, upcasing the first character. */
|
|
831 if (q)
|
|
832 {
|
771
|
833 DECLARE_EISTRING (r);
|
|
834 eicpy_raw (r, p, q - p);
|
|
835 eicat_lstr (r, user_name);
|
|
836 eisetch (r, q - p, UPCASE (0, eigetch (r, q - p)));
|
|
837 eicat_rawz (r, q + 1);
|
|
838 tem = eimake_string (r);
|
428
|
839 }
|
|
840 }
|
|
841 #endif /* AMPERSAND_FULL_NAME */
|
|
842
|
|
843 return tem;
|
|
844 }
|
|
845
|
771
|
846 static Intbyte *cached_home_directory;
|
428
|
847
|
|
848 void
|
|
849 uncache_home_directory (void)
|
|
850 {
|
771
|
851 if (cached_home_directory)
|
|
852 xfree (cached_home_directory);
|
|
853 cached_home_directory = NULL;
|
428
|
854 }
|
|
855
|
771
|
856 /* Returns the home directory */
|
|
857 Intbyte *
|
428
|
858 get_home_directory (void)
|
|
859 {
|
|
860 int output_home_warning = 0;
|
|
861
|
|
862 if (cached_home_directory == NULL)
|
|
863 {
|
771
|
864 cached_home_directory = egetenv ("HOME");
|
|
865 if (cached_home_directory)
|
|
866 cached_home_directory = qxestrdup (cached_home_directory);
|
|
867 else
|
428
|
868 {
|
771
|
869 #if defined (WIN32_NATIVE)
|
|
870 Intbyte *homedrive, *homepath;
|
428
|
871
|
771
|
872 if ((homedrive = egetenv ("HOMEDRIVE")) != NULL &&
|
|
873 (homepath = egetenv ("HOMEPATH")) != NULL)
|
428
|
874 {
|
|
875 cached_home_directory =
|
771
|
876 (Intbyte *) xmalloc (qxestrlen (homedrive) +
|
|
877 qxestrlen (homepath) + 1);
|
|
878 qxesprintf (cached_home_directory, "%s%s",
|
|
879 homedrive,
|
|
880 homepath);
|
428
|
881 }
|
|
882 else
|
|
883 {
|
771
|
884 cached_home_directory = qxestrdup ((Intbyte *) "C:\\");
|
428
|
885 output_home_warning = 1;
|
|
886 }
|
442
|
887 #else /* !WIN32_NATIVE */
|
428
|
888 /*
|
|
889 * Unix, typically.
|
|
890 * Using "/" isn't quite right, but what should we do?
|
|
891 * We probably should try to extract pw_dir from /etc/passwd,
|
|
892 * before falling back to this.
|
|
893 */
|
771
|
894 cached_home_directory = qxestrdup ((Intbyte *) "/");
|
428
|
895 output_home_warning = 1;
|
442
|
896 #endif /* !WIN32_NATIVE */
|
428
|
897 }
|
|
898 if (initialized && output_home_warning)
|
|
899 {
|
|
900 warn_when_safe (Quser_files_and_directories, Qwarning, "\n"
|
|
901 " XEmacs was unable to determine a good value for the user's $HOME\n"
|
|
902 " directory, and will be using the value:\n"
|
|
903 " %s\n"
|
|
904 " This is probably incorrect.",
|
|
905 cached_home_directory
|
|
906 );
|
|
907 }
|
|
908 }
|
|
909 return cached_home_directory;
|
|
910 }
|
|
911
|
|
912 DEFUN ("user-home-directory", Fuser_home_directory, 0, 0, 0, /*
|
|
913 Return the user's home directory, as a string.
|
|
914 */
|
|
915 ())
|
|
916 {
|
771
|
917 Intbyte *path = get_home_directory ();
|
428
|
918
|
771
|
919 return !path ? Qnil :
|
|
920 Fexpand_file_name (Fsubstitute_in_file_name (build_intstring (path)),
|
428
|
921 Qnil);
|
|
922 }
|
|
923
|
|
924 DEFUN ("system-name", Fsystem_name, 0, 0, 0, /*
|
|
925 Return the name of the machine you are running on, as a string.
|
|
926 */
|
|
927 ())
|
|
928 {
|
771
|
929 return Fcopy_sequence (Vsystem_name);
|
428
|
930 }
|
|
931
|
|
932 DEFUN ("emacs-pid", Femacs_pid, 0, 0, 0, /*
|
|
933 Return the process ID of Emacs, as an integer.
|
|
934 */
|
|
935 ())
|
|
936 {
|
771
|
937 return make_int (qxe_getpid ());
|
428
|
938 }
|
|
939
|
|
940 DEFUN ("current-time", Fcurrent_time, 0, 0, 0, /*
|
|
941 Return the current time, as the number of seconds since 1970-01-01 00:00:00.
|
|
942 The time is returned as a list of three integers. The first has the
|
|
943 most significant 16 bits of the seconds, while the second has the
|
|
944 least significant 16 bits. The third integer gives the microsecond
|
|
945 count.
|
|
946
|
|
947 The microsecond count is zero on systems that do not provide
|
|
948 resolution finer than a second.
|
|
949 */
|
|
950 ())
|
|
951 {
|
|
952 EMACS_TIME t;
|
|
953
|
|
954 EMACS_GET_TIME (t);
|
|
955 return list3 (make_int ((EMACS_SECS (t) >> 16) & 0xffff),
|
|
956 make_int ((EMACS_SECS (t) >> 0) & 0xffff),
|
|
957 make_int (EMACS_USECS (t)));
|
|
958 }
|
|
959
|
|
960 DEFUN ("current-process-time", Fcurrent_process_time, 0, 0, 0, /*
|
|
961 Return the amount of time used by this XEmacs process so far.
|
|
962 The return value is a list of three floating-point numbers, expressing
|
|
963 the user, system, and real times used by the process. The user time
|
|
964 measures the time actually spent by the CPU executing the code in this
|
|
965 process. The system time measures time spent by the CPU executing kernel
|
|
966 code on behalf of this process (e.g. I/O requests made by the process).
|
|
967
|
|
968 Note that the user and system times measure processor time, as opposed
|
|
969 to real time, and only accrue when the processor is actually doing
|
|
970 something: Time spent in an idle wait (waiting for user events to come
|
|
971 in or for I/O on a disk drive or other device to complete) does not
|
|
972 count. Thus, the user and system times will often be considerably
|
|
973 less than the real time.
|
|
974
|
|
975 Some systems do not allow the user and system times to be distinguished.
|
|
976 In this case, the user time will be the total processor time used by
|
|
977 the process, and the system time will be 0.
|
|
978
|
|
979 Some systems do not allow the real and processor times to be distinguished.
|
|
980 In this case, the user and real times will be the same and the system
|
|
981 time will be 0.
|
|
982 */
|
|
983 ())
|
|
984 {
|
|
985 double user, sys, real;
|
|
986
|
|
987 get_process_times (&user, &sys, &real);
|
|
988 return list3 (make_float (user), make_float (sys), make_float (real));
|
|
989 }
|
|
990
|
|
991
|
|
992 int lisp_to_time (Lisp_Object specified_time, time_t *result);
|
|
993 int
|
|
994 lisp_to_time (Lisp_Object specified_time, time_t *result)
|
|
995 {
|
|
996 Lisp_Object high, low;
|
|
997
|
|
998 if (NILP (specified_time))
|
|
999 return time (result) != -1;
|
|
1000
|
|
1001 CHECK_CONS (specified_time);
|
|
1002 high = XCAR (specified_time);
|
|
1003 low = XCDR (specified_time);
|
|
1004 if (CONSP (low))
|
|
1005 low = XCAR (low);
|
|
1006 CHECK_INT (high);
|
|
1007 CHECK_INT (low);
|
|
1008 *result = (XINT (high) << 16) + (XINT (low) & 0xffff);
|
|
1009 return *result >> 16 == XINT (high);
|
|
1010 }
|
|
1011
|
|
1012 Lisp_Object time_to_lisp (time_t the_time);
|
|
1013 Lisp_Object
|
|
1014 time_to_lisp (time_t the_time)
|
|
1015 {
|
|
1016 unsigned int item = (unsigned int) the_time;
|
|
1017 return Fcons (make_int (item >> 16), make_int (item & 0xffff));
|
|
1018 }
|
|
1019
|
771
|
1020 size_t emacs_strftime (Extbyte *string, size_t max, const Extbyte *format,
|
442
|
1021 const struct tm *tm);
|
|
1022 static long difftm (const struct tm *a, const struct tm *b);
|
428
|
1023
|
|
1024
|
|
1025 DEFUN ("format-time-string", Fformat_time_string, 1, 2, 0, /*
|
|
1026 Use FORMAT-STRING to format the time TIME.
|
|
1027 TIME is specified as (HIGH LOW . IGNORED) or (HIGH . LOW), as from
|
|
1028 `current-time' and `file-attributes'. If TIME is not specified it
|
|
1029 defaults to the current time.
|
|
1030 FORMAT-STRING may contain %-sequences to substitute parts of the time.
|
|
1031 %a is replaced by the abbreviated name of the day of week.
|
|
1032 %A is replaced by the full name of the day of week.
|
|
1033 %b is replaced by the abbreviated name of the month.
|
|
1034 %B is replaced by the full name of the month.
|
|
1035 %c is a synonym for "%x %X".
|
|
1036 %C is a locale-specific synonym, which defaults to "%A, %B %e, %Y" in the C locale.
|
|
1037 %d is replaced by the day of month, zero-padded.
|
|
1038 %D is a synonym for "%m/%d/%y".
|
|
1039 %e is replaced by the day of month, blank-padded.
|
|
1040 %h is a synonym for "%b".
|
|
1041 %H is replaced by the hour (00-23).
|
|
1042 %I is replaced by the hour (00-12).
|
|
1043 %j is replaced by the day of the year (001-366).
|
|
1044 %k is replaced by the hour (0-23), blank padded.
|
|
1045 %l is replaced by the hour (1-12), blank padded.
|
|
1046 %m is replaced by the month (01-12).
|
|
1047 %M is replaced by the minute (00-59).
|
|
1048 %n is a synonym for "\\n".
|
|
1049 %p is replaced by AM or PM, as appropriate.
|
|
1050 %r is a synonym for "%I:%M:%S %p".
|
|
1051 %R is a synonym for "%H:%M".
|
|
1052 %s is replaced by the time in seconds since 00:00:00, Jan 1, 1970 (a
|
|
1053 nonstandard extension)
|
|
1054 %S is replaced by the second (00-60).
|
|
1055 %t is a synonym for "\\t".
|
|
1056 %T is a synonym for "%H:%M:%S".
|
|
1057 %U is replaced by the week of the year (00-53), first day of week is Sunday.
|
|
1058 %w is replaced by the day of week (0-6), Sunday is day 0.
|
|
1059 %W is replaced by the week of the year (00-53), first day of week is Monday.
|
|
1060 %x is a locale-specific synonym, which defaults to "%D" in the C locale.
|
|
1061 %X is a locale-specific synonym, which defaults to "%T" in the C locale.
|
|
1062 %y is replaced by the year without century (00-99).
|
|
1063 %Y is replaced by the year with century.
|
|
1064 %Z is replaced by the time zone abbreviation.
|
|
1065
|
|
1066 The number of options reflects the `strftime' function.
|
|
1067
|
|
1068 BUG: If the charset used by the current locale is not ISO 8859-1, the
|
|
1069 characters appearing in the day and month names may be incorrect.
|
|
1070 */
|
|
1071 (format_string, time_))
|
|
1072 {
|
|
1073 time_t value;
|
665
|
1074 Bytecount size;
|
428
|
1075
|
|
1076 CHECK_STRING (format_string);
|
|
1077
|
|
1078 if (! lisp_to_time (time_, &value))
|
563
|
1079 invalid_argument ("Invalid time specification", Qunbound);
|
428
|
1080
|
|
1081 /* This is probably enough. */
|
|
1082 size = XSTRING_LENGTH (format_string) * 6 + 50;
|
|
1083
|
|
1084 while (1)
|
|
1085 {
|
771
|
1086 Extbyte *buf = (Extbyte *) alloca (size);
|
|
1087 Extbyte *formext;
|
428
|
1088 *buf = 1;
|
771
|
1089
|
|
1090 /* !!#### this use of external here is not totally safe, and
|
|
1091 potentially data lossy. */
|
|
1092 LISP_STRING_TO_EXTERNAL (format_string, formext, Qnative);
|
|
1093 if (emacs_strftime (buf, size, formext,
|
428
|
1094 localtime (&value))
|
|
1095 || !*buf)
|
771
|
1096 return build_ext_string (buf, Qnative);
|
428
|
1097 /* If buffer was too small, make it bigger. */
|
|
1098 size *= 2;
|
|
1099 }
|
|
1100 }
|
|
1101
|
|
1102 DEFUN ("decode-time", Fdecode_time, 0, 1, 0, /*
|
|
1103 Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).
|
|
1104 The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED)
|
|
1105 or (HIGH . LOW), as from `current-time' and `file-attributes', or `nil'
|
|
1106 to use the current time. The list has the following nine members:
|
|
1107 SEC is an integer between 0 and 60; SEC is 60 for a leap second, which
|
|
1108 only some operating systems support. MINUTE is an integer between 0 and 59.
|
|
1109 HOUR is an integer between 0 and 23. DAY is an integer between 1 and 31.
|
|
1110 MONTH is an integer between 1 and 12. YEAR is an integer indicating the
|
|
1111 four-digit year. DOW is the day of week, an integer between 0 and 6, where
|
|
1112 0 is Sunday. DST is t if daylight savings time is effect, otherwise nil.
|
|
1113 ZONE is an integer indicating the number of seconds east of Greenwich.
|
|
1114 \(Note that Common Lisp has different meanings for DOW and ZONE.)
|
|
1115 */
|
|
1116 (specified_time))
|
|
1117 {
|
|
1118 time_t time_spec;
|
|
1119 struct tm save_tm;
|
|
1120 struct tm *decoded_time;
|
|
1121 Lisp_Object list_args[9];
|
|
1122
|
|
1123 if (! lisp_to_time (specified_time, &time_spec))
|
563
|
1124 invalid_argument ("Invalid time specification", Qunbound);
|
428
|
1125
|
|
1126 decoded_time = localtime (&time_spec);
|
|
1127 list_args[0] = make_int (decoded_time->tm_sec);
|
|
1128 list_args[1] = make_int (decoded_time->tm_min);
|
|
1129 list_args[2] = make_int (decoded_time->tm_hour);
|
|
1130 list_args[3] = make_int (decoded_time->tm_mday);
|
|
1131 list_args[4] = make_int (decoded_time->tm_mon + 1);
|
|
1132 list_args[5] = make_int (decoded_time->tm_year + 1900);
|
|
1133 list_args[6] = make_int (decoded_time->tm_wday);
|
|
1134 list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil;
|
|
1135
|
|
1136 /* Make a copy, in case gmtime modifies the struct. */
|
|
1137 save_tm = *decoded_time;
|
|
1138 decoded_time = gmtime (&time_spec);
|
|
1139 if (decoded_time == 0)
|
|
1140 list_args[8] = Qnil;
|
|
1141 else
|
|
1142 list_args[8] = make_int (difftm (&save_tm, decoded_time));
|
|
1143 return Flist (9, list_args);
|
|
1144 }
|
|
1145
|
771
|
1146 static void set_time_zone_rule (Extbyte *tzstring);
|
428
|
1147
|
707
|
1148 /* from GNU Emacs 21, per Simon Josefsson, modified by stephen
|
|
1149 The slight inefficiency is justified since negative times are weird. */
|
|
1150 Lisp_Object
|
771
|
1151 make_time (time_t tiempo)
|
707
|
1152 {
|
771
|
1153 return list2 (make_int (tiempo < 0 ? tiempo / 0x10000 : tiempo >> 16),
|
|
1154 make_int (tiempo & 0xFFFF));
|
707
|
1155 }
|
|
1156
|
428
|
1157 DEFUN ("encode-time", Fencode_time, 6, MANY, 0, /*
|
|
1158 Convert SECOND, MINUTE, HOUR, DAY, MONTH, YEAR and ZONE to internal time.
|
|
1159 This is the reverse operation of `decode-time', which see.
|
|
1160 ZONE defaults to the current time zone rule. This can
|
|
1161 be a string (as from `set-time-zone-rule'), or it can be a list
|
|
1162 \(as from `current-time-zone') or an integer (as from `decode-time')
|
|
1163 applied without consideration for daylight savings time.
|
|
1164
|
|
1165 You can pass more than 7 arguments; then the first six arguments
|
|
1166 are used as SECOND through YEAR, and the *last* argument is used as ZONE.
|
|
1167 The intervening arguments are ignored.
|
|
1168 This feature lets (apply 'encode-time (decode-time ...)) work.
|
|
1169
|
|
1170 Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed;
|
|
1171 for example, a DAY of 0 means the day preceding the given month.
|
|
1172 Year numbers less than 100 are treated just like other year numbers.
|
|
1173 If you want them to stand for years in this century, you must do that yourself.
|
|
1174 */
|
|
1175 (int nargs, Lisp_Object *args))
|
|
1176 {
|
|
1177 time_t the_time;
|
|
1178 struct tm tm;
|
|
1179 Lisp_Object zone = (nargs > 6) ? args[nargs - 1] : Qnil;
|
|
1180
|
|
1181 CHECK_INT (*args); tm.tm_sec = XINT (*args++); /* second */
|
|
1182 CHECK_INT (*args); tm.tm_min = XINT (*args++); /* minute */
|
|
1183 CHECK_INT (*args); tm.tm_hour = XINT (*args++); /* hour */
|
|
1184 CHECK_INT (*args); tm.tm_mday = XINT (*args++); /* day */
|
|
1185 CHECK_INT (*args); tm.tm_mon = XINT (*args++) - 1; /* month */
|
|
1186 CHECK_INT (*args); tm.tm_year = XINT (*args++) - 1900;/* year */
|
|
1187
|
|
1188 tm.tm_isdst = -1;
|
|
1189
|
|
1190 if (CONSP (zone))
|
|
1191 zone = XCAR (zone);
|
|
1192 if (NILP (zone))
|
|
1193 the_time = mktime (&tm);
|
|
1194 else
|
|
1195 {
|
771
|
1196 /* #### This business of modifying environ is horrendous!
|
|
1197 Why don't we just putenv()? Why don't we implement our own
|
|
1198 funs that don't require this futzing? */
|
|
1199 Extbyte tzbuf[100];
|
|
1200 Extbyte *tzstring;
|
|
1201 Extbyte **oldenv = environ, **newenv;
|
428
|
1202
|
|
1203 if (STRINGP (zone))
|
771
|
1204 LISP_STRING_TO_EXTERNAL (zone, tzstring, Qnative);
|
428
|
1205 else if (INTP (zone))
|
|
1206 {
|
|
1207 int abszone = abs (XINT (zone));
|
|
1208 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
|
|
1209 abszone / (60*60), (abszone/60) % 60, abszone % 60);
|
|
1210 tzstring = tzbuf;
|
|
1211 }
|
|
1212 else
|
771
|
1213 invalid_argument ("Invalid time zone specification", Qunbound);
|
428
|
1214
|
|
1215 /* Set TZ before calling mktime; merely adjusting mktime's returned
|
|
1216 value doesn't suffice, since that would mishandle leap seconds. */
|
|
1217 set_time_zone_rule (tzstring);
|
|
1218
|
|
1219 the_time = mktime (&tm);
|
|
1220
|
|
1221 /* Restore TZ to previous value. */
|
|
1222 newenv = environ;
|
|
1223 environ = oldenv;
|
|
1224 free (newenv);
|
|
1225 #ifdef LOCALTIME_CACHE
|
|
1226 tzset ();
|
|
1227 #endif
|
|
1228 }
|
|
1229
|
|
1230 if (the_time == (time_t) -1)
|
563
|
1231 invalid_argument ("Specified time is not representable", Qunbound);
|
428
|
1232
|
707
|
1233 return make_time (the_time);
|
428
|
1234 }
|
|
1235
|
|
1236 DEFUN ("current-time-string", Fcurrent_time_string, 0, 1, 0, /*
|
|
1237 Return the current time, as a human-readable string.
|
|
1238 Programs can use this function to decode a time,
|
|
1239 since the number of columns in each field is fixed.
|
|
1240 The format is `Sun Sep 16 01:03:52 1973'.
|
|
1241 If an argument is given, it specifies a time to format
|
|
1242 instead of the current time. The argument should have the form:
|
|
1243 (HIGH . LOW)
|
|
1244 or the form:
|
|
1245 (HIGH LOW . IGNORED).
|
|
1246 Thus, you can use times obtained from `current-time'
|
|
1247 and from `file-attributes'.
|
|
1248 */
|
|
1249 (specified_time))
|
|
1250 {
|
|
1251 time_t value;
|
771
|
1252 Intbyte *the_ctime;
|
647
|
1253 EMACS_INT len; /* this is what make_ext_string() accepts; ####
|
665
|
1254 should it be an Bytecount? */
|
428
|
1255
|
|
1256 if (! lisp_to_time (specified_time, &value))
|
|
1257 value = -1;
|
771
|
1258 the_ctime = qxe_ctime (&value);
|
428
|
1259
|
442
|
1260 /* ctime is documented as always returning a "\n\0"-terminated
|
|
1261 26-byte American time string, but let's be careful anyways. */
|
|
1262 for (len = 0; the_ctime[len] != '\n' && the_ctime[len] != '\0'; len++)
|
|
1263 ;
|
428
|
1264
|
771
|
1265 return make_string (the_ctime, len);
|
428
|
1266 }
|
|
1267
|
|
1268 #define TM_YEAR_ORIGIN 1900
|
|
1269
|
|
1270 /* Yield A - B, measured in seconds. */
|
|
1271 static long
|
442
|
1272 difftm (const struct tm *a, const struct tm *b)
|
428
|
1273 {
|
|
1274 int ay = a->tm_year + (TM_YEAR_ORIGIN - 1);
|
|
1275 int by = b->tm_year + (TM_YEAR_ORIGIN - 1);
|
|
1276 /* Some compilers can't handle this as a single return statement. */
|
|
1277 long days = (
|
|
1278 /* difference in day of year */
|
|
1279 a->tm_yday - b->tm_yday
|
|
1280 /* + intervening leap days */
|
|
1281 + ((ay >> 2) - (by >> 2))
|
|
1282 - (ay/100 - by/100)
|
|
1283 + ((ay/100 >> 2) - (by/100 >> 2))
|
|
1284 /* + difference in years * 365 */
|
|
1285 + (long)(ay-by) * 365
|
|
1286 );
|
|
1287 return (60*(60*(24*days + (a->tm_hour - b->tm_hour))
|
|
1288 + (a->tm_min - b->tm_min))
|
|
1289 + (a->tm_sec - b->tm_sec));
|
|
1290 }
|
|
1291
|
|
1292 DEFUN ("current-time-zone", Fcurrent_time_zone, 0, 1, 0, /*
|
|
1293 Return the offset and name for the local time zone.
|
|
1294 This returns a list of the form (OFFSET NAME).
|
|
1295 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
|
|
1296 A negative value means west of Greenwich.
|
|
1297 NAME is a string giving the name of the time zone.
|
|
1298 If an argument is given, it specifies when the time zone offset is determined
|
|
1299 instead of using the current time. The argument should have the form:
|
|
1300 (HIGH . LOW)
|
|
1301 or the form:
|
|
1302 (HIGH LOW . IGNORED).
|
|
1303 Thus, you can use times obtained from `current-time'
|
|
1304 and from `file-attributes'.
|
|
1305
|
|
1306 Some operating systems cannot provide all this information to Emacs;
|
|
1307 in this case, `current-time-zone' returns a list containing nil for
|
|
1308 the data it can't find.
|
|
1309 */
|
|
1310 (specified_time))
|
|
1311 {
|
|
1312 time_t value;
|
|
1313 struct tm *t = NULL;
|
|
1314
|
|
1315 if (lisp_to_time (specified_time, &value)
|
|
1316 && (t = gmtime (&value)) != 0)
|
|
1317 {
|
|
1318 struct tm gmt = *t; /* Make a copy, in case localtime modifies *t. */
|
|
1319 long offset;
|
771
|
1320 Extbyte *s;
|
|
1321 Lisp_Object tem;
|
428
|
1322
|
|
1323 t = localtime (&value);
|
|
1324 offset = difftm (t, &gmt);
|
|
1325 s = 0;
|
|
1326 #ifdef HAVE_TM_ZONE
|
|
1327 if (t->tm_zone)
|
771
|
1328 s = (Extbyte *) t->tm_zone;
|
428
|
1329 #else /* not HAVE_TM_ZONE */
|
|
1330 #ifdef HAVE_TZNAME
|
|
1331 if (t->tm_isdst == 0 || t->tm_isdst == 1)
|
|
1332 s = tzname[t->tm_isdst];
|
|
1333 #endif
|
|
1334 #endif /* not HAVE_TM_ZONE */
|
771
|
1335 if (s)
|
|
1336 tem = build_ext_string (s, Qnative);
|
|
1337 else
|
428
|
1338 {
|
771
|
1339 Intbyte buf[6];
|
|
1340
|
428
|
1341 /* No local time zone name is available; use "+-NNNN" instead. */
|
|
1342 int am = (offset < 0 ? -offset : offset) / 60;
|
771
|
1343 qxesprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60,
|
|
1344 am%60);
|
|
1345 tem = build_intstring (buf);
|
428
|
1346 }
|
771
|
1347 return list2 (make_int (offset), tem);
|
428
|
1348 }
|
|
1349 else
|
|
1350 return list2 (Qnil, Qnil);
|
|
1351 }
|
|
1352
|
|
1353 #ifdef LOCALTIME_CACHE
|
|
1354
|
|
1355 /* These two values are known to load tz files in buggy implementations,
|
|
1356 i.e. Solaris 1 executables running under either Solaris 1 or Solaris 2.
|
|
1357 Their values shouldn't matter in non-buggy implementations.
|
|
1358 We don't use string literals for these strings,
|
|
1359 since if a string in the environment is in readonly
|
|
1360 storage, it runs afoul of bugs in SVR4 and Solaris 2.3.
|
|
1361 See Sun bugs 1113095 and 1114114, ``Timezone routines
|
|
1362 improperly modify environment''. */
|
|
1363
|
771
|
1364 static Char_ASCII set_time_zone_rule_tz1[] = "TZ=GMT+0";
|
|
1365 static Char_ASCII set_time_zone_rule_tz2[] = "TZ=GMT+1";
|
428
|
1366
|
|
1367 #endif
|
|
1368
|
|
1369 /* Set the local time zone rule to TZSTRING.
|
|
1370 This allocates memory into `environ', which it is the caller's
|
|
1371 responsibility to free. */
|
|
1372 static void
|
771
|
1373 set_time_zone_rule (Extbyte *tzstring)
|
428
|
1374 {
|
|
1375 int envptrs;
|
771
|
1376 Extbyte **from, **to, **newenv;
|
428
|
1377
|
|
1378 for (from = environ; *from; from++)
|
|
1379 continue;
|
|
1380 envptrs = from - environ + 2;
|
771
|
1381 newenv = to = (Extbyte **) xmalloc (envptrs * sizeof (Extbyte *)
|
428
|
1382 + (tzstring ? strlen (tzstring) + 4 : 0));
|
|
1383 if (tzstring)
|
|
1384 {
|
771
|
1385 Extbyte *t = (Extbyte *) (to + envptrs);
|
428
|
1386 strcpy (t, "TZ=");
|
|
1387 strcat (t, tzstring);
|
|
1388 *to++ = t;
|
|
1389 }
|
|
1390
|
|
1391 for (from = environ; *from; from++)
|
|
1392 if (strncmp (*from, "TZ=", 3) != 0)
|
|
1393 *to++ = *from;
|
|
1394 *to = 0;
|
|
1395
|
|
1396 environ = newenv;
|
|
1397
|
|
1398 #ifdef LOCALTIME_CACHE
|
|
1399 {
|
|
1400 /* In SunOS 4.1.3_U1 and 4.1.4, if TZ has a value like
|
|
1401 "US/Pacific" that loads a tz file, then changes to a value like
|
|
1402 "XXX0" that does not load a tz file, and then changes back to
|
|
1403 its original value, the last change is (incorrectly) ignored.
|
|
1404 Also, if TZ changes twice in succession to values that do
|
|
1405 not load a tz file, tzset can dump core (see Sun bug#1225179).
|
|
1406 The following code works around these bugs. */
|
|
1407
|
|
1408 if (tzstring)
|
|
1409 {
|
|
1410 /* Temporarily set TZ to a value that loads a tz file
|
|
1411 and that differs from tzstring. */
|
771
|
1412 Extbyte *tz = *newenv;
|
428
|
1413 *newenv = (strcmp (tzstring, set_time_zone_rule_tz1 + 3) == 0
|
|
1414 ? set_time_zone_rule_tz2 : set_time_zone_rule_tz1);
|
|
1415 tzset ();
|
|
1416 *newenv = tz;
|
|
1417 }
|
|
1418 else
|
|
1419 {
|
|
1420 /* The implied tzstring is unknown, so temporarily set TZ to
|
|
1421 two different values that each load a tz file. */
|
|
1422 *to = set_time_zone_rule_tz1;
|
|
1423 to[1] = 0;
|
|
1424 tzset ();
|
|
1425 *to = set_time_zone_rule_tz2;
|
|
1426 tzset ();
|
|
1427 *to = 0;
|
|
1428 }
|
|
1429
|
|
1430 /* Now TZ has the desired value, and tzset can be invoked safely. */
|
|
1431 }
|
|
1432
|
|
1433 tzset ();
|
|
1434 #endif
|
|
1435 }
|
|
1436
|
|
1437 DEFUN ("set-time-zone-rule", Fset_time_zone_rule, 1, 1, 0, /*
|
|
1438 Set the local time zone using TZ, a string specifying a time zone rule.
|
|
1439 If TZ is nil, use implementation-defined default time zone information.
|
|
1440 */
|
|
1441 (tz))
|
|
1442 {
|
771
|
1443 Extbyte *tzstring;
|
428
|
1444
|
|
1445 if (NILP (tz))
|
|
1446 tzstring = 0;
|
|
1447 else
|
|
1448 {
|
|
1449 CHECK_STRING (tz);
|
771
|
1450 LISP_STRING_TO_EXTERNAL (tz, tzstring, Qnative);
|
428
|
1451 }
|
|
1452
|
|
1453 set_time_zone_rule (tzstring);
|
|
1454 if (environbuf)
|
|
1455 xfree (environbuf);
|
|
1456 environbuf = environ;
|
|
1457
|
|
1458 return Qnil;
|
|
1459 }
|
|
1460
|
|
1461
|
|
1462 void
|
|
1463 buffer_insert1 (struct buffer *buf, Lisp_Object arg)
|
|
1464 {
|
|
1465 /* This function can GC */
|
|
1466 struct gcpro gcpro1;
|
|
1467 GCPRO1 (arg);
|
|
1468 retry:
|
|
1469 if (CHAR_OR_CHAR_INTP (arg))
|
|
1470 {
|
|
1471 buffer_insert_emacs_char (buf, XCHAR_OR_CHAR_INT (arg));
|
|
1472 }
|
|
1473 else if (STRINGP (arg))
|
|
1474 {
|
|
1475 buffer_insert_lisp_string (buf, arg);
|
|
1476 }
|
|
1477 else
|
|
1478 {
|
|
1479 arg = wrong_type_argument (Qchar_or_string_p, arg);
|
|
1480 goto retry;
|
|
1481 }
|
|
1482 UNGCPRO;
|
|
1483 }
|
|
1484
|
|
1485
|
|
1486 /* Callers passing one argument to Finsert need not gcpro the
|
|
1487 argument "array", since the only element of the array will
|
|
1488 not be used after calling insert_emacs_char or insert_lisp_string,
|
|
1489 so we don't care if it gets trashed. */
|
|
1490
|
|
1491 DEFUN ("insert", Finsert, 0, MANY, 0, /*
|
|
1492 Insert the arguments, either strings or characters, at point.
|
|
1493 Point moves forward so that it ends up after the inserted text.
|
|
1494 Any other markers at the point of insertion remain before the text.
|
|
1495 If a string has non-null string-extent-data, new extents will be created.
|
|
1496 */
|
|
1497 (int nargs, Lisp_Object *args))
|
|
1498 {
|
|
1499 /* This function can GC */
|
|
1500 REGISTER int argnum;
|
|
1501
|
|
1502 for (argnum = 0; argnum < nargs; argnum++)
|
|
1503 {
|
|
1504 buffer_insert1 (current_buffer, args[argnum]);
|
|
1505 }
|
|
1506
|
|
1507 return Qnil;
|
|
1508 }
|
|
1509
|
|
1510 DEFUN ("insert-before-markers", Finsert_before_markers, 0, MANY, 0, /*
|
|
1511 Insert strings or characters at point, relocating markers after the text.
|
|
1512 Point moves forward so that it ends up after the inserted text.
|
|
1513 Any other markers at the point of insertion also end up after the text.
|
|
1514 */
|
|
1515 (int nargs, Lisp_Object *args))
|
|
1516 {
|
|
1517 /* This function can GC */
|
|
1518 REGISTER int argnum;
|
|
1519 REGISTER Lisp_Object tem;
|
|
1520
|
|
1521 for (argnum = 0; argnum < nargs; argnum++)
|
|
1522 {
|
|
1523 tem = args[argnum];
|
|
1524 retry:
|
|
1525 if (CHAR_OR_CHAR_INTP (tem))
|
|
1526 {
|
|
1527 buffer_insert_emacs_char_1 (current_buffer, -1,
|
|
1528 XCHAR_OR_CHAR_INT (tem),
|
|
1529 INSDEL_BEFORE_MARKERS);
|
|
1530 }
|
|
1531 else if (STRINGP (tem))
|
|
1532 {
|
|
1533 buffer_insert_lisp_string_1 (current_buffer, -1, tem,
|
|
1534 INSDEL_BEFORE_MARKERS);
|
|
1535 }
|
|
1536 else
|
|
1537 {
|
|
1538 tem = wrong_type_argument (Qchar_or_string_p, tem);
|
|
1539 goto retry;
|
|
1540 }
|
|
1541 }
|
|
1542 return Qnil;
|
|
1543 }
|
|
1544
|
|
1545 DEFUN ("insert-string", Finsert_string, 1, 2, 0, /*
|
|
1546 Insert STRING into BUFFER at BUFFER's point.
|
|
1547 Point moves forward so that it ends up after the inserted text.
|
|
1548 Any other markers at the point of insertion remain before the text.
|
|
1549 If a string has non-null string-extent-data, new extents will be created.
|
|
1550 BUFFER defaults to the current buffer.
|
|
1551 */
|
|
1552 (string, buffer))
|
|
1553 {
|
|
1554 struct buffer *b = decode_buffer (buffer, 1);
|
|
1555 CHECK_STRING (string);
|
|
1556 buffer_insert_lisp_string (b, string);
|
|
1557 return Qnil;
|
|
1558 }
|
|
1559
|
|
1560 /* Third argument in FSF is INHERIT:
|
|
1561
|
|
1562 "The optional third arg INHERIT, if non-nil, says to inherit text properties
|
|
1563 from adjoining text, if those properties are sticky."
|
|
1564
|
|
1565 Jamie thinks this is bogus. */
|
|
1566
|
|
1567
|
|
1568 DEFUN ("insert-char", Finsert_char, 1, 4, 0, /*
|
444
|
1569 Insert COUNT copies of CHARACTER into BUFFER.
|
428
|
1570 Point and all markers are affected as in the function `insert'.
|
|
1571 COUNT defaults to 1 if omitted.
|
|
1572 The optional third arg IGNORED is INHERIT under FSF Emacs.
|
|
1573 This is highly bogus, however, and XEmacs always behaves as if
|
|
1574 `t' were passed to INHERIT.
|
|
1575 The optional fourth arg BUFFER specifies the buffer to insert the
|
|
1576 text into. If BUFFER is nil, the current buffer is assumed.
|
|
1577 */
|
444
|
1578 (character, count, ignored, buffer))
|
428
|
1579 {
|
|
1580 /* This function can GC */
|
665
|
1581 REGISTER Intbyte *string;
|
428
|
1582 REGISTER int slen;
|
|
1583 REGISTER int i, j;
|
|
1584 REGISTER Bytecount n;
|
|
1585 REGISTER Bytecount charlen;
|
665
|
1586 Intbyte str[MAX_EMCHAR_LEN];
|
428
|
1587 struct buffer *b = decode_buffer (buffer, 1);
|
|
1588 int cou;
|
|
1589
|
444
|
1590 CHECK_CHAR_COERCE_INT (character);
|
428
|
1591 if (NILP (count))
|
|
1592 cou = 1;
|
|
1593 else
|
|
1594 {
|
|
1595 CHECK_INT (count);
|
|
1596 cou = XINT (count);
|
|
1597 }
|
|
1598
|
444
|
1599 charlen = set_charptr_emchar (str, XCHAR (character));
|
428
|
1600 n = cou * charlen;
|
|
1601 if (n <= 0)
|
|
1602 return Qnil;
|
|
1603 slen = min (n, 768);
|
665
|
1604 string = alloca_array (Intbyte, slen);
|
428
|
1605 /* Write as many copies of the character into the temp string as will fit. */
|
|
1606 for (i = 0; i + charlen <= slen; i += charlen)
|
|
1607 for (j = 0; j < charlen; j++)
|
|
1608 string[i + j] = str[j];
|
|
1609 slen = i;
|
|
1610 while (n >= slen)
|
|
1611 {
|
|
1612 buffer_insert_raw_string (b, string, slen);
|
|
1613 n -= slen;
|
|
1614 }
|
|
1615 if (n > 0)
|
|
1616 #if 0 /* FSFmacs bogosity */
|
|
1617 {
|
|
1618 if (!NILP (inherit))
|
|
1619 insert_and_inherit (string, n);
|
|
1620 else
|
|
1621 insert (string, n);
|
|
1622 }
|
|
1623 #else
|
|
1624 buffer_insert_raw_string (b, string, n);
|
|
1625 #endif
|
|
1626
|
|
1627 return Qnil;
|
|
1628 }
|
|
1629
|
|
1630
|
|
1631 /* Making strings from buffer contents. */
|
|
1632
|
|
1633 DEFUN ("buffer-substring", Fbuffer_substring, 0, 3, 0, /*
|
|
1634 Return the contents of part of BUFFER as a string.
|
|
1635 The two arguments START and END are character positions;
|
|
1636 they can be in either order. If omitted, they default to the beginning
|
|
1637 and end of BUFFER, respectively.
|
|
1638 If there are duplicable extents in the region, the string remembers
|
|
1639 them in its extent data.
|
|
1640 If BUFFER is nil, the current buffer is assumed.
|
|
1641 */
|
|
1642 (start, end, buffer))
|
|
1643 {
|
|
1644 /* This function can GC */
|
665
|
1645 Charbpos begv, zv;
|
428
|
1646 struct buffer *b = decode_buffer (buffer, 1);
|
|
1647
|
|
1648 get_buffer_range_char (b, start, end, &begv, &zv, GB_ALLOW_NIL);
|
|
1649 return make_string_from_buffer (b, begv, zv - begv);
|
|
1650 }
|
|
1651
|
|
1652 /* It might make more sense to name this
|
|
1653 `buffer-substring-no-extents', but this name is FSFmacs-compatible,
|
|
1654 and what the function does is probably good enough for what the
|
|
1655 user-code will typically want to use it for. */
|
|
1656 DEFUN ("buffer-substring-no-properties", Fbuffer_substring_no_properties, 0, 3, 0, /*
|
444
|
1657 Return the text from START to END as a string, without copying the extents.
|
428
|
1658 */
|
|
1659 (start, end, buffer))
|
|
1660 {
|
|
1661 /* This function can GC */
|
665
|
1662 Charbpos begv, zv;
|
428
|
1663 struct buffer *b = decode_buffer (buffer, 1);
|
|
1664
|
|
1665 get_buffer_range_char (b, start, end, &begv, &zv, GB_ALLOW_NIL);
|
|
1666 return make_string_from_buffer_no_extents (b, begv, zv - begv);
|
|
1667 }
|
|
1668
|
|
1669 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, 1, 3, 0, /*
|
|
1670 Insert before point a substring of the contents of buffer BUFFER.
|
|
1671 BUFFER may be a buffer or a buffer name.
|
|
1672 Arguments START and END are character numbers specifying the substring.
|
|
1673 They default to the beginning and the end of BUFFER.
|
|
1674 */
|
|
1675 (buffer, start, end))
|
|
1676 {
|
|
1677 /* This function can GC */
|
665
|
1678 Charbpos b, e;
|
428
|
1679 struct buffer *bp;
|
|
1680
|
|
1681 bp = XBUFFER (get_buffer (buffer, 1));
|
|
1682 get_buffer_range_char (bp, start, end, &b, &e, GB_ALLOW_NIL);
|
|
1683
|
|
1684 if (b < e)
|
|
1685 buffer_insert_from_buffer (current_buffer, bp, b, e - b);
|
|
1686
|
|
1687 return Qnil;
|
|
1688 }
|
|
1689
|
|
1690 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, 6, 6, 0, /*
|
|
1691 Compare two substrings of two buffers; return result as number.
|
|
1692 the value is -N if first string is less after N-1 chars,
|
|
1693 +N if first string is greater after N-1 chars, or 0 if strings match.
|
|
1694 Each substring is represented as three arguments: BUFFER, START and END.
|
|
1695 That makes six args in all, three for each substring.
|
|
1696
|
|
1697 The value of `case-fold-search' in the current buffer
|
|
1698 determines whether case is significant or ignored.
|
|
1699 */
|
|
1700 (buffer1, start1, end1, buffer2, start2, end2))
|
|
1701 {
|
665
|
1702 Charbpos begp1, endp1, begp2, endp2;
|
428
|
1703 REGISTER Charcount len1, len2, length, i;
|
|
1704 struct buffer *bp1, *bp2;
|
|
1705 Lisp_Object trt = ((!NILP (current_buffer->case_fold_search)) ?
|
446
|
1706 XCASE_TABLE_CANON (current_buffer->case_table) : Qnil);
|
428
|
1707
|
|
1708 /* Find the first buffer and its substring. */
|
|
1709
|
|
1710 bp1 = decode_buffer (buffer1, 1);
|
|
1711 get_buffer_range_char (bp1, start1, end1, &begp1, &endp1, GB_ALLOW_NIL);
|
|
1712
|
|
1713 /* Likewise for second substring. */
|
|
1714
|
|
1715 bp2 = decode_buffer (buffer2, 1);
|
|
1716 get_buffer_range_char (bp2, start2, end2, &begp2, &endp2, GB_ALLOW_NIL);
|
|
1717
|
|
1718 len1 = endp1 - begp1;
|
|
1719 len2 = endp2 - begp2;
|
|
1720 length = len1;
|
|
1721 if (len2 < length)
|
|
1722 length = len2;
|
|
1723
|
|
1724 for (i = 0; i < length; i++)
|
|
1725 {
|
|
1726 Emchar c1 = BUF_FETCH_CHAR (bp1, begp1 + i);
|
|
1727 Emchar c2 = BUF_FETCH_CHAR (bp2, begp2 + i);
|
|
1728 if (!NILP (trt))
|
|
1729 {
|
|
1730 c1 = TRT_TABLE_OF (trt, c1);
|
|
1731 c2 = TRT_TABLE_OF (trt, c2);
|
|
1732 }
|
|
1733 if (c1 < c2)
|
|
1734 return make_int (- 1 - i);
|
|
1735 if (c1 > c2)
|
|
1736 return make_int (i + 1);
|
|
1737 }
|
|
1738
|
|
1739 /* The strings match as far as they go.
|
|
1740 If one is shorter, that one is less. */
|
|
1741 if (length < len1)
|
|
1742 return make_int (length + 1);
|
|
1743 else if (length < len2)
|
|
1744 return make_int (- length - 1);
|
|
1745
|
|
1746 /* Same length too => they are equal. */
|
|
1747 return Qzero;
|
|
1748 }
|
|
1749
|
|
1750
|
|
1751 static Lisp_Object
|
|
1752 subst_char_in_region_unwind (Lisp_Object arg)
|
|
1753 {
|
|
1754 XBUFFER (XCAR (arg))->undo_list = XCDR (arg);
|
|
1755 return Qnil;
|
|
1756 }
|
|
1757
|
|
1758 static Lisp_Object
|
|
1759 subst_char_in_region_unwind_1 (Lisp_Object arg)
|
|
1760 {
|
|
1761 XBUFFER (XCAR (arg))->filename = XCDR (arg);
|
|
1762 return Qnil;
|
|
1763 }
|
|
1764
|
|
1765 DEFUN ("subst-char-in-region", Fsubst_char_in_region, 4, 5, 0, /*
|
|
1766 From START to END, replace FROMCHAR with TOCHAR each time it occurs.
|
|
1767 If optional arg NOUNDO is non-nil, don't record this change for undo
|
|
1768 and don't mark the buffer as really changed.
|
|
1769 */
|
|
1770 (start, end, fromchar, tochar, noundo))
|
|
1771 {
|
|
1772 /* This function can GC */
|
665
|
1773 Charbpos pos, stop;
|
428
|
1774 Emchar fromc, toc;
|
|
1775 int mc_count;
|
|
1776 struct buffer *buf = current_buffer;
|
|
1777 int count = specpdl_depth ();
|
|
1778
|
|
1779 get_buffer_range_char (buf, start, end, &pos, &stop, 0);
|
|
1780 CHECK_CHAR_COERCE_INT (fromchar);
|
|
1781 CHECK_CHAR_COERCE_INT (tochar);
|
|
1782
|
|
1783 fromc = XCHAR (fromchar);
|
|
1784 toc = XCHAR (tochar);
|
|
1785
|
|
1786 /* If we don't want undo, turn off putting stuff on the list.
|
|
1787 That's faster than getting rid of things,
|
|
1788 and it prevents even the entry for a first change.
|
|
1789 Also inhibit locking the file. */
|
|
1790 if (!NILP (noundo))
|
|
1791 {
|
|
1792 record_unwind_protect (subst_char_in_region_unwind,
|
|
1793 Fcons (Fcurrent_buffer (), buf->undo_list));
|
|
1794 buf->undo_list = Qt;
|
|
1795 /* Don't do file-locking. */
|
|
1796 record_unwind_protect (subst_char_in_region_unwind_1,
|
|
1797 Fcons (Fcurrent_buffer (), buf->filename));
|
|
1798 buf->filename = Qnil;
|
|
1799 }
|
|
1800
|
|
1801 mc_count = begin_multiple_change (buf, pos, stop);
|
|
1802 while (pos < stop)
|
|
1803 {
|
|
1804 if (BUF_FETCH_CHAR (buf, pos) == fromc)
|
|
1805 {
|
|
1806 /* There used to be some code here that set the buffer to
|
|
1807 unmodified if NOUNDO was specified and there was only
|
|
1808 one change to the buffer since it was last saved.
|
|
1809 This is a crock of shit, so I'm not duplicating this
|
|
1810 behavior. I think this was left over from when
|
|
1811 prepare_to_modify_buffer() actually bumped MODIFF,
|
|
1812 so that code was supposed to undo this change. --ben */
|
|
1813 buffer_replace_char (buf, pos, toc, !NILP (noundo), 0);
|
|
1814
|
|
1815 /* If noundo is not nil then we don't mark the buffer as
|
|
1816 modified. In reality that needs to happen externally
|
|
1817 only. Internally redisplay needs to know that the actual
|
|
1818 contents it should be displaying have changed. */
|
|
1819 if (!NILP (noundo))
|
|
1820 Fset_buffer_modified_p (Fbuffer_modified_p (Qnil), Qnil);
|
|
1821 }
|
|
1822 pos++;
|
|
1823 }
|
|
1824 end_multiple_change (buf, mc_count);
|
|
1825
|
771
|
1826 unbind_to (count);
|
428
|
1827 return Qnil;
|
|
1828 }
|
|
1829
|
|
1830 /* #### Shouldn't this also accept a BUFFER argument, in the good old
|
|
1831 XEmacs tradition? */
|
|
1832 DEFUN ("translate-region", Ftranslate_region, 3, 3, 0, /*
|
|
1833 Translate characters from START to END according to TABLE.
|
|
1834
|
|
1835 If TABLE is a string, the Nth character in it is the mapping for the
|
|
1836 character with code N.
|
|
1837
|
|
1838 If TABLE is a vector, its Nth element is the mapping for character
|
|
1839 with code N. The values of elements may be characters, strings, or
|
|
1840 nil (nil meaning don't replace.)
|
|
1841
|
|
1842 If TABLE is a char-table, its elements describe the mapping between
|
|
1843 characters and their replacements. The char-table should be of type
|
|
1844 `char' or `generic'.
|
|
1845
|
|
1846 Returns the number of substitutions performed.
|
|
1847 */
|
|
1848 (start, end, table))
|
|
1849 {
|
|
1850 /* This function can GC */
|
665
|
1851 Charbpos pos, stop; /* Limits of the region. */
|
428
|
1852 int cnt = 0; /* Number of changes made. */
|
|
1853 int mc_count;
|
|
1854 struct buffer *buf = current_buffer;
|
|
1855 Emchar oc;
|
|
1856
|
|
1857 get_buffer_range_char (buf, start, end, &pos, &stop, 0);
|
|
1858 mc_count = begin_multiple_change (buf, pos, stop);
|
|
1859 if (STRINGP (table))
|
|
1860 {
|
440
|
1861 Lisp_String *stable = XSTRING (table);
|
428
|
1862 Charcount size = string_char_length (stable);
|
|
1863 #ifdef MULE
|
|
1864 /* Under Mule, string_char(n) is O(n), so for large tables or
|
|
1865 large regions it makes sense to create an array of Emchars. */
|
|
1866 if (size * (stop - pos) > 65536)
|
|
1867 {
|
|
1868 Emchar *etable = alloca_array (Emchar, size);
|
665
|
1869 convert_intbyte_string_into_emchar_string
|
428
|
1870 (string_data (stable), string_length (stable), etable);
|
|
1871 for (; pos < stop && (oc = BUF_FETCH_CHAR (buf, pos), 1); pos++)
|
|
1872 {
|
|
1873 if (oc < size)
|
|
1874 {
|
|
1875 Emchar nc = etable[oc];
|
|
1876 if (nc != oc)
|
|
1877 {
|
|
1878 buffer_replace_char (buf, pos, nc, 0, 0);
|
|
1879 ++cnt;
|
|
1880 }
|
|
1881 }
|
|
1882 }
|
|
1883 }
|
|
1884 else
|
|
1885 #endif /* MULE */
|
|
1886 {
|
|
1887 for (; pos < stop && (oc = BUF_FETCH_CHAR (buf, pos), 1); pos++)
|
|
1888 {
|
|
1889 if (oc < size)
|
|
1890 {
|
|
1891 Emchar nc = string_char (stable, oc);
|
|
1892 if (nc != oc)
|
|
1893 {
|
|
1894 buffer_replace_char (buf, pos, nc, 0, 0);
|
|
1895 ++cnt;
|
|
1896 }
|
|
1897 }
|
|
1898 }
|
|
1899 }
|
|
1900 }
|
|
1901 else if (VECTORP (table))
|
|
1902 {
|
|
1903 Charcount size = XVECTOR_LENGTH (table);
|
|
1904 Lisp_Object *vtable = XVECTOR_DATA (table);
|
|
1905
|
|
1906 for (; pos < stop && (oc = BUF_FETCH_CHAR (buf, pos), 1); pos++)
|
|
1907 {
|
|
1908 if (oc < size)
|
|
1909 {
|
|
1910 Lisp_Object replacement = vtable[oc];
|
|
1911 retry:
|
|
1912 if (CHAR_OR_CHAR_INTP (replacement))
|
|
1913 {
|
|
1914 Emchar nc = XCHAR_OR_CHAR_INT (replacement);
|
|
1915 if (nc != oc)
|
|
1916 {
|
|
1917 buffer_replace_char (buf, pos, nc, 0, 0);
|
|
1918 ++cnt;
|
|
1919 }
|
|
1920 }
|
|
1921 else if (STRINGP (replacement))
|
|
1922 {
|
|
1923 Charcount incr = XSTRING_CHAR_LENGTH (replacement) - 1;
|
|
1924 buffer_delete_range (buf, pos, pos + 1, 0);
|
|
1925 buffer_insert_lisp_string_1 (buf, pos, replacement, 0);
|
|
1926 pos += incr, stop += incr;
|
|
1927 ++cnt;
|
|
1928 }
|
|
1929 else if (!NILP (replacement))
|
|
1930 {
|
|
1931 replacement = wrong_type_argument (Qchar_or_string_p, replacement);
|
|
1932 goto retry;
|
|
1933 }
|
|
1934 }
|
|
1935 }
|
|
1936 }
|
|
1937 else if (CHAR_TABLEP (table)
|
|
1938 && (XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_GENERIC
|
|
1939 || XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_CHAR))
|
|
1940 {
|
440
|
1941 Lisp_Char_Table *ctable = XCHAR_TABLE (table);
|
428
|
1942
|
|
1943 for (; pos < stop && (oc = BUF_FETCH_CHAR (buf, pos), 1); pos++)
|
|
1944 {
|
|
1945 Lisp_Object replacement = get_char_table (oc, ctable);
|
|
1946 retry2:
|
|
1947 if (CHAR_OR_CHAR_INTP (replacement))
|
|
1948 {
|
|
1949 Emchar nc = XCHAR_OR_CHAR_INT (replacement);
|
|
1950 if (nc != oc)
|
|
1951 {
|
|
1952 buffer_replace_char (buf, pos, nc, 0, 0);
|
|
1953 ++cnt;
|
|
1954 }
|
|
1955 }
|
|
1956 else if (STRINGP (replacement))
|
|
1957 {
|
|
1958 Charcount incr = XSTRING_CHAR_LENGTH (replacement) - 1;
|
|
1959 buffer_delete_range (buf, pos, pos + 1, 0);
|
|
1960 buffer_insert_lisp_string_1 (buf, pos, replacement, 0);
|
|
1961 pos += incr, stop += incr;
|
|
1962 ++cnt;
|
|
1963 }
|
|
1964 else if (!NILP (replacement))
|
|
1965 {
|
|
1966 replacement = wrong_type_argument (Qchar_or_string_p, replacement);
|
|
1967 goto retry2;
|
|
1968 }
|
|
1969 }
|
|
1970 }
|
|
1971 else
|
|
1972 dead_wrong_type_argument (Qstringp, table);
|
|
1973 end_multiple_change (buf, mc_count);
|
|
1974
|
|
1975 return make_int (cnt);
|
|
1976 }
|
|
1977
|
|
1978 DEFUN ("delete-region", Fdelete_region, 2, 3, "r", /*
|
|
1979 Delete the text between point and mark.
|
444
|
1980 When called from a program, expects two arguments START and END
|
|
1981 \(integers or markers) specifying the stretch to be deleted.
|
|
1982 If optional third arg BUFFER is nil, the current buffer is assumed.
|
428
|
1983 */
|
444
|
1984 (start, end, buffer))
|
428
|
1985 {
|
|
1986 /* This function can GC */
|
665
|
1987 Charbpos bp_start, bp_end;
|
428
|
1988 struct buffer *buf = decode_buffer (buffer, 1);
|
|
1989
|
444
|
1990 get_buffer_range_char (buf, start, end, &bp_start, &bp_end, 0);
|
|
1991 buffer_delete_range (buf, bp_start, bp_end, 0);
|
428
|
1992 return Qnil;
|
|
1993 }
|
|
1994
|
|
1995 void
|
|
1996 widen_buffer (struct buffer *b, int no_clip)
|
|
1997 {
|
|
1998 if (BUF_BEGV (b) != BUF_BEG (b))
|
|
1999 {
|
|
2000 clip_changed = 1;
|
|
2001 SET_BOTH_BUF_BEGV (b, BUF_BEG (b), BI_BUF_BEG (b));
|
|
2002 }
|
|
2003 if (BUF_ZV (b) != BUF_Z (b))
|
|
2004 {
|
|
2005 clip_changed = 1;
|
|
2006 SET_BOTH_BUF_ZV (b, BUF_Z (b), BI_BUF_Z (b));
|
|
2007 }
|
|
2008 if (clip_changed)
|
|
2009 {
|
|
2010 if (!no_clip)
|
|
2011 MARK_CLIP_CHANGED;
|
|
2012 /* Changing the buffer bounds invalidates any recorded current
|
|
2013 column. */
|
|
2014 invalidate_current_column ();
|
|
2015 narrow_line_number_cache (b);
|
|
2016 }
|
|
2017 }
|
|
2018
|
|
2019 DEFUN ("widen", Fwiden, 0, 1, "", /*
|
|
2020 Remove restrictions (narrowing) from BUFFER.
|
|
2021 This allows the buffer's full text to be seen and edited.
|
|
2022 If BUFFER is nil, the current buffer is assumed.
|
|
2023 */
|
|
2024 (buffer))
|
|
2025 {
|
|
2026 struct buffer *b = decode_buffer (buffer, 1);
|
|
2027 widen_buffer (b, 0);
|
|
2028 return Qnil;
|
|
2029 }
|
|
2030
|
|
2031 DEFUN ("narrow-to-region", Fnarrow_to_region, 2, 3, "r", /*
|
|
2032 Restrict editing in BUFFER to the current region.
|
|
2033 The rest of the text becomes temporarily invisible and untouchable
|
|
2034 but is not deleted; if you save the buffer in a file, the invisible
|
|
2035 text is included in the file. \\[widen] makes all visible again.
|
|
2036 If BUFFER is nil, the current buffer is assumed.
|
|
2037 See also `save-restriction'.
|
|
2038
|
|
2039 When calling from a program, pass two arguments; positions (integers
|
|
2040 or markers) bounding the text that should remain visible.
|
|
2041 */
|
444
|
2042 (start, end, buffer))
|
428
|
2043 {
|
665
|
2044 Charbpos bp_start, bp_end;
|
428
|
2045 struct buffer *buf = decode_buffer (buffer, 1);
|
665
|
2046 Bytebpos bi_start, bi_end;
|
428
|
2047
|
444
|
2048 get_buffer_range_char (buf, start, end, &bp_start, &bp_end,
|
|
2049 GB_ALLOW_PAST_ACCESSIBLE);
|
665
|
2050 bi_start = charbpos_to_bytebpos (buf, bp_start);
|
|
2051 bi_end = charbpos_to_bytebpos (buf, bp_end);
|
428
|
2052
|
444
|
2053 SET_BOTH_BUF_BEGV (buf, bp_start, bi_start);
|
|
2054 SET_BOTH_BUF_ZV (buf, bp_end, bi_end);
|
|
2055 if (BUF_PT (buf) < bp_start)
|
|
2056 BUF_SET_PT (buf, bp_start);
|
|
2057 if (BUF_PT (buf) > bp_end)
|
|
2058 BUF_SET_PT (buf, bp_end);
|
428
|
2059 MARK_CLIP_CHANGED;
|
|
2060 /* Changing the buffer bounds invalidates any recorded current column. */
|
|
2061 invalidate_current_column ();
|
|
2062 narrow_line_number_cache (buf);
|
|
2063 return Qnil;
|
|
2064 }
|
|
2065
|
|
2066 Lisp_Object
|
|
2067 save_restriction_save (void)
|
|
2068 {
|
|
2069 Lisp_Object bottom, top;
|
|
2070 /* Note: I tried using markers here, but it does not win
|
|
2071 because insertion at the end of the saved region
|
|
2072 does not advance mh and is considered "outside" the saved region. */
|
|
2073 bottom = make_int (BUF_BEGV (current_buffer) - BUF_BEG (current_buffer));
|
|
2074 top = make_int (BUF_Z (current_buffer) - BUF_ZV (current_buffer));
|
|
2075
|
|
2076 return noseeum_cons (Fcurrent_buffer (), noseeum_cons (bottom, top));
|
|
2077 }
|
|
2078
|
|
2079 Lisp_Object
|
|
2080 save_restriction_restore (Lisp_Object data)
|
|
2081 {
|
|
2082 struct buffer *buf;
|
|
2083 Charcount newhead, newtail;
|
|
2084 Lisp_Object tem;
|
|
2085 int local_clip_changed = 0;
|
|
2086
|
|
2087 buf = XBUFFER (XCAR (data));
|
|
2088 if (!BUFFER_LIVE_P (buf))
|
|
2089 {
|
|
2090 /* someone could have killed the buffer in the meantime ... */
|
|
2091 free_cons (XCONS (XCDR (data)));
|
|
2092 free_cons (XCONS (data));
|
|
2093 return Qnil;
|
|
2094 }
|
|
2095 tem = XCDR (data);
|
|
2096 newhead = XINT (XCAR (tem));
|
|
2097 newtail = XINT (XCDR (tem));
|
|
2098
|
|
2099 free_cons (XCONS (XCDR (data)));
|
|
2100 free_cons (XCONS (data));
|
|
2101
|
|
2102 if (newhead + newtail > BUF_Z (buf) - BUF_BEG (buf))
|
|
2103 {
|
|
2104 newhead = 0;
|
|
2105 newtail = 0;
|
|
2106 }
|
|
2107
|
|
2108 {
|
665
|
2109 Charbpos start, end;
|
|
2110 Bytebpos bi_start, bi_end;
|
428
|
2111
|
|
2112 start = BUF_BEG (buf) + newhead;
|
|
2113 end = BUF_Z (buf) - newtail;
|
|
2114
|
665
|
2115 bi_start = charbpos_to_bytebpos (buf, start);
|
|
2116 bi_end = charbpos_to_bytebpos (buf, end);
|
428
|
2117
|
|
2118 if (BUF_BEGV (buf) != start)
|
|
2119 {
|
|
2120 local_clip_changed = 1;
|
|
2121 SET_BOTH_BUF_BEGV (buf, start, bi_start);
|
|
2122 narrow_line_number_cache (buf);
|
|
2123 }
|
|
2124 if (BUF_ZV (buf) != end)
|
|
2125 {
|
|
2126 local_clip_changed = 1;
|
|
2127 SET_BOTH_BUF_ZV (buf, end, bi_end);
|
|
2128 }
|
|
2129 }
|
|
2130 if (local_clip_changed)
|
|
2131 MARK_CLIP_CHANGED;
|
|
2132
|
|
2133 /* If point is outside the new visible range, move it inside. */
|
|
2134 BUF_SET_PT (buf,
|
665
|
2135 charbpos_clip_to_bounds (BUF_BEGV (buf),
|
428
|
2136 BUF_PT (buf),
|
|
2137 BUF_ZV (buf)));
|
|
2138
|
|
2139 return Qnil;
|
|
2140 }
|
|
2141
|
|
2142 DEFUN ("save-restriction", Fsave_restriction, 0, UNEVALLED, 0, /*
|
|
2143 Execute BODY, saving and restoring current buffer's restrictions.
|
|
2144 The buffer's restrictions make parts of the beginning and end invisible.
|
|
2145 \(They are set up with `narrow-to-region' and eliminated with `widen'.)
|
|
2146 This special form, `save-restriction', saves the current buffer's restrictions
|
|
2147 when it is entered, and restores them when it is exited.
|
|
2148 So any `narrow-to-region' within BODY lasts only until the end of the form.
|
|
2149 The old restrictions settings are restored
|
|
2150 even in case of abnormal exit (throw or error).
|
|
2151
|
|
2152 The value returned is the value of the last form in BODY.
|
|
2153
|
|
2154 `save-restriction' can get confused if, within the BODY, you widen
|
|
2155 and then make changes outside the area within the saved restrictions.
|
|
2156
|
|
2157 Note: if you are using both `save-excursion' and `save-restriction',
|
|
2158 use `save-excursion' outermost:
|
|
2159 (save-excursion (save-restriction ...))
|
|
2160 */
|
|
2161 (body))
|
|
2162 {
|
|
2163 /* This function can GC */
|
|
2164 int speccount = specpdl_depth ();
|
|
2165
|
|
2166 record_unwind_protect (save_restriction_restore, save_restriction_save ());
|
|
2167
|
771
|
2168 return unbind_to_1 (speccount, Fprogn (body));
|
428
|
2169 }
|
|
2170
|
|
2171
|
|
2172 DEFUN ("format", Fformat, 1, MANY, 0, /*
|
|
2173 Format a string out of a control-string and arguments.
|
|
2174 The first argument is a control string.
|
|
2175 The other arguments are substituted into it to make the result, a string.
|
|
2176 It may contain %-sequences meaning to substitute the next argument.
|
|
2177 %s means print all objects as-is, using `princ'.
|
|
2178 %S means print all objects as s-expressions, using `prin1'.
|
|
2179 %d or %i means print as an integer in decimal (%o octal, %x lowercase hex,
|
|
2180 %X uppercase hex).
|
|
2181 %c means print as a single character.
|
|
2182 %f means print as a floating-point number in fixed notation (e.g. 785.200).
|
|
2183 %e or %E means print as a floating-point number in scientific notation
|
|
2184 (e.g. 7.85200e+03).
|
|
2185 %g or %G means print as a floating-point number in "pretty format";
|
|
2186 depending on the number, either %f or %e/%E format will be used, and
|
|
2187 trailing zeroes are removed from the fractional part.
|
|
2188 The argument used for all but %s and %S must be a number. It will be
|
|
2189 converted to an integer or a floating-point number as necessary.
|
|
2190
|
|
2191 %$ means reposition to read a specific numbered argument; for example,
|
|
2192 %3$s would apply the `%s' to the third argument after the control string,
|
|
2193 and the next format directive would use the fourth argument, the
|
|
2194 following one the fifth argument, etc. (There must be a positive integer
|
|
2195 between the % and the $).
|
|
2196 Zero or more of the flag characters `-', `+', ` ', `0', and `#' may be
|
|
2197 specified between the optional repositioning spec and the conversion
|
|
2198 character; see below.
|
|
2199 An optional minimum field width may be specified after any flag characters
|
|
2200 and before the conversion character; it specifies the minimum number of
|
|
2201 characters that the converted argument will take up. Padding will be
|
|
2202 added on the left (or on the right, if the `-' flag is specified), as
|
|
2203 necessary. Padding is done with spaces, or with zeroes if the `0' flag
|
|
2204 is specified.
|
|
2205 If the field width is specified as `*', the field width is assumed to have
|
|
2206 been specified as an argument. Any repositioning specification that
|
|
2207 would normally specify the argument to be converted will now specify
|
|
2208 where to find this field width argument, not where to find the argument
|
|
2209 to be converted. If there is no repositioning specification, the normal
|
|
2210 next argument is used. The argument to be converted will be the next
|
|
2211 argument after the field width argument unless the precision is also
|
|
2212 specified as `*' (see below).
|
|
2213
|
|
2214 An optional period character and precision may be specified after any
|
|
2215 minimum field width. It specifies the minimum number of digits to
|
|
2216 appear in %d, %i, %o, %x, and %X conversions (the number is padded
|
|
2217 on the left with zeroes as necessary); the number of digits printed
|
|
2218 after the decimal point for %f, %e, and %E conversions; the number
|
|
2219 of significant digits printed in %g and %G conversions; and the
|
|
2220 maximum number of non-padding characters printed in %s and %S
|
|
2221 conversions. The default precision for floating-point conversions
|
|
2222 is six.
|
|
2223 If the precision is specified as `*', the precision is assumed to have been
|
|
2224 specified as an argument. The argument used will be the next argument
|
|
2225 after the field width argument, if any. If the field width was not
|
|
2226 specified as an argument, any repositioning specification that would
|
|
2227 normally specify the argument to be converted will now specify where to
|
|
2228 find the precision argument. If there is no repositioning specification,
|
|
2229 the normal next argument is used.
|
|
2230
|
|
2231 The ` ' and `+' flags mean prefix non-negative numbers with a space or
|
|
2232 plus sign, respectively.
|
|
2233 The `#' flag means print numbers in an alternate, more verbose format:
|
|
2234 octal numbers begin with zero; hex numbers begin with a 0x or 0X;
|
|
2235 a decimal point is printed in %f, %e, and %E conversions even if no
|
|
2236 numbers are printed after it; and trailing zeroes are not omitted in
|
|
2237 %g and %G conversions.
|
|
2238
|
|
2239 Use %% to put a single % into the output.
|
|
2240 */
|
|
2241 (int nargs, Lisp_Object *args))
|
|
2242 {
|
|
2243 /* It should not be necessary to GCPRO ARGS, because
|
|
2244 the caller in the interpreter should take care of that. */
|
|
2245
|
|
2246 CHECK_STRING (args[0]);
|
771
|
2247 return emacs_vsprintf_string_lisp (0, args[0], nargs - 1, args + 1);
|
428
|
2248 }
|
|
2249
|
|
2250
|
|
2251 DEFUN ("char-equal", Fchar_equal, 2, 3, 0, /*
|
|
2252 Return t if two characters match, optionally ignoring case.
|
|
2253 Both arguments must be characters (i.e. NOT integers).
|
|
2254 Case is ignored if `case-fold-search' is non-nil in BUFFER.
|
|
2255 If BUFFER is nil, the current buffer is assumed.
|
|
2256 */
|
444
|
2257 (character1, character2, buffer))
|
428
|
2258 {
|
|
2259 Emchar x1, x2;
|
|
2260 struct buffer *b = decode_buffer (buffer, 1);
|
|
2261
|
444
|
2262 CHECK_CHAR_COERCE_INT (character1);
|
|
2263 CHECK_CHAR_COERCE_INT (character2);
|
|
2264 x1 = XCHAR (character1);
|
|
2265 x2 = XCHAR (character2);
|
428
|
2266
|
|
2267 return (!NILP (b->case_fold_search)
|
|
2268 ? DOWNCASE (b, x1) == DOWNCASE (b, x2)
|
|
2269 : x1 == x2)
|
|
2270 ? Qt : Qnil;
|
|
2271 }
|
|
2272
|
434
|
2273 DEFUN ("char=", Fchar_Equal, 2, 2, 0, /*
|
428
|
2274 Return t if two characters match, case is significant.
|
|
2275 Both arguments must be characters (i.e. NOT integers).
|
|
2276 */
|
444
|
2277 (character1, character2))
|
428
|
2278 {
|
444
|
2279 CHECK_CHAR_COERCE_INT (character1);
|
|
2280 CHECK_CHAR_COERCE_INT (character2);
|
428
|
2281
|
444
|
2282 return EQ (character1, character2) ? Qt : Qnil;
|
428
|
2283 }
|
|
2284
|
|
2285 #if 0 /* Undebugged FSFmacs code */
|
|
2286 /* Transpose the markers in two regions of the current buffer, and
|
|
2287 adjust the ones between them if necessary (i.e.: if the regions
|
|
2288 differ in size).
|
|
2289
|
|
2290 Traverses the entire marker list of the buffer to do so, adding an
|
|
2291 appropriate amount to some, subtracting from some, and leaving the
|
|
2292 rest untouched. Most of this is copied from adjust_markers in insdel.c.
|
|
2293
|
|
2294 It's the caller's job to see that (start1 <= end1 <= start2 <= end2). */
|
|
2295
|
|
2296 void
|
665
|
2297 transpose_markers (Charbpos start1, Charbpos end1, Charbpos start2, Charbpos end2)
|
428
|
2298 {
|
|
2299 Charcount amt1, amt2, diff;
|
|
2300 Lisp_Object marker;
|
|
2301 struct buffer *buf = current_buffer;
|
|
2302
|
|
2303 /* Update point as if it were a marker. */
|
|
2304 if (BUF_PT (buf) < start1)
|
|
2305 ;
|
|
2306 else if (BUF_PT (buf) < end1)
|
|
2307 BUF_SET_PT (buf, BUF_PT (buf) + (end2 - end1));
|
|
2308 else if (BUF_PT (buf) < start2)
|
|
2309 BUF_SET_PT (buf, BUF_PT (buf) + (end2 - start2) - (end1 - start1));
|
|
2310 else if (BUF_PT (buf) < end2)
|
|
2311 BUF_SET_PT (buf, BUF_PT (buf) - (start2 - start1));
|
|
2312
|
|
2313 /* We used to adjust the endpoints here to account for the gap, but that
|
|
2314 isn't good enough. Even if we assume the caller has tried to move the
|
|
2315 gap out of our way, it might still be at start1 exactly, for example;
|
|
2316 and that places it `inside' the interval, for our purposes. The amount
|
|
2317 of adjustment is nontrivial if there's a `denormalized' marker whose
|
|
2318 position is between GPT and GPT + GAP_SIZE, so it's simpler to leave
|
|
2319 the dirty work to Fmarker_position, below. */
|
|
2320
|
|
2321 /* The difference between the region's lengths */
|
|
2322 diff = (end2 - start2) - (end1 - start1);
|
|
2323
|
|
2324 /* For shifting each marker in a region by the length of the other
|
|
2325 * region plus the distance between the regions.
|
|
2326 */
|
|
2327 amt1 = (end2 - start2) + (start2 - end1);
|
|
2328 amt2 = (end1 - start1) + (start2 - end1);
|
|
2329
|
|
2330 for (marker = BUF_MARKERS (buf); !NILP (marker);
|
|
2331 marker = XMARKER (marker)->chain)
|
|
2332 {
|
665
|
2333 Charbpos mpos = marker_position (marker);
|
428
|
2334 if (mpos >= start1 && mpos < end2)
|
|
2335 {
|
|
2336 if (mpos < end1)
|
|
2337 mpos += amt1;
|
|
2338 else if (mpos < start2)
|
|
2339 mpos += diff;
|
|
2340 else
|
|
2341 mpos -= amt2;
|
|
2342 set_marker_position (marker, mpos);
|
|
2343 }
|
|
2344 }
|
|
2345 }
|
|
2346
|
|
2347 #endif /* 0 */
|
|
2348
|
|
2349 DEFUN ("transpose-regions", Ftranspose_regions, 4, 5, 0, /*
|
|
2350 Transpose region START1 to END1 with START2 to END2.
|
|
2351 The regions may not be overlapping, because the size of the buffer is
|
|
2352 never changed in a transposition.
|
|
2353
|
444
|
2354 Optional fifth arg LEAVE-MARKERS, if non-nil, means don't transpose
|
428
|
2355 any markers that happen to be located in the regions. (#### BUG: currently
|
444
|
2356 this function always acts as if LEAVE-MARKERS is non-nil.)
|
428
|
2357
|
|
2358 Transposing beyond buffer boundaries is an error.
|
|
2359 */
|
444
|
2360 (start1, end1, start2, end2, leave_markers))
|
428
|
2361 {
|
665
|
2362 Charbpos startr1, endr1, startr2, endr2;
|
428
|
2363 Charcount len1, len2;
|
|
2364 Lisp_Object string1, string2;
|
|
2365 struct buffer *buf = current_buffer;
|
|
2366
|
444
|
2367 get_buffer_range_char (buf, start1, end1, &startr1, &endr1, 0);
|
|
2368 get_buffer_range_char (buf, start2, end2, &startr2, &endr2, 0);
|
428
|
2369
|
444
|
2370 len1 = endr1 - startr1;
|
|
2371 len2 = endr2 - startr2;
|
428
|
2372
|
444
|
2373 if (startr2 < endr1)
|
563
|
2374 invalid_argument ("transposed regions not properly ordered", Qunbound);
|
444
|
2375 else if (startr1 == endr1 || startr2 == endr2)
|
563
|
2376 invalid_argument ("transposed region may not be of length 0", Qunbound);
|
428
|
2377
|
444
|
2378 string1 = make_string_from_buffer (buf, startr1, len1);
|
|
2379 string2 = make_string_from_buffer (buf, startr2, len2);
|
|
2380 buffer_delete_range (buf, startr2, endr2, 0);
|
|
2381 buffer_insert_lisp_string_1 (buf, startr2, string1, 0);
|
|
2382 buffer_delete_range (buf, startr1, endr1, 0);
|
|
2383 buffer_insert_lisp_string_1 (buf, startr1, string2, 0);
|
428
|
2384
|
|
2385 /* In FSFmacs there is a whole bunch of really ugly code here
|
|
2386 to attempt to transpose the regions without using up any
|
|
2387 extra memory. Although the intent may be good, the result
|
|
2388 was highly bogus. */
|
|
2389
|
|
2390 return Qnil;
|
|
2391 }
|
|
2392
|
|
2393
|
|
2394 /************************************************************************/
|
|
2395 /* initialization */
|
|
2396 /************************************************************************/
|
|
2397
|
|
2398 void
|
|
2399 syms_of_editfns (void)
|
|
2400 {
|
563
|
2401 DEFSYMBOL (Qpoint);
|
|
2402 DEFSYMBOL (Qmark);
|
|
2403 DEFSYMBOL (Qregion_beginning);
|
|
2404 DEFSYMBOL (Qregion_end);
|
|
2405 DEFSYMBOL (Qformat);
|
|
2406 DEFSYMBOL (Quser_files_and_directories);
|
428
|
2407
|
|
2408 DEFSUBR (Fchar_equal);
|
|
2409 DEFSUBR (Fchar_Equal);
|
|
2410 DEFSUBR (Fgoto_char);
|
|
2411 DEFSUBR (Fstring_to_char);
|
|
2412 DEFSUBR (Fchar_to_string);
|
|
2413 DEFSUBR (Fbuffer_substring);
|
|
2414 DEFSUBR (Fbuffer_substring_no_properties);
|
|
2415
|
|
2416 DEFSUBR (Fpoint_marker);
|
|
2417 DEFSUBR (Fmark_marker);
|
|
2418 DEFSUBR (Fpoint);
|
|
2419 DEFSUBR (Fregion_beginning);
|
|
2420 DEFSUBR (Fregion_end);
|
|
2421 DEFSUBR (Fsave_excursion);
|
|
2422 DEFSUBR (Fsave_current_buffer);
|
|
2423
|
|
2424 DEFSUBR (Fbuffer_size);
|
|
2425 DEFSUBR (Fpoint_max);
|
|
2426 DEFSUBR (Fpoint_min);
|
|
2427 DEFSUBR (Fpoint_min_marker);
|
|
2428 DEFSUBR (Fpoint_max_marker);
|
|
2429
|
|
2430 DEFSUBR (Fbobp);
|
|
2431 DEFSUBR (Feobp);
|
|
2432 DEFSUBR (Fbolp);
|
|
2433 DEFSUBR (Feolp);
|
|
2434 DEFSUBR (Ffollowing_char);
|
|
2435 DEFSUBR (Fpreceding_char);
|
|
2436 DEFSUBR (Fchar_after);
|
|
2437 DEFSUBR (Fchar_before);
|
|
2438 DEFSUBR (Finsert);
|
|
2439 DEFSUBR (Finsert_string);
|
|
2440 DEFSUBR (Finsert_before_markers);
|
|
2441 DEFSUBR (Finsert_char);
|
|
2442
|
|
2443 DEFSUBR (Ftemp_directory);
|
|
2444 DEFSUBR (Fuser_login_name);
|
|
2445 DEFSUBR (Fuser_real_login_name);
|
|
2446 DEFSUBR (Fuser_uid);
|
|
2447 DEFSUBR (Fuser_real_uid);
|
|
2448 DEFSUBR (Fuser_full_name);
|
|
2449 DEFSUBR (Fuser_home_directory);
|
|
2450 DEFSUBR (Femacs_pid);
|
|
2451 DEFSUBR (Fcurrent_time);
|
|
2452 DEFSUBR (Fcurrent_process_time);
|
|
2453 DEFSUBR (Fformat_time_string);
|
|
2454 DEFSUBR (Fdecode_time);
|
|
2455 DEFSUBR (Fencode_time);
|
|
2456 DEFSUBR (Fcurrent_time_string);
|
|
2457 DEFSUBR (Fcurrent_time_zone);
|
|
2458 DEFSUBR (Fset_time_zone_rule);
|
|
2459 DEFSUBR (Fsystem_name);
|
|
2460 DEFSUBR (Fformat);
|
|
2461
|
|
2462 DEFSUBR (Finsert_buffer_substring);
|
|
2463 DEFSUBR (Fcompare_buffer_substrings);
|
|
2464 DEFSUBR (Fsubst_char_in_region);
|
|
2465 DEFSUBR (Ftranslate_region);
|
|
2466 DEFSUBR (Fdelete_region);
|
|
2467 DEFSUBR (Fwiden);
|
|
2468 DEFSUBR (Fnarrow_to_region);
|
|
2469 DEFSUBR (Fsave_restriction);
|
|
2470 DEFSUBR (Ftranspose_regions);
|
|
2471
|
563
|
2472 DEFSYMBOL (Qzmacs_update_region);
|
|
2473 DEFSYMBOL (Qzmacs_deactivate_region);
|
|
2474 DEFSYMBOL (Qzmacs_region_buffer);
|
428
|
2475 }
|
|
2476
|
|
2477 void
|
|
2478 vars_of_editfns (void)
|
|
2479 {
|
|
2480 staticpro (&Vsystem_name);
|
|
2481 #if 0
|
|
2482 staticpro (&Vuser_name);
|
|
2483 staticpro (&Vuser_real_name);
|
|
2484 #endif
|
|
2485 DEFVAR_BOOL ("zmacs-regions", &zmacs_regions /*
|
|
2486 *Whether LISPM-style active regions should be used.
|
|
2487 This means that commands which operate on the region (the area between the
|
|
2488 point and the mark) will only work while the region is in the ``active''
|
|
2489 state, which is indicated by highlighting. Executing most commands causes
|
|
2490 the region to not be in the active state, so (for example) \\[kill-region] will only
|
|
2491 work immediately after activating the region.
|
|
2492
|
|
2493 More specifically:
|
|
2494
|
|
2495 - Commands which operate on the region only work if the region is active.
|
|
2496 - Only a very small set of commands cause the region to become active:
|
444
|
2497 Those commands whose semantics are to mark an area, like `mark-defun'.
|
428
|
2498 - The region is deactivated after each command that is executed, except that:
|
|
2499 - "Motion" commands do not change whether the region is active or not.
|
|
2500
|
|
2501 set-mark-command (C-SPC) pushes a mark and activates the region. Moving the
|
|
2502 cursor with normal motion commands (C-n, C-p, etc) will cause the region
|
|
2503 between point and the recently-pushed mark to be highlighted. It will
|
|
2504 remain highlighted until some non-motion command is executed.
|
|
2505
|
|
2506 exchange-point-and-mark (\\[exchange-point-and-mark]) activates the region. So if you mark a
|
|
2507 region and execute a command that operates on it, you can reactivate the
|
|
2508 same region with \\[exchange-point-and-mark] (or perhaps \\[exchange-point-and-mark] \\[exchange-point-and-mark]) to operate on it
|
|
2509 again.
|
|
2510
|
|
2511 Generally, commands which push marks as a means of navigation (like
|
|
2512 beginning-of-buffer and end-of-buffer (M-< and M->)) do not activate the
|
|
2513 region. But commands which push marks as a means of marking an area of
|
|
2514 text (like mark-defun (\\[mark-defun]), mark-word (\\[mark-word]) or mark-whole-buffer (\\[mark-whole-buffer]))
|
|
2515 do activate the region.
|
|
2516
|
|
2517 The way the command loop actually works with regard to deactivating the
|
|
2518 region is as follows:
|
|
2519
|
|
2520 - If the variable `zmacs-region-stays' has been set to t during the command
|
|
2521 just executed, the region is left alone (this is how the motion commands
|
|
2522 make the region stay around; see the `_' flag in the `interactive'
|
|
2523 specification). `zmacs-region-stays' is reset to nil before each command
|
|
2524 is executed.
|
|
2525 - If the function `zmacs-activate-region' has been called during the command
|
|
2526 just executed, the region is left alone. Very few functions should
|
|
2527 actually call this function.
|
|
2528 - Otherwise, if the region is active, the region is deactivated and
|
|
2529 the `zmacs-deactivate-region-hook' is called.
|
|
2530 */ );
|
|
2531 /* Zmacs style active regions are now ON by default */
|
|
2532 zmacs_regions = 1;
|
|
2533
|
|
2534 DEFVAR_BOOL ("zmacs-region-active-p", &zmacs_region_active_p /*
|
|
2535 Do not alter this. It is for internal use only.
|
|
2536 */ );
|
|
2537 zmacs_region_active_p = 0;
|
|
2538
|
|
2539 DEFVAR_BOOL ("zmacs-region-stays", &zmacs_region_stays /*
|
|
2540 Whether the current command will deactivate the region.
|
|
2541 Commands which do not wish to affect whether the region is currently
|
|
2542 highlighted should set this to t. Normally, the region is turned off after
|
|
2543 executing each command that did not explicitly turn it on with the function
|
|
2544 zmacs-activate-region. Setting this to true lets a command be non-intrusive.
|
|
2545 See the variable `zmacs-regions'.
|
|
2546
|
|
2547 The same effect can be achieved using the `_' interactive specification.
|
442
|
2548
|
|
2549 `zmacs-region-stays' is reset to nil before each command is executed.
|
428
|
2550 */ );
|
|
2551 zmacs_region_stays = 0;
|
|
2552
|
|
2553 DEFVAR_BOOL ("atomic-extent-goto-char-p", &atomic_extent_goto_char_p /*
|
|
2554 Do not use this -- it will be going away soon.
|
|
2555 Indicates if `goto-char' has just been run. This information is allegedly
|
|
2556 needed to get the desired behavior for atomic extents and unfortunately
|
|
2557 is not available by any other means.
|
|
2558 */ );
|
|
2559 atomic_extent_goto_char_p = 0;
|
|
2560 #ifdef AMPERSAND_FULL_NAME
|
771
|
2561 Fprovide (intern ("ampersand-full-name"));
|
428
|
2562 #endif
|
|
2563
|
|
2564 DEFVAR_LISP ("user-full-name", &Vuser_full_name /*
|
|
2565 *The name of the user.
|
|
2566 The function `user-full-name', which will return the value of this
|
|
2567 variable, when called without arguments.
|
|
2568 This is initialized to the value of the NAME environment variable.
|
|
2569 */ );
|
|
2570 /* Initialized at run-time. */
|
|
2571 Vuser_full_name = Qnil;
|
|
2572 }
|