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