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