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