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