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