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