]> code.delx.au - gnu-emacs/blob - src/editfns.c
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-66
[gnu-emacs] / src / editfns.c
1 /* Lisp functions pertaining to editing.
2 Copyright (C) 1985,86,87,89,93,94,95,96,97,98,1999,2000,01,02,03,2004
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22
23 #include <config.h>
24 #include <sys/types.h>
25
26 #ifdef VMS
27 #include "vms-pwd.h"
28 #else
29 #include <pwd.h>
30 #endif
31
32 #ifdef HAVE_UNISTD_H
33 #include <unistd.h>
34 #endif
35
36 /* Without this, sprintf on Mac OS Classic will produce wrong
37 result. */
38 #ifdef MAC_OS8
39 #include <stdio.h>
40 #endif
41
42 #include <ctype.h>
43
44 #include "lisp.h"
45 #include "intervals.h"
46 #include "buffer.h"
47 #include "character.h"
48 #include "coding.h"
49 #include "frame.h"
50 #include "window.h"
51
52 #include "systime.h"
53
54 #ifdef STDC_HEADERS
55 #include <float.h>
56 #define MAX_10_EXP DBL_MAX_10_EXP
57 #else
58 #define MAX_10_EXP 310
59 #endif
60
61 #ifndef NULL
62 #define NULL 0
63 #endif
64
65 #ifndef USE_CRT_DLL
66 extern char **environ;
67 #endif
68
69 extern Lisp_Object make_time P_ ((time_t));
70 extern size_t emacs_strftimeu P_ ((char *, size_t, const char *,
71 const struct tm *, int));
72 static int tm_diff P_ ((struct tm *, struct tm *));
73 static void find_field P_ ((Lisp_Object, Lisp_Object, Lisp_Object, int *, Lisp_Object, int *));
74 static void update_buffer_properties P_ ((int, int));
75 static Lisp_Object region_limit P_ ((int));
76 int lisp_time_argument P_ ((Lisp_Object, time_t *, int *));
77 static size_t emacs_memftimeu P_ ((char *, size_t, const char *,
78 size_t, const struct tm *, int));
79 static void general_insert_function P_ ((void (*) (const unsigned char *, int),
80 void (*) (Lisp_Object, int, int, int,
81 int, int),
82 int, int, Lisp_Object *));
83 static Lisp_Object subst_char_in_region_unwind P_ ((Lisp_Object));
84 static Lisp_Object subst_char_in_region_unwind_1 P_ ((Lisp_Object));
85 static void transpose_markers P_ ((int, int, int, int, int, int, int, int));
86
87 #ifdef HAVE_INDEX
88 extern char *index P_ ((const char *, int));
89 #endif
90
91 Lisp_Object Vbuffer_access_fontify_functions;
92 Lisp_Object Qbuffer_access_fontify_functions;
93 Lisp_Object Vbuffer_access_fontified_property;
94
95 Lisp_Object Fuser_full_name P_ ((Lisp_Object));
96
97 /* Non-nil means don't stop at field boundary in text motion commands. */
98
99 Lisp_Object Vinhibit_field_text_motion;
100
101 /* Some static data, and a function to initialize it for each run */
102
103 Lisp_Object Vsystem_name;
104 Lisp_Object Vuser_real_login_name; /* login name of current user ID */
105 Lisp_Object Vuser_full_name; /* full name of current user */
106 Lisp_Object Vuser_login_name; /* user name from LOGNAME or USER */
107
108 /* Symbol for the text property used to mark fields. */
109
110 Lisp_Object Qfield;
111
112 /* A special value for Qfield properties. */
113
114 Lisp_Object Qboundary;
115
116
117 void
118 init_editfns ()
119 {
120 char *user_name;
121 register unsigned char *p;
122 struct passwd *pw; /* password entry for the current user */
123 Lisp_Object tem;
124
125 /* Set up system_name even when dumping. */
126 init_system_name ();
127
128 #ifndef CANNOT_DUMP
129 /* Don't bother with this on initial start when just dumping out */
130 if (!initialized)
131 return;
132 #endif /* not CANNOT_DUMP */
133
134 pw = (struct passwd *) getpwuid (getuid ());
135 #ifdef MSDOS
136 /* We let the real user name default to "root" because that's quite
137 accurate on MSDOG and because it lets Emacs find the init file.
138 (The DVX libraries override the Djgpp libraries here.) */
139 Vuser_real_login_name = build_string (pw ? pw->pw_name : "root");
140 #else
141 Vuser_real_login_name = build_string (pw ? pw->pw_name : "unknown");
142 #endif
143
144 /* Get the effective user name, by consulting environment variables,
145 or the effective uid if those are unset. */
146 user_name = (char *) getenv ("LOGNAME");
147 if (!user_name)
148 #ifdef WINDOWSNT
149 user_name = (char *) getenv ("USERNAME"); /* it's USERNAME on NT */
150 #else /* WINDOWSNT */
151 user_name = (char *) getenv ("USER");
152 #endif /* WINDOWSNT */
153 if (!user_name)
154 {
155 pw = (struct passwd *) getpwuid (geteuid ());
156 user_name = (char *) (pw ? pw->pw_name : "unknown");
157 }
158 Vuser_login_name = build_string (user_name);
159
160 /* If the user name claimed in the environment vars differs from
161 the real uid, use the claimed name to find the full name. */
162 tem = Fstring_equal (Vuser_login_name, Vuser_real_login_name);
163 Vuser_full_name = Fuser_full_name (NILP (tem)? make_number (geteuid())
164 : Vuser_login_name);
165
166 p = (unsigned char *) getenv ("NAME");
167 if (p)
168 Vuser_full_name = build_string (p);
169 else if (NILP (Vuser_full_name))
170 Vuser_full_name = build_string ("unknown");
171 }
172 \f
173 DEFUN ("char-to-string", Fchar_to_string, Schar_to_string, 1, 1, 0,
174 doc: /* Convert arg CHAR to a string containing that character.
175 usage: (char-to-string CHAR) */)
176 (character)
177 Lisp_Object character;
178 {
179 int len;
180 unsigned char str[MAX_MULTIBYTE_LENGTH];
181
182 CHECK_NUMBER (character);
183
184 len = CHAR_STRING (XFASTINT (character), str);
185 return make_string_from_bytes (str, 1, len);
186 }
187
188 DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0,
189 doc: /* Convert arg STRING to a character, the first character of that string.
190 A multibyte character is handled correctly. */)
191 (string)
192 register Lisp_Object string;
193 {
194 register Lisp_Object val;
195 CHECK_STRING (string);
196 if (SCHARS (string))
197 {
198 if (STRING_MULTIBYTE (string))
199 XSETFASTINT (val, STRING_CHAR (SDATA (string), SBYTES (string)));
200 else
201 XSETFASTINT (val, SREF (string, 0));
202 }
203 else
204 XSETFASTINT (val, 0);
205 return val;
206 }
207 \f
208 static Lisp_Object
209 buildmark (charpos, bytepos)
210 int charpos, bytepos;
211 {
212 register Lisp_Object mark;
213 mark = Fmake_marker ();
214 set_marker_both (mark, Qnil, charpos, bytepos);
215 return mark;
216 }
217
218 DEFUN ("point", Fpoint, Spoint, 0, 0, 0,
219 doc: /* Return value of point, as an integer.
220 Beginning of buffer is position (point-min). */)
221 ()
222 {
223 Lisp_Object temp;
224 XSETFASTINT (temp, PT);
225 return temp;
226 }
227
228 DEFUN ("point-marker", Fpoint_marker, Spoint_marker, 0, 0, 0,
229 doc: /* Return value of point, as a marker object. */)
230 ()
231 {
232 return buildmark (PT, PT_BYTE);
233 }
234
235 int
236 clip_to_bounds (lower, num, upper)
237 int lower, num, upper;
238 {
239 if (num < lower)
240 return lower;
241 else if (num > upper)
242 return upper;
243 else
244 return num;
245 }
246
247 DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ",
248 doc: /* Set point to POSITION, a number or marker.
249 Beginning of buffer is position (point-min), end is (point-max). */)
250 (position)
251 register Lisp_Object position;
252 {
253 int pos;
254
255 if (MARKERP (position)
256 && current_buffer == XMARKER (position)->buffer)
257 {
258 pos = marker_position (position);
259 if (pos < BEGV)
260 SET_PT_BOTH (BEGV, BEGV_BYTE);
261 else if (pos > ZV)
262 SET_PT_BOTH (ZV, ZV_BYTE);
263 else
264 SET_PT_BOTH (pos, marker_byte_position (position));
265
266 return position;
267 }
268
269 CHECK_NUMBER_COERCE_MARKER (position);
270
271 pos = clip_to_bounds (BEGV, XINT (position), ZV);
272 SET_PT (pos);
273 return position;
274 }
275
276
277 /* Return the start or end position of the region.
278 BEGINNINGP non-zero means return the start.
279 If there is no region active, signal an error. */
280
281 static Lisp_Object
282 region_limit (beginningp)
283 int beginningp;
284 {
285 extern Lisp_Object Vmark_even_if_inactive; /* Defined in callint.c. */
286 Lisp_Object m;
287
288 if (!NILP (Vtransient_mark_mode)
289 && NILP (Vmark_even_if_inactive)
290 && NILP (current_buffer->mark_active))
291 Fsignal (Qmark_inactive, Qnil);
292
293 m = Fmarker_position (current_buffer->mark);
294 if (NILP (m))
295 error ("The mark is not set now, so there is no region");
296
297 if ((PT < XFASTINT (m)) == (beginningp != 0))
298 m = make_number (PT);
299 return m;
300 }
301
302 DEFUN ("region-beginning", Fregion_beginning, Sregion_beginning, 0, 0, 0,
303 doc: /* Return position of beginning of region, as an integer. */)
304 ()
305 {
306 return region_limit (1);
307 }
308
309 DEFUN ("region-end", Fregion_end, Sregion_end, 0, 0, 0,
310 doc: /* Return position of end of region, as an integer. */)
311 ()
312 {
313 return region_limit (0);
314 }
315
316 DEFUN ("mark-marker", Fmark_marker, Smark_marker, 0, 0, 0,
317 doc: /* Return this buffer's mark, as a marker object.
318 Watch out! Moving this marker changes the mark position.
319 If you set the marker not to point anywhere, the buffer will have no mark. */)
320 ()
321 {
322 return current_buffer->mark;
323 }
324
325 \f
326 /* Find all the overlays in the current buffer that touch position POS.
327 Return the number found, and store them in a vector in VEC
328 of length LEN. */
329
330 static int
331 overlays_around (pos, vec, len)
332 int pos;
333 Lisp_Object *vec;
334 int len;
335 {
336 Lisp_Object overlay, start, end;
337 struct Lisp_Overlay *tail;
338 int startpos, endpos;
339 int idx = 0;
340
341 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
342 {
343 XSETMISC (overlay, tail);
344
345 end = OVERLAY_END (overlay);
346 endpos = OVERLAY_POSITION (end);
347 if (endpos < pos)
348 break;
349 start = OVERLAY_START (overlay);
350 startpos = OVERLAY_POSITION (start);
351 if (startpos <= pos)
352 {
353 if (idx < len)
354 vec[idx] = overlay;
355 /* Keep counting overlays even if we can't return them all. */
356 idx++;
357 }
358 }
359
360 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
361 {
362 XSETMISC (overlay, tail);
363
364 start = OVERLAY_START (overlay);
365 startpos = OVERLAY_POSITION (start);
366 if (pos < startpos)
367 break;
368 end = OVERLAY_END (overlay);
369 endpos = OVERLAY_POSITION (end);
370 if (pos <= endpos)
371 {
372 if (idx < len)
373 vec[idx] = overlay;
374 idx++;
375 }
376 }
377
378 return idx;
379 }
380
381 /* Return the value of property PROP, in OBJECT at POSITION.
382 It's the value of PROP that a char inserted at POSITION would get.
383 OBJECT is optional and defaults to the current buffer.
384 If OBJECT is a buffer, then overlay properties are considered as well as
385 text properties.
386 If OBJECT is a window, then that window's buffer is used, but
387 window-specific overlays are considered only if they are associated
388 with OBJECT. */
389 Lisp_Object
390 get_pos_property (position, prop, object)
391 Lisp_Object position, object;
392 register Lisp_Object prop;
393 {
394 CHECK_NUMBER_COERCE_MARKER (position);
395
396 if (NILP (object))
397 XSETBUFFER (object, current_buffer);
398 else if (WINDOWP (object))
399 object = XWINDOW (object)->buffer;
400
401 if (!BUFFERP (object))
402 /* pos-property only makes sense in buffers right now, since strings
403 have no overlays and no notion of insertion for which stickiness
404 could be obeyed. */
405 return Fget_text_property (position, prop, object);
406 else
407 {
408 int posn = XINT (position);
409 int noverlays;
410 Lisp_Object *overlay_vec, tem;
411 struct buffer *obuf = current_buffer;
412
413 set_buffer_temp (XBUFFER (object));
414
415 /* First try with room for 40 overlays. */
416 noverlays = 40;
417 overlay_vec = (Lisp_Object *) alloca (noverlays * sizeof (Lisp_Object));
418 noverlays = overlays_around (posn, overlay_vec, noverlays);
419
420 /* If there are more than 40,
421 make enough space for all, and try again. */
422 if (noverlays > 40)
423 {
424 overlay_vec = (Lisp_Object *) alloca (noverlays * sizeof (Lisp_Object));
425 noverlays = overlays_around (posn, overlay_vec, noverlays);
426 }
427 noverlays = sort_overlays (overlay_vec, noverlays, NULL);
428
429 set_buffer_temp (obuf);
430
431 /* Now check the overlays in order of decreasing priority. */
432 while (--noverlays >= 0)
433 {
434 Lisp_Object ol = overlay_vec[noverlays];
435 tem = Foverlay_get (ol, prop);
436 if (!NILP (tem))
437 {
438 /* Check the overlay is indeed active at point. */
439 Lisp_Object start = OVERLAY_START (ol), finish = OVERLAY_END (ol);
440 if ((OVERLAY_POSITION (start) == posn
441 && XMARKER (start)->insertion_type == 1)
442 || (OVERLAY_POSITION (finish) == posn
443 && XMARKER (finish)->insertion_type == 0))
444 ; /* The overlay will not cover a char inserted at point. */
445 else
446 {
447 return tem;
448 }
449 }
450 }
451
452 { /* Now check the text-properties. */
453 int stickiness = text_property_stickiness (prop, position, object);
454 if (stickiness > 0)
455 return Fget_text_property (position, prop, object);
456 else if (stickiness < 0
457 && XINT (position) > BUF_BEGV (XBUFFER (object)))
458 return Fget_text_property (make_number (XINT (position) - 1),
459 prop, object);
460 else
461 return Qnil;
462 }
463 }
464 }
465
466 /* Find the field surrounding POS in *BEG and *END. If POS is nil,
467 the value of point is used instead. If BEG or END null,
468 means don't store the beginning or end of the field.
469
470 BEG_LIMIT and END_LIMIT serve to limit the ranged of the returned
471 results; they do not effect boundary behavior.
472
473 If MERGE_AT_BOUNDARY is nonzero, then if POS is at the very first
474 position of a field, then the beginning of the previous field is
475 returned instead of the beginning of POS's field (since the end of a
476 field is actually also the beginning of the next input field, this
477 behavior is sometimes useful). Additionally in the MERGE_AT_BOUNDARY
478 true case, if two fields are separated by a field with the special
479 value `boundary', and POS lies within it, then the two separated
480 fields are considered to be adjacent, and POS between them, when
481 finding the beginning and ending of the "merged" field.
482
483 Either BEG or END may be 0, in which case the corresponding value
484 is not stored. */
485
486 static void
487 find_field (pos, merge_at_boundary, beg_limit, beg, end_limit, end)
488 Lisp_Object pos;
489 Lisp_Object merge_at_boundary;
490 Lisp_Object beg_limit, end_limit;
491 int *beg, *end;
492 {
493 /* Fields right before and after the point. */
494 Lisp_Object before_field, after_field;
495 /* 1 if POS counts as the start of a field. */
496 int at_field_start = 0;
497 /* 1 if POS counts as the end of a field. */
498 int at_field_end = 0;
499
500 if (NILP (pos))
501 XSETFASTINT (pos, PT);
502 else
503 CHECK_NUMBER_COERCE_MARKER (pos);
504
505 after_field
506 = get_char_property_and_overlay (pos, Qfield, Qnil, NULL);
507 before_field
508 = (XFASTINT (pos) > BEGV
509 ? get_char_property_and_overlay (make_number (XINT (pos) - 1),
510 Qfield, Qnil, NULL)
511 : Qnil);
512
513 /* See if we need to handle the case where MERGE_AT_BOUNDARY is nil
514 and POS is at beginning of a field, which can also be interpreted
515 as the end of the previous field. Note that the case where if
516 MERGE_AT_BOUNDARY is non-nil (see function comment) is actually the
517 more natural one; then we avoid treating the beginning of a field
518 specially. */
519 if (NILP (merge_at_boundary))
520 {
521 Lisp_Object field = get_pos_property (pos, Qfield, Qnil);
522 if (!EQ (field, after_field))
523 at_field_end = 1;
524 if (!EQ (field, before_field))
525 at_field_start = 1;
526 if (NILP (field) && at_field_start && at_field_end)
527 /* If an inserted char would have a nil field while the surrounding
528 text is non-nil, we're probably not looking at a
529 zero-length field, but instead at a non-nil field that's
530 not intended for editing (such as comint's prompts). */
531 at_field_end = at_field_start = 0;
532 }
533
534 /* Note about special `boundary' fields:
535
536 Consider the case where the point (`.') is between the fields `x' and `y':
537
538 xxxx.yyyy
539
540 In this situation, if merge_at_boundary is true, we consider the
541 `x' and `y' fields as forming one big merged field, and so the end
542 of the field is the end of `y'.
543
544 However, if `x' and `y' are separated by a special `boundary' field
545 (a field with a `field' char-property of 'boundary), then we ignore
546 this special field when merging adjacent fields. Here's the same
547 situation, but with a `boundary' field between the `x' and `y' fields:
548
549 xxx.BBBByyyy
550
551 Here, if point is at the end of `x', the beginning of `y', or
552 anywhere in-between (within the `boundary' field), we merge all
553 three fields and consider the beginning as being the beginning of
554 the `x' field, and the end as being the end of the `y' field. */
555
556 if (beg)
557 {
558 if (at_field_start)
559 /* POS is at the edge of a field, and we should consider it as
560 the beginning of the following field. */
561 *beg = XFASTINT (pos);
562 else
563 /* Find the previous field boundary. */
564 {
565 Lisp_Object p = pos;
566 if (!NILP (merge_at_boundary) && EQ (before_field, Qboundary))
567 /* Skip a `boundary' field. */
568 p = Fprevious_single_char_property_change (p, Qfield, Qnil,
569 beg_limit);
570
571 p = Fprevious_single_char_property_change (p, Qfield, Qnil,
572 beg_limit);
573 *beg = NILP (p) ? BEGV : XFASTINT (p);
574 }
575 }
576
577 if (end)
578 {
579 if (at_field_end)
580 /* POS is at the edge of a field, and we should consider it as
581 the end of the previous field. */
582 *end = XFASTINT (pos);
583 else
584 /* Find the next field boundary. */
585 {
586 if (!NILP (merge_at_boundary) && EQ (after_field, Qboundary))
587 /* Skip a `boundary' field. */
588 pos = Fnext_single_char_property_change (pos, Qfield, Qnil,
589 end_limit);
590
591 pos = Fnext_single_char_property_change (pos, Qfield, Qnil,
592 end_limit);
593 *end = NILP (pos) ? ZV : XFASTINT (pos);
594 }
595 }
596 }
597
598 \f
599 DEFUN ("delete-field", Fdelete_field, Sdelete_field, 0, 1, 0,
600 doc: /* Delete the field surrounding POS.
601 A field is a region of text with the same `field' property.
602 If POS is nil, the value of point is used for POS. */)
603 (pos)
604 Lisp_Object pos;
605 {
606 int beg, end;
607 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
608 if (beg != end)
609 del_range (beg, end);
610 return Qnil;
611 }
612
613 DEFUN ("field-string", Ffield_string, Sfield_string, 0, 1, 0,
614 doc: /* Return the contents of the field surrounding POS as a string.
615 A field is a region of text with the same `field' property.
616 If POS is nil, the value of point is used for POS. */)
617 (pos)
618 Lisp_Object pos;
619 {
620 int beg, end;
621 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
622 return make_buffer_string (beg, end, 1);
623 }
624
625 DEFUN ("field-string-no-properties", Ffield_string_no_properties, Sfield_string_no_properties, 0, 1, 0,
626 doc: /* Return the contents of the field around POS, without text-properties.
627 A field is a region of text with the same `field' property.
628 If POS is nil, the value of point is used for POS. */)
629 (pos)
630 Lisp_Object pos;
631 {
632 int beg, end;
633 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
634 return make_buffer_string (beg, end, 0);
635 }
636
637 DEFUN ("field-beginning", Ffield_beginning, Sfield_beginning, 0, 3, 0,
638 doc: /* Return the beginning of the field surrounding POS.
639 A field is a region of text with the same `field' property.
640 If POS is nil, the value of point is used for POS.
641 If ESCAPE-FROM-EDGE is non-nil and POS is at the beginning of its
642 field, then the beginning of the *previous* field is returned.
643 If LIMIT is non-nil, it is a buffer position; if the beginning of the field
644 is before LIMIT, then LIMIT will be returned instead. */)
645 (pos, escape_from_edge, limit)
646 Lisp_Object pos, escape_from_edge, limit;
647 {
648 int beg;
649 find_field (pos, escape_from_edge, limit, &beg, Qnil, 0);
650 return make_number (beg);
651 }
652
653 DEFUN ("field-end", Ffield_end, Sfield_end, 0, 3, 0,
654 doc: /* Return the end of the field surrounding POS.
655 A field is a region of text with the same `field' property.
656 If POS is nil, the value of point is used for POS.
657 If ESCAPE-FROM-EDGE is non-nil and POS is at the end of its field,
658 then the end of the *following* field is returned.
659 If LIMIT is non-nil, it is a buffer position; if the end of the field
660 is after LIMIT, then LIMIT will be returned instead. */)
661 (pos, escape_from_edge, limit)
662 Lisp_Object pos, escape_from_edge, limit;
663 {
664 int end;
665 find_field (pos, escape_from_edge, Qnil, 0, limit, &end);
666 return make_number (end);
667 }
668
669 DEFUN ("constrain-to-field", Fconstrain_to_field, Sconstrain_to_field, 2, 5, 0,
670 doc: /* Return the position closest to NEW-POS that is in the same field as OLD-POS.
671
672 A field is a region of text with the same `field' property.
673 If NEW-POS is nil, then the current point is used instead, and set to the
674 constrained position if that is different.
675
676 If OLD-POS is at the boundary of two fields, then the allowable
677 positions for NEW-POS depends on the value of the optional argument
678 ESCAPE-FROM-EDGE: If ESCAPE-FROM-EDGE is nil, then NEW-POS is
679 constrained to the field that has the same `field' char-property
680 as any new characters inserted at OLD-POS, whereas if ESCAPE-FROM-EDGE
681 is non-nil, NEW-POS is constrained to the union of the two adjacent
682 fields. Additionally, if two fields are separated by another field with
683 the special value `boundary', then any point within this special field is
684 also considered to be `on the boundary'.
685
686 If the optional argument ONLY-IN-LINE is non-nil and constraining
687 NEW-POS would move it to a different line, NEW-POS is returned
688 unconstrained. This useful for commands that move by line, like
689 \\[next-line] or \\[beginning-of-line], which should generally respect field boundaries
690 only in the case where they can still move to the right line.
691
692 If the optional argument INHIBIT-CAPTURE-PROPERTY is non-nil, and OLD-POS has
693 a non-nil property of that name, then any field boundaries are ignored.
694
695 Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil. */)
696 (new_pos, old_pos, escape_from_edge, only_in_line, inhibit_capture_property)
697 Lisp_Object new_pos, old_pos;
698 Lisp_Object escape_from_edge, only_in_line, inhibit_capture_property;
699 {
700 /* If non-zero, then the original point, before re-positioning. */
701 int orig_point = 0;
702
703 if (NILP (new_pos))
704 /* Use the current point, and afterwards, set it. */
705 {
706 orig_point = PT;
707 XSETFASTINT (new_pos, PT);
708 }
709
710 if (NILP (Vinhibit_field_text_motion)
711 && !EQ (new_pos, old_pos)
712 && (!NILP (Fget_char_property (new_pos, Qfield, Qnil))
713 || !NILP (Fget_char_property (old_pos, Qfield, Qnil)))
714 && (NILP (inhibit_capture_property)
715 || NILP (Fget_char_property(old_pos, inhibit_capture_property, Qnil))))
716 /* NEW_POS is not within the same field as OLD_POS; try to
717 move NEW_POS so that it is. */
718 {
719 int fwd, shortage;
720 Lisp_Object field_bound;
721
722 CHECK_NUMBER_COERCE_MARKER (new_pos);
723 CHECK_NUMBER_COERCE_MARKER (old_pos);
724
725 fwd = (XFASTINT (new_pos) > XFASTINT (old_pos));
726
727 if (fwd)
728 field_bound = Ffield_end (old_pos, escape_from_edge, new_pos);
729 else
730 field_bound = Ffield_beginning (old_pos, escape_from_edge, new_pos);
731
732 if (/* See if ESCAPE_FROM_EDGE caused FIELD_BOUND to jump to the
733 other side of NEW_POS, which would mean that NEW_POS is
734 already acceptable, and it's not necessary to constrain it
735 to FIELD_BOUND. */
736 ((XFASTINT (field_bound) < XFASTINT (new_pos)) ? fwd : !fwd)
737 /* NEW_POS should be constrained, but only if either
738 ONLY_IN_LINE is nil (in which case any constraint is OK),
739 or NEW_POS and FIELD_BOUND are on the same line (in which
740 case the constraint is OK even if ONLY_IN_LINE is non-nil). */
741 && (NILP (only_in_line)
742 /* This is the ONLY_IN_LINE case, check that NEW_POS and
743 FIELD_BOUND are on the same line by seeing whether
744 there's an intervening newline or not. */
745 || (scan_buffer ('\n',
746 XFASTINT (new_pos), XFASTINT (field_bound),
747 fwd ? -1 : 1, &shortage, 1),
748 shortage != 0)))
749 /* Constrain NEW_POS to FIELD_BOUND. */
750 new_pos = field_bound;
751
752 if (orig_point && XFASTINT (new_pos) != orig_point)
753 /* The NEW_POS argument was originally nil, so automatically set PT. */
754 SET_PT (XFASTINT (new_pos));
755 }
756
757 return new_pos;
758 }
759
760 \f
761 DEFUN ("line-beginning-position",
762 Fline_beginning_position, Sline_beginning_position, 0, 1, 0,
763 doc: /* Return the character position of the first character on the current line.
764 With argument N not nil or 1, move forward N - 1 lines first.
765 If scan reaches end of buffer, return that position.
766
767 The scan does not cross a field boundary unless doing so would move
768 beyond there to a different line; if N is nil or 1, and scan starts at a
769 field boundary, the scan stops as soon as it starts. To ignore field
770 boundaries bind `inhibit-field-text-motion' to t.
771
772 This function does not move point. */)
773 (n)
774 Lisp_Object n;
775 {
776 int orig, orig_byte, end;
777
778 if (NILP (n))
779 XSETFASTINT (n, 1);
780 else
781 CHECK_NUMBER (n);
782
783 orig = PT;
784 orig_byte = PT_BYTE;
785 Fforward_line (make_number (XINT (n) - 1));
786 end = PT;
787
788 SET_PT_BOTH (orig, orig_byte);
789
790 /* Return END constrained to the current input field. */
791 return Fconstrain_to_field (make_number (end), make_number (orig),
792 XINT (n) != 1 ? Qt : Qnil,
793 Qt, Qnil);
794 }
795
796 DEFUN ("line-end-position", Fline_end_position, Sline_end_position, 0, 1, 0,
797 doc: /* Return the character position of the last character on the current line.
798 With argument N not nil or 1, move forward N - 1 lines first.
799 If scan reaches end of buffer, return that position.
800
801 The scan does not cross a field boundary unless doing so would move
802 beyond there to a different line; if N is nil or 1, and scan starts at a
803 field boundary, the scan stops as soon as it starts. To ignore field
804 boundaries bind `inhibit-field-text-motion' to t.
805
806 This function does not move point. */)
807 (n)
808 Lisp_Object n;
809 {
810 int end_pos;
811 int orig = PT;
812
813 if (NILP (n))
814 XSETFASTINT (n, 1);
815 else
816 CHECK_NUMBER (n);
817
818 end_pos = find_before_next_newline (orig, 0, XINT (n) - (XINT (n) <= 0));
819
820 /* Return END_POS constrained to the current input field. */
821 return Fconstrain_to_field (make_number (end_pos), make_number (orig),
822 Qnil, Qt, Qnil);
823 }
824
825 \f
826 Lisp_Object
827 save_excursion_save ()
828 {
829 int visible = (XBUFFER (XWINDOW (selected_window)->buffer)
830 == current_buffer);
831
832 return Fcons (Fpoint_marker (),
833 Fcons (Fcopy_marker (current_buffer->mark, Qnil),
834 Fcons (visible ? Qt : Qnil,
835 Fcons (current_buffer->mark_active,
836 selected_window))));
837 }
838
839 Lisp_Object
840 save_excursion_restore (info)
841 Lisp_Object info;
842 {
843 Lisp_Object tem, tem1, omark, nmark;
844 struct gcpro gcpro1, gcpro2, gcpro3;
845 int visible_p;
846
847 tem = Fmarker_buffer (XCAR (info));
848 /* If buffer being returned to is now deleted, avoid error */
849 /* Otherwise could get error here while unwinding to top level
850 and crash */
851 /* In that case, Fmarker_buffer returns nil now. */
852 if (NILP (tem))
853 return Qnil;
854
855 omark = nmark = Qnil;
856 GCPRO3 (info, omark, nmark);
857
858 Fset_buffer (tem);
859
860 /* Point marker. */
861 tem = XCAR (info);
862 Fgoto_char (tem);
863 unchain_marker (XMARKER (tem));
864
865 /* Mark marker. */
866 info = XCDR (info);
867 tem = XCAR (info);
868 omark = Fmarker_position (current_buffer->mark);
869 Fset_marker (current_buffer->mark, tem, Fcurrent_buffer ());
870 nmark = Fmarker_position (tem);
871 unchain_marker (XMARKER (tem));
872
873 /* visible */
874 info = XCDR (info);
875 visible_p = !NILP (XCAR (info));
876
877 #if 0 /* We used to make the current buffer visible in the selected window
878 if that was true previously. That avoids some anomalies.
879 But it creates others, and it wasn't documented, and it is simpler
880 and cleaner never to alter the window/buffer connections. */
881 tem1 = Fcar (tem);
882 if (!NILP (tem1)
883 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
884 Fswitch_to_buffer (Fcurrent_buffer (), Qnil);
885 #endif /* 0 */
886
887 /* Mark active */
888 info = XCDR (info);
889 tem = XCAR (info);
890 tem1 = current_buffer->mark_active;
891 current_buffer->mark_active = tem;
892
893 if (!NILP (Vrun_hooks))
894 {
895 /* If mark is active now, and either was not active
896 or was at a different place, run the activate hook. */
897 if (! NILP (current_buffer->mark_active))
898 {
899 if (! EQ (omark, nmark))
900 call1 (Vrun_hooks, intern ("activate-mark-hook"));
901 }
902 /* If mark has ceased to be active, run deactivate hook. */
903 else if (! NILP (tem1))
904 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
905 }
906
907 /* If buffer was visible in a window, and a different window was
908 selected, and the old selected window is still showing this
909 buffer, restore point in that window. */
910 tem = XCDR (info);
911 if (visible_p
912 && !EQ (tem, selected_window)
913 && (tem1 = XWINDOW (tem)->buffer,
914 (/* Window is live... */
915 BUFFERP (tem1)
916 /* ...and it shows the current buffer. */
917 && XBUFFER (tem1) == current_buffer)))
918 Fset_window_point (tem, make_number (PT));
919
920 UNGCPRO;
921 return Qnil;
922 }
923
924 DEFUN ("save-excursion", Fsave_excursion, Ssave_excursion, 0, UNEVALLED, 0,
925 doc: /* Save point, mark, and current buffer; execute BODY; restore those things.
926 Executes BODY just like `progn'.
927 The values of point, mark and the current buffer are restored
928 even in case of abnormal exit (throw or error).
929 The state of activation of the mark is also restored.
930
931 This construct does not save `deactivate-mark', and therefore
932 functions that change the buffer will still cause deactivation
933 of the mark at the end of the command. To prevent that, bind
934 `deactivate-mark' with `let'.
935
936 usage: (save-excursion &rest BODY) */)
937 (args)
938 Lisp_Object args;
939 {
940 register Lisp_Object val;
941 int count = SPECPDL_INDEX ();
942
943 record_unwind_protect (save_excursion_restore, save_excursion_save ());
944
945 val = Fprogn (args);
946 return unbind_to (count, val);
947 }
948
949 DEFUN ("save-current-buffer", Fsave_current_buffer, Ssave_current_buffer, 0, UNEVALLED, 0,
950 doc: /* Save the current buffer; execute BODY; restore the current buffer.
951 Executes BODY just like `progn'.
952 usage: (save-current-buffer &rest BODY) */)
953 (args)
954 Lisp_Object args;
955 {
956 Lisp_Object val;
957 int count = SPECPDL_INDEX ();
958
959 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
960
961 val = Fprogn (args);
962 return unbind_to (count, val);
963 }
964 \f
965 DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 1, 0,
966 doc: /* Return the number of characters in the current buffer.
967 If BUFFER, return the number of characters in that buffer instead. */)
968 (buffer)
969 Lisp_Object buffer;
970 {
971 if (NILP (buffer))
972 return make_number (Z - BEG);
973 else
974 {
975 CHECK_BUFFER (buffer);
976 return make_number (BUF_Z (XBUFFER (buffer))
977 - BUF_BEG (XBUFFER (buffer)));
978 }
979 }
980
981 DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0,
982 doc: /* Return the minimum permissible value of point in the current buffer.
983 This is 1, unless narrowing (a buffer restriction) is in effect. */)
984 ()
985 {
986 Lisp_Object temp;
987 XSETFASTINT (temp, BEGV);
988 return temp;
989 }
990
991 DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0,
992 doc: /* Return a marker to the minimum permissible value of point in this buffer.
993 This is the beginning, unless narrowing (a buffer restriction) is in effect. */)
994 ()
995 {
996 return buildmark (BEGV, BEGV_BYTE);
997 }
998
999 DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0,
1000 doc: /* Return the maximum permissible value of point in the current buffer.
1001 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
1002 is in effect, in which case it is less. */)
1003 ()
1004 {
1005 Lisp_Object temp;
1006 XSETFASTINT (temp, ZV);
1007 return temp;
1008 }
1009
1010 DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0,
1011 doc: /* Return a marker to the maximum permissible value of point in this buffer.
1012 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
1013 is in effect, in which case it is less. */)
1014 ()
1015 {
1016 return buildmark (ZV, ZV_BYTE);
1017 }
1018
1019 DEFUN ("gap-position", Fgap_position, Sgap_position, 0, 0, 0,
1020 doc: /* Return the position of the gap, in the current buffer.
1021 See also `gap-size'. */)
1022 ()
1023 {
1024 Lisp_Object temp;
1025 XSETFASTINT (temp, GPT);
1026 return temp;
1027 }
1028
1029 DEFUN ("gap-size", Fgap_size, Sgap_size, 0, 0, 0,
1030 doc: /* Return the size of the current buffer's gap.
1031 See also `gap-position'. */)
1032 ()
1033 {
1034 Lisp_Object temp;
1035 XSETFASTINT (temp, GAP_SIZE);
1036 return temp;
1037 }
1038
1039 DEFUN ("position-bytes", Fposition_bytes, Sposition_bytes, 1, 1, 0,
1040 doc: /* Return the byte position for character position POSITION.
1041 If POSITION is out of range, the value is nil. */)
1042 (position)
1043 Lisp_Object position;
1044 {
1045 CHECK_NUMBER_COERCE_MARKER (position);
1046 if (XINT (position) < BEG || XINT (position) > Z)
1047 return Qnil;
1048 return make_number (CHAR_TO_BYTE (XINT (position)));
1049 }
1050
1051 DEFUN ("byte-to-position", Fbyte_to_position, Sbyte_to_position, 1, 1, 0,
1052 doc: /* Return the character position for byte position BYTEPOS.
1053 If BYTEPOS is out of range, the value is nil. */)
1054 (bytepos)
1055 Lisp_Object bytepos;
1056 {
1057 CHECK_NUMBER (bytepos);
1058 if (XINT (bytepos) < BEG_BYTE || XINT (bytepos) > Z_BYTE)
1059 return Qnil;
1060 return make_number (BYTE_TO_CHAR (XINT (bytepos)));
1061 }
1062 \f
1063 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
1064 doc: /* Return the character following point, as a number.
1065 At the end of the buffer or accessible region, return 0. */)
1066 ()
1067 {
1068 Lisp_Object temp;
1069 if (PT >= ZV)
1070 XSETFASTINT (temp, 0);
1071 else
1072 XSETFASTINT (temp, FETCH_CHAR (PT_BYTE));
1073 return temp;
1074 }
1075
1076 DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
1077 doc: /* Return the character preceding point, as a number.
1078 At the beginning of the buffer or accessible region, return 0. */)
1079 ()
1080 {
1081 Lisp_Object temp;
1082 if (PT <= BEGV)
1083 XSETFASTINT (temp, 0);
1084 else if (!NILP (current_buffer->enable_multibyte_characters))
1085 {
1086 int pos = PT_BYTE;
1087 DEC_POS (pos);
1088 XSETFASTINT (temp, FETCH_CHAR (pos));
1089 }
1090 else
1091 XSETFASTINT (temp, FETCH_BYTE (PT_BYTE - 1));
1092 return temp;
1093 }
1094
1095 DEFUN ("bobp", Fbobp, Sbobp, 0, 0, 0,
1096 doc: /* Return t if point is at the beginning of the buffer.
1097 If the buffer is narrowed, this means the beginning of the narrowed part. */)
1098 ()
1099 {
1100 if (PT == BEGV)
1101 return Qt;
1102 return Qnil;
1103 }
1104
1105 DEFUN ("eobp", Feobp, Seobp, 0, 0, 0,
1106 doc: /* Return t if point is at the end of the buffer.
1107 If the buffer is narrowed, this means the end of the narrowed part. */)
1108 ()
1109 {
1110 if (PT == ZV)
1111 return Qt;
1112 return Qnil;
1113 }
1114
1115 DEFUN ("bolp", Fbolp, Sbolp, 0, 0, 0,
1116 doc: /* Return t if point is at the beginning of a line. */)
1117 ()
1118 {
1119 if (PT == BEGV || FETCH_BYTE (PT_BYTE - 1) == '\n')
1120 return Qt;
1121 return Qnil;
1122 }
1123
1124 DEFUN ("eolp", Feolp, Seolp, 0, 0, 0,
1125 doc: /* Return t if point is at the end of a line.
1126 `End of a line' includes point being at the end of the buffer. */)
1127 ()
1128 {
1129 if (PT == ZV || FETCH_BYTE (PT_BYTE) == '\n')
1130 return Qt;
1131 return Qnil;
1132 }
1133
1134 DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0,
1135 doc: /* Return character in current buffer at position POS.
1136 POS is an integer or a marker and defaults to point.
1137 If POS is out of range, the value is nil. */)
1138 (pos)
1139 Lisp_Object pos;
1140 {
1141 register int pos_byte;
1142
1143 if (NILP (pos))
1144 {
1145 pos_byte = PT_BYTE;
1146 XSETFASTINT (pos, PT);
1147 }
1148
1149 if (MARKERP (pos))
1150 {
1151 pos_byte = marker_byte_position (pos);
1152 if (pos_byte < BEGV_BYTE || pos_byte >= ZV_BYTE)
1153 return Qnil;
1154 }
1155 else
1156 {
1157 CHECK_NUMBER_COERCE_MARKER (pos);
1158 if (XINT (pos) < BEGV || XINT (pos) >= ZV)
1159 return Qnil;
1160
1161 pos_byte = CHAR_TO_BYTE (XINT (pos));
1162 }
1163
1164 return make_number (FETCH_CHAR (pos_byte));
1165 }
1166
1167 DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0,
1168 doc: /* Return character in current buffer preceding position POS.
1169 POS is an integer or a marker and defaults to point.
1170 If POS is out of range, the value is nil. */)
1171 (pos)
1172 Lisp_Object pos;
1173 {
1174 register Lisp_Object val;
1175 register int pos_byte;
1176
1177 if (NILP (pos))
1178 {
1179 pos_byte = PT_BYTE;
1180 XSETFASTINT (pos, PT);
1181 }
1182
1183 if (MARKERP (pos))
1184 {
1185 pos_byte = marker_byte_position (pos);
1186
1187 if (pos_byte <= BEGV_BYTE || pos_byte > ZV_BYTE)
1188 return Qnil;
1189 }
1190 else
1191 {
1192 CHECK_NUMBER_COERCE_MARKER (pos);
1193
1194 if (XINT (pos) <= BEGV || XINT (pos) > ZV)
1195 return Qnil;
1196
1197 pos_byte = CHAR_TO_BYTE (XINT (pos));
1198 }
1199
1200 if (!NILP (current_buffer->enable_multibyte_characters))
1201 {
1202 DEC_POS (pos_byte);
1203 XSETFASTINT (val, FETCH_CHAR (pos_byte));
1204 }
1205 else
1206 {
1207 pos_byte--;
1208 XSETFASTINT (val, FETCH_BYTE (pos_byte));
1209 }
1210 return val;
1211 }
1212 \f
1213 DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 1, 0,
1214 doc: /* Return the name under which the user logged in, as a string.
1215 This is based on the effective uid, not the real uid.
1216 Also, if the environment variables LOGNAME or USER are set,
1217 that determines the value of this function.
1218
1219 If optional argument UID is an integer, return the login name of the user
1220 with that uid, or nil if there is no such user. */)
1221 (uid)
1222 Lisp_Object uid;
1223 {
1224 struct passwd *pw;
1225
1226 /* Set up the user name info if we didn't do it before.
1227 (That can happen if Emacs is dumpable
1228 but you decide to run `temacs -l loadup' and not dump. */
1229 if (INTEGERP (Vuser_login_name))
1230 init_editfns ();
1231
1232 if (NILP (uid))
1233 return Vuser_login_name;
1234
1235 CHECK_NUMBER (uid);
1236 pw = (struct passwd *) getpwuid (XINT (uid));
1237 return (pw ? build_string (pw->pw_name) : Qnil);
1238 }
1239
1240 DEFUN ("user-real-login-name", Fuser_real_login_name, Suser_real_login_name,
1241 0, 0, 0,
1242 doc: /* Return the name of the user's real uid, as a string.
1243 This ignores the environment variables LOGNAME and USER, so it differs from
1244 `user-login-name' when running under `su'. */)
1245 ()
1246 {
1247 /* Set up the user name info if we didn't do it before.
1248 (That can happen if Emacs is dumpable
1249 but you decide to run `temacs -l loadup' and not dump. */
1250 if (INTEGERP (Vuser_login_name))
1251 init_editfns ();
1252 return Vuser_real_login_name;
1253 }
1254
1255 DEFUN ("user-uid", Fuser_uid, Suser_uid, 0, 0, 0,
1256 doc: /* Return the effective uid of Emacs.
1257 Value is an integer or float, depending on the value. */)
1258 ()
1259 {
1260 return make_fixnum_or_float (geteuid ());
1261 }
1262
1263 DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0,
1264 doc: /* Return the real uid of Emacs.
1265 Value is an integer or float, depending on the value. */)
1266 ()
1267 {
1268 return make_fixnum_or_float (getuid ());
1269 }
1270
1271 DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 1, 0,
1272 doc: /* Return the full name of the user logged in, as a string.
1273 If the full name corresponding to Emacs's userid is not known,
1274 return "unknown".
1275
1276 If optional argument UID is an integer or float, return the full name
1277 of the user with that uid, or nil if there is no such user.
1278 If UID is a string, return the full name of the user with that login
1279 name, or nil if there is no such user. */)
1280 (uid)
1281 Lisp_Object uid;
1282 {
1283 struct passwd *pw;
1284 register unsigned char *p, *q;
1285 Lisp_Object full;
1286
1287 if (NILP (uid))
1288 return Vuser_full_name;
1289 else if (NUMBERP (uid))
1290 pw = (struct passwd *) getpwuid ((uid_t) XFLOATINT (uid));
1291 else if (STRINGP (uid))
1292 pw = (struct passwd *) getpwnam (SDATA (uid));
1293 else
1294 error ("Invalid UID specification");
1295
1296 if (!pw)
1297 return Qnil;
1298
1299 p = (unsigned char *) USER_FULL_NAME;
1300 /* Chop off everything after the first comma. */
1301 q = (unsigned char *) index (p, ',');
1302 full = make_string (p, q ? q - p : strlen (p));
1303
1304 #ifdef AMPERSAND_FULL_NAME
1305 p = SDATA (full);
1306 q = (unsigned char *) index (p, '&');
1307 /* Substitute the login name for the &, upcasing the first character. */
1308 if (q)
1309 {
1310 register unsigned char *r;
1311 Lisp_Object login;
1312
1313 login = Fuser_login_name (make_number (pw->pw_uid));
1314 r = (unsigned char *) alloca (strlen (p) + SCHARS (login) + 1);
1315 bcopy (p, r, q - p);
1316 r[q - p] = 0;
1317 strcat (r, SDATA (login));
1318 r[q - p] = UPCASE (r[q - p]);
1319 strcat (r, q + 1);
1320 full = build_string (r);
1321 }
1322 #endif /* AMPERSAND_FULL_NAME */
1323
1324 return full;
1325 }
1326
1327 DEFUN ("system-name", Fsystem_name, Ssystem_name, 0, 0, 0,
1328 doc: /* Return the name of the machine you are running on, as a string. */)
1329 ()
1330 {
1331 return Vsystem_name;
1332 }
1333
1334 /* For the benefit of callers who don't want to include lisp.h */
1335
1336 char *
1337 get_system_name ()
1338 {
1339 if (STRINGP (Vsystem_name))
1340 return (char *) SDATA (Vsystem_name);
1341 else
1342 return "";
1343 }
1344
1345 DEFUN ("emacs-pid", Femacs_pid, Semacs_pid, 0, 0, 0,
1346 doc: /* Return the process ID of Emacs, as an integer. */)
1347 ()
1348 {
1349 return make_number (getpid ());
1350 }
1351
1352 DEFUN ("current-time", Fcurrent_time, Scurrent_time, 0, 0, 0,
1353 doc: /* Return the current time, as the number of seconds since 1970-01-01 00:00:00.
1354 The time is returned as a list of three integers. The first has the
1355 most significant 16 bits of the seconds, while the second has the
1356 least significant 16 bits. The third integer gives the microsecond
1357 count.
1358
1359 The microsecond count is zero on systems that do not provide
1360 resolution finer than a second. */)
1361 ()
1362 {
1363 EMACS_TIME t;
1364 Lisp_Object result[3];
1365
1366 EMACS_GET_TIME (t);
1367 XSETINT (result[0], (EMACS_SECS (t) >> 16) & 0xffff);
1368 XSETINT (result[1], (EMACS_SECS (t) >> 0) & 0xffff);
1369 XSETINT (result[2], EMACS_USECS (t));
1370
1371 return Flist (3, result);
1372 }
1373 \f
1374
1375 int
1376 lisp_time_argument (specified_time, result, usec)
1377 Lisp_Object specified_time;
1378 time_t *result;
1379 int *usec;
1380 {
1381 if (NILP (specified_time))
1382 {
1383 if (usec)
1384 {
1385 EMACS_TIME t;
1386
1387 EMACS_GET_TIME (t);
1388 *usec = EMACS_USECS (t);
1389 *result = EMACS_SECS (t);
1390 return 1;
1391 }
1392 else
1393 return time (result) != -1;
1394 }
1395 else
1396 {
1397 Lisp_Object high, low;
1398 high = Fcar (specified_time);
1399 CHECK_NUMBER (high);
1400 low = Fcdr (specified_time);
1401 if (CONSP (low))
1402 {
1403 if (usec)
1404 {
1405 Lisp_Object usec_l = Fcdr (low);
1406 if (CONSP (usec_l))
1407 usec_l = Fcar (usec_l);
1408 if (NILP (usec_l))
1409 *usec = 0;
1410 else
1411 {
1412 CHECK_NUMBER (usec_l);
1413 *usec = XINT (usec_l);
1414 }
1415 }
1416 low = Fcar (low);
1417 }
1418 else if (usec)
1419 *usec = 0;
1420 CHECK_NUMBER (low);
1421 *result = (XINT (high) << 16) + (XINT (low) & 0xffff);
1422 return *result >> 16 == XINT (high);
1423 }
1424 }
1425
1426 DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0,
1427 doc: /* Return the current time, as a float number of seconds since the epoch.
1428 If SPECIFIED-TIME is given, it is the time to convert to float
1429 instead of the current time. The argument should have the form
1430 (HIGH LOW . IGNORED). Thus, you can use times obtained from
1431 `current-time' and from `file-attributes'. SPECIFIED-TIME can also
1432 have the form (HIGH . LOW), but this is considered obsolete.
1433
1434 WARNING: Since the result is floating point, it may not be exact.
1435 Do not use this function if precise time stamps are required. */)
1436 (specified_time)
1437 Lisp_Object specified_time;
1438 {
1439 time_t sec;
1440 int usec;
1441
1442 if (! lisp_time_argument (specified_time, &sec, &usec))
1443 error ("Invalid time specification");
1444
1445 return make_float ((sec * 1e6 + usec) / 1e6);
1446 }
1447
1448 /* Write information into buffer S of size MAXSIZE, according to the
1449 FORMAT of length FORMAT_LEN, using time information taken from *TP.
1450 Default to Universal Time if UT is nonzero, local time otherwise.
1451 Return the number of bytes written, not including the terminating
1452 '\0'. If S is NULL, nothing will be written anywhere; so to
1453 determine how many bytes would be written, use NULL for S and
1454 ((size_t) -1) for MAXSIZE.
1455
1456 This function behaves like emacs_strftimeu, except it allows null
1457 bytes in FORMAT. */
1458 static size_t
1459 emacs_memftimeu (s, maxsize, format, format_len, tp, ut)
1460 char *s;
1461 size_t maxsize;
1462 const char *format;
1463 size_t format_len;
1464 const struct tm *tp;
1465 int ut;
1466 {
1467 size_t total = 0;
1468
1469 /* Loop through all the null-terminated strings in the format
1470 argument. Normally there's just one null-terminated string, but
1471 there can be arbitrarily many, concatenated together, if the
1472 format contains '\0' bytes. emacs_strftimeu stops at the first
1473 '\0' byte so we must invoke it separately for each such string. */
1474 for (;;)
1475 {
1476 size_t len;
1477 size_t result;
1478
1479 if (s)
1480 s[0] = '\1';
1481
1482 result = emacs_strftimeu (s, maxsize, format, tp, ut);
1483
1484 if (s)
1485 {
1486 if (result == 0 && s[0] != '\0')
1487 return 0;
1488 s += result + 1;
1489 }
1490
1491 maxsize -= result + 1;
1492 total += result;
1493 len = strlen (format);
1494 if (len == format_len)
1495 return total;
1496 total++;
1497 format += len + 1;
1498 format_len -= len + 1;
1499 }
1500 }
1501
1502 DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string, 1, 3, 0,
1503 doc: /* Use FORMAT-STRING to format the time TIME, or now if omitted.
1504 TIME is specified as (HIGH LOW . IGNORED), as returned by
1505 `current-time' or `file-attributes'. The obsolete form (HIGH . LOW)
1506 is also still accepted.
1507 The third, optional, argument UNIVERSAL, if non-nil, means describe TIME
1508 as Universal Time; nil means describe TIME in the local time zone.
1509 The value is a copy of FORMAT-STRING, but with certain constructs replaced
1510 by text that describes the specified date and time in TIME:
1511
1512 %Y is the year, %y within the century, %C the century.
1513 %G is the year corresponding to the ISO week, %g within the century.
1514 %m is the numeric month.
1515 %b and %h are the locale's abbreviated month name, %B the full name.
1516 %d is the day of the month, zero-padded, %e is blank-padded.
1517 %u is the numeric day of week from 1 (Monday) to 7, %w from 0 (Sunday) to 6.
1518 %a is the locale's abbreviated name of the day of week, %A the full name.
1519 %U is the week number starting on Sunday, %W starting on Monday,
1520 %V according to ISO 8601.
1521 %j is the day of the year.
1522
1523 %H is the hour on a 24-hour clock, %I is on a 12-hour clock, %k is like %H
1524 only blank-padded, %l is like %I blank-padded.
1525 %p is the locale's equivalent of either AM or PM.
1526 %M is the minute.
1527 %S is the second.
1528 %Z is the time zone name, %z is the numeric form.
1529 %s is the number of seconds since 1970-01-01 00:00:00 +0000.
1530
1531 %c is the locale's date and time format.
1532 %x is the locale's "preferred" date format.
1533 %D is like "%m/%d/%y".
1534
1535 %R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p".
1536 %X is the locale's "preferred" time format.
1537
1538 Finally, %n is a newline, %t is a tab, %% is a literal %.
1539
1540 Certain flags and modifiers are available with some format controls.
1541 The flags are `_', `-', `^' and `#'. For certain characters X,
1542 %_X is like %X, but padded with blanks; %-X is like %X,
1543 but without padding. %^X is like %X, but with all textual
1544 characters up-cased; %#X is like %X, but with letter-case of
1545 all textual characters reversed.
1546 %NX (where N stands for an integer) is like %X,
1547 but takes up at least N (a number) positions.
1548 The modifiers are `E' and `O'. For certain characters X,
1549 %EX is a locale's alternative version of %X;
1550 %OX is like %X, but uses the locale's number symbols.
1551
1552 For example, to produce full ISO 8601 format, use "%Y-%m-%dT%T%z". */)
1553 (format_string, time, universal)
1554 Lisp_Object format_string, time, universal;
1555 {
1556 time_t value;
1557 int size;
1558 struct tm *tm;
1559 int ut = ! NILP (universal);
1560
1561 CHECK_STRING (format_string);
1562
1563 if (! lisp_time_argument (time, &value, NULL))
1564 error ("Invalid time specification");
1565
1566 format_string = code_convert_string_norecord (format_string,
1567 Vlocale_coding_system, 1);
1568
1569 /* This is probably enough. */
1570 size = SBYTES (format_string) * 6 + 50;
1571
1572 tm = ut ? gmtime (&value) : localtime (&value);
1573 if (! tm)
1574 error ("Specified time is not representable");
1575
1576 synchronize_system_time_locale ();
1577
1578 while (1)
1579 {
1580 char *buf = (char *) alloca (size + 1);
1581 int result;
1582
1583 buf[0] = '\1';
1584 result = emacs_memftimeu (buf, size, SDATA (format_string),
1585 SBYTES (format_string),
1586 tm, ut);
1587 if ((result > 0 && result < size) || (result == 0 && buf[0] == '\0'))
1588 return code_convert_string_norecord (make_string (buf, result),
1589 Vlocale_coding_system, 0);
1590
1591 /* If buffer was too small, make it bigger and try again. */
1592 result = emacs_memftimeu (NULL, (size_t) -1,
1593 SDATA (format_string),
1594 SBYTES (format_string),
1595 tm, ut);
1596 size = result + 1;
1597 }
1598 }
1599
1600 DEFUN ("decode-time", Fdecode_time, Sdecode_time, 0, 1, 0,
1601 doc: /* Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).
1602 The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED),
1603 as from `current-time' and `file-attributes', or `nil' to use the
1604 current time. The obsolete form (HIGH . LOW) is also still accepted.
1605 The list has the following nine members: SEC is an integer between 0
1606 and 60; SEC is 60 for a leap second, which only some operating systems
1607 support. MINUTE is an integer between 0 and 59. HOUR is an integer
1608 between 0 and 23. DAY is an integer between 1 and 31. MONTH is an
1609 integer between 1 and 12. YEAR is an integer indicating the
1610 four-digit year. DOW is the day of week, an integer between 0 and 6,
1611 where 0 is Sunday. DST is t if daylight savings time is effect,
1612 otherwise nil. ZONE is an integer indicating the number of seconds
1613 east of Greenwich. (Note that Common Lisp has different meanings for
1614 DOW and ZONE.) */)
1615 (specified_time)
1616 Lisp_Object specified_time;
1617 {
1618 time_t time_spec;
1619 struct tm save_tm;
1620 struct tm *decoded_time;
1621 Lisp_Object list_args[9];
1622
1623 if (! lisp_time_argument (specified_time, &time_spec, NULL))
1624 error ("Invalid time specification");
1625
1626 decoded_time = localtime (&time_spec);
1627 if (! decoded_time)
1628 error ("Specified time is not representable");
1629 XSETFASTINT (list_args[0], decoded_time->tm_sec);
1630 XSETFASTINT (list_args[1], decoded_time->tm_min);
1631 XSETFASTINT (list_args[2], decoded_time->tm_hour);
1632 XSETFASTINT (list_args[3], decoded_time->tm_mday);
1633 XSETFASTINT (list_args[4], decoded_time->tm_mon + 1);
1634 XSETINT (list_args[5], decoded_time->tm_year + 1900);
1635 XSETFASTINT (list_args[6], decoded_time->tm_wday);
1636 list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil;
1637
1638 /* Make a copy, in case gmtime modifies the struct. */
1639 save_tm = *decoded_time;
1640 decoded_time = gmtime (&time_spec);
1641 if (decoded_time == 0)
1642 list_args[8] = Qnil;
1643 else
1644 XSETINT (list_args[8], tm_diff (&save_tm, decoded_time));
1645 return Flist (9, list_args);
1646 }
1647
1648 DEFUN ("encode-time", Fencode_time, Sencode_time, 6, MANY, 0,
1649 doc: /* Convert SECOND, MINUTE, HOUR, DAY, MONTH, YEAR and ZONE to internal time.
1650 This is the reverse operation of `decode-time', which see.
1651 ZONE defaults to the current time zone rule. This can
1652 be a string or t (as from `set-time-zone-rule'), or it can be a list
1653 \(as from `current-time-zone') or an integer (as from `decode-time')
1654 applied without consideration for daylight savings time.
1655
1656 You can pass more than 7 arguments; then the first six arguments
1657 are used as SECOND through YEAR, and the *last* argument is used as ZONE.
1658 The intervening arguments are ignored.
1659 This feature lets (apply 'encode-time (decode-time ...)) work.
1660
1661 Out-of-range values for SECOND, MINUTE, HOUR, DAY, or MONTH are allowed;
1662 for example, a DAY of 0 means the day preceding the given month.
1663 Year numbers less than 100 are treated just like other year numbers.
1664 If you want them to stand for years in this century, you must do that yourself.
1665
1666 Years before 1970 are not guaranteed to work. On some systems,
1667 year values as low as 1901 do work.
1668
1669 usage: (encode-time SECOND MINUTE HOUR DAY MONTH YEAR &optional ZONE) */)
1670 (nargs, args)
1671 int nargs;
1672 register Lisp_Object *args;
1673 {
1674 time_t time;
1675 struct tm tm;
1676 Lisp_Object zone = (nargs > 6 ? args[nargs - 1] : Qnil);
1677
1678 CHECK_NUMBER (args[0]); /* second */
1679 CHECK_NUMBER (args[1]); /* minute */
1680 CHECK_NUMBER (args[2]); /* hour */
1681 CHECK_NUMBER (args[3]); /* day */
1682 CHECK_NUMBER (args[4]); /* month */
1683 CHECK_NUMBER (args[5]); /* year */
1684
1685 tm.tm_sec = XINT (args[0]);
1686 tm.tm_min = XINT (args[1]);
1687 tm.tm_hour = XINT (args[2]);
1688 tm.tm_mday = XINT (args[3]);
1689 tm.tm_mon = XINT (args[4]) - 1;
1690 tm.tm_year = XINT (args[5]) - 1900;
1691 tm.tm_isdst = -1;
1692
1693 if (CONSP (zone))
1694 zone = Fcar (zone);
1695 if (NILP (zone))
1696 time = mktime (&tm);
1697 else
1698 {
1699 char tzbuf[100];
1700 char *tzstring;
1701 char **oldenv = environ, **newenv;
1702
1703 if (EQ (zone, Qt))
1704 tzstring = "UTC0";
1705 else if (STRINGP (zone))
1706 tzstring = (char *) SDATA (zone);
1707 else if (INTEGERP (zone))
1708 {
1709 int abszone = abs (XINT (zone));
1710 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
1711 abszone / (60*60), (abszone/60) % 60, abszone % 60);
1712 tzstring = tzbuf;
1713 }
1714 else
1715 error ("Invalid time zone specification");
1716
1717 /* Set TZ before calling mktime; merely adjusting mktime's returned
1718 value doesn't suffice, since that would mishandle leap seconds. */
1719 set_time_zone_rule (tzstring);
1720
1721 time = mktime (&tm);
1722
1723 /* Restore TZ to previous value. */
1724 newenv = environ;
1725 environ = oldenv;
1726 xfree (newenv);
1727 #ifdef LOCALTIME_CACHE
1728 tzset ();
1729 #endif
1730 }
1731
1732 if (time == (time_t) -1)
1733 error ("Specified time is not representable");
1734
1735 return make_time (time);
1736 }
1737
1738 DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 1, 0,
1739 doc: /* Return the current time, as a human-readable string.
1740 Programs can use this function to decode a time,
1741 since the number of columns in each field is fixed.
1742 The format is `Sun Sep 16 01:03:52 1973'.
1743 However, see also the functions `decode-time' and `format-time-string'
1744 which provide a much more powerful and general facility.
1745
1746 If SPECIFIED-TIME is given, it is a time to format instead of the
1747 current time. The argument should have the form (HIGH LOW . IGNORED).
1748 Thus, you can use times obtained from `current-time' and from
1749 `file-attributes'. SPECIFIED-TIME can also have the form (HIGH . LOW),
1750 but this is considered obsolete. */)
1751 (specified_time)
1752 Lisp_Object specified_time;
1753 {
1754 time_t value;
1755 char buf[30];
1756 register char *tem;
1757
1758 if (! lisp_time_argument (specified_time, &value, NULL))
1759 value = -1;
1760 tem = (char *) ctime (&value);
1761
1762 strncpy (buf, tem, 24);
1763 buf[24] = 0;
1764
1765 return build_string (buf);
1766 }
1767
1768 #define TM_YEAR_BASE 1900
1769
1770 /* Yield A - B, measured in seconds.
1771 This function is copied from the GNU C Library. */
1772 static int
1773 tm_diff (a, b)
1774 struct tm *a, *b;
1775 {
1776 /* Compute intervening leap days correctly even if year is negative.
1777 Take care to avoid int overflow in leap day calculations,
1778 but it's OK to assume that A and B are close to each other. */
1779 int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3);
1780 int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3);
1781 int a100 = a4 / 25 - (a4 % 25 < 0);
1782 int b100 = b4 / 25 - (b4 % 25 < 0);
1783 int a400 = a100 >> 2;
1784 int b400 = b100 >> 2;
1785 int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);
1786 int years = a->tm_year - b->tm_year;
1787 int days = (365 * years + intervening_leap_days
1788 + (a->tm_yday - b->tm_yday));
1789 return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour))
1790 + (a->tm_min - b->tm_min))
1791 + (a->tm_sec - b->tm_sec));
1792 }
1793
1794 DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 1, 0,
1795 doc: /* Return the offset and name for the local time zone.
1796 This returns a list of the form (OFFSET NAME).
1797 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
1798 A negative value means west of Greenwich.
1799 NAME is a string giving the name of the time zone.
1800 If SPECIFIED-TIME is given, the time zone offset is determined from it
1801 instead of using the current time. The argument should have the form
1802 (HIGH LOW . IGNORED). Thus, you can use times obtained from
1803 `current-time' and from `file-attributes'. SPECIFIED-TIME can also
1804 have the form (HIGH . LOW), but this is considered obsolete.
1805
1806 Some operating systems cannot provide all this information to Emacs;
1807 in this case, `current-time-zone' returns a list containing nil for
1808 the data it can't find. */)
1809 (specified_time)
1810 Lisp_Object specified_time;
1811 {
1812 time_t value;
1813 struct tm *t;
1814 struct tm gmt;
1815
1816 if (lisp_time_argument (specified_time, &value, NULL)
1817 && (t = gmtime (&value)) != 0
1818 && (gmt = *t, t = localtime (&value)) != 0)
1819 {
1820 int offset = tm_diff (t, &gmt);
1821 char *s = 0;
1822 char buf[6];
1823 #ifdef HAVE_TM_ZONE
1824 if (t->tm_zone)
1825 s = (char *)t->tm_zone;
1826 #else /* not HAVE_TM_ZONE */
1827 #ifdef HAVE_TZNAME
1828 if (t->tm_isdst == 0 || t->tm_isdst == 1)
1829 s = tzname[t->tm_isdst];
1830 #endif
1831 #endif /* not HAVE_TM_ZONE */
1832
1833 #if defined HAVE_TM_ZONE || defined HAVE_TZNAME
1834 if (s)
1835 {
1836 /* On Japanese w32, we can get a Japanese string as time
1837 zone name. Don't accept that. */
1838 char *p;
1839 for (p = s; *p && (isalnum ((unsigned char)*p) || *p == ' '); ++p)
1840 ;
1841 if (p == s || *p)
1842 s = NULL;
1843 }
1844 #endif
1845
1846 if (!s)
1847 {
1848 /* No local time zone name is available; use "+-NNNN" instead. */
1849 int am = (offset < 0 ? -offset : offset) / 60;
1850 sprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60, am%60);
1851 s = buf;
1852 }
1853 return Fcons (make_number (offset), Fcons (build_string (s), Qnil));
1854 }
1855 else
1856 return Fmake_list (make_number (2), Qnil);
1857 }
1858
1859 /* This holds the value of `environ' produced by the previous
1860 call to Fset_time_zone_rule, or 0 if Fset_time_zone_rule
1861 has never been called. */
1862 static char **environbuf;
1863
1864 DEFUN ("set-time-zone-rule", Fset_time_zone_rule, Sset_time_zone_rule, 1, 1, 0,
1865 doc: /* Set the local time zone using TZ, a string specifying a time zone rule.
1866 If TZ is nil, use implementation-defined default time zone information.
1867 If TZ is t, use Universal Time. */)
1868 (tz)
1869 Lisp_Object tz;
1870 {
1871 char *tzstring;
1872
1873 if (NILP (tz))
1874 tzstring = 0;
1875 else if (EQ (tz, Qt))
1876 tzstring = "UTC0";
1877 else
1878 {
1879 CHECK_STRING (tz);
1880 tzstring = (char *) SDATA (tz);
1881 }
1882
1883 set_time_zone_rule (tzstring);
1884 if (environbuf)
1885 free (environbuf);
1886 environbuf = environ;
1887
1888 return Qnil;
1889 }
1890
1891 #ifdef LOCALTIME_CACHE
1892
1893 /* These two values are known to load tz files in buggy implementations,
1894 i.e. Solaris 1 executables running under either Solaris 1 or Solaris 2.
1895 Their values shouldn't matter in non-buggy implementations.
1896 We don't use string literals for these strings,
1897 since if a string in the environment is in readonly
1898 storage, it runs afoul of bugs in SVR4 and Solaris 2.3.
1899 See Sun bugs 1113095 and 1114114, ``Timezone routines
1900 improperly modify environment''. */
1901
1902 static char set_time_zone_rule_tz1[] = "TZ=GMT+0";
1903 static char set_time_zone_rule_tz2[] = "TZ=GMT+1";
1904
1905 #endif
1906
1907 /* Set the local time zone rule to TZSTRING.
1908 This allocates memory into `environ', which it is the caller's
1909 responsibility to free. */
1910
1911 void
1912 set_time_zone_rule (tzstring)
1913 char *tzstring;
1914 {
1915 int envptrs;
1916 char **from, **to, **newenv;
1917
1918 /* Make the ENVIRON vector longer with room for TZSTRING. */
1919 for (from = environ; *from; from++)
1920 continue;
1921 envptrs = from - environ + 2;
1922 newenv = to = (char **) xmalloc (envptrs * sizeof (char *)
1923 + (tzstring ? strlen (tzstring) + 4 : 0));
1924
1925 /* Add TZSTRING to the end of environ, as a value for TZ. */
1926 if (tzstring)
1927 {
1928 char *t = (char *) (to + envptrs);
1929 strcpy (t, "TZ=");
1930 strcat (t, tzstring);
1931 *to++ = t;
1932 }
1933
1934 /* Copy the old environ vector elements into NEWENV,
1935 but don't copy the TZ variable.
1936 So we have only one definition of TZ, which came from TZSTRING. */
1937 for (from = environ; *from; from++)
1938 if (strncmp (*from, "TZ=", 3) != 0)
1939 *to++ = *from;
1940 *to = 0;
1941
1942 environ = newenv;
1943
1944 /* If we do have a TZSTRING, NEWENV points to the vector slot where
1945 the TZ variable is stored. If we do not have a TZSTRING,
1946 TO points to the vector slot which has the terminating null. */
1947
1948 #ifdef LOCALTIME_CACHE
1949 {
1950 /* In SunOS 4.1.3_U1 and 4.1.4, if TZ has a value like
1951 "US/Pacific" that loads a tz file, then changes to a value like
1952 "XXX0" that does not load a tz file, and then changes back to
1953 its original value, the last change is (incorrectly) ignored.
1954 Also, if TZ changes twice in succession to values that do
1955 not load a tz file, tzset can dump core (see Sun bug#1225179).
1956 The following code works around these bugs. */
1957
1958 if (tzstring)
1959 {
1960 /* Temporarily set TZ to a value that loads a tz file
1961 and that differs from tzstring. */
1962 char *tz = *newenv;
1963 *newenv = (strcmp (tzstring, set_time_zone_rule_tz1 + 3) == 0
1964 ? set_time_zone_rule_tz2 : set_time_zone_rule_tz1);
1965 tzset ();
1966 *newenv = tz;
1967 }
1968 else
1969 {
1970 /* The implied tzstring is unknown, so temporarily set TZ to
1971 two different values that each load a tz file. */
1972 *to = set_time_zone_rule_tz1;
1973 to[1] = 0;
1974 tzset ();
1975 *to = set_time_zone_rule_tz2;
1976 tzset ();
1977 *to = 0;
1978 }
1979
1980 /* Now TZ has the desired value, and tzset can be invoked safely. */
1981 }
1982
1983 tzset ();
1984 #endif
1985 }
1986 \f
1987 /* Insert NARGS Lisp objects in the array ARGS by calling INSERT_FUNC
1988 (if a type of object is Lisp_Int) or INSERT_FROM_STRING_FUNC (if a
1989 type of object is Lisp_String). INHERIT is passed to
1990 INSERT_FROM_STRING_FUNC as the last argument. */
1991
1992 static void
1993 general_insert_function (insert_func, insert_from_string_func,
1994 inherit, nargs, args)
1995 void (*insert_func) P_ ((const unsigned char *, int));
1996 void (*insert_from_string_func) P_ ((Lisp_Object, int, int, int, int, int));
1997 int inherit, nargs;
1998 register Lisp_Object *args;
1999 {
2000 register int argnum;
2001 register Lisp_Object val;
2002
2003 for (argnum = 0; argnum < nargs; argnum++)
2004 {
2005 val = args[argnum];
2006 retry:
2007 if (INTEGERP (val))
2008 {
2009 unsigned char str[MAX_MULTIBYTE_LENGTH];
2010 int len;
2011
2012 if (!NILP (current_buffer->enable_multibyte_characters))
2013 len = CHAR_STRING (XFASTINT (val), str);
2014 else
2015 {
2016 str[0] = (ASCII_CHAR_P (XINT (val))
2017 ? XINT (val)
2018 : multibyte_char_to_unibyte (XINT (val), Qnil));
2019 len = 1;
2020 }
2021 (*insert_func) (str, len);
2022 }
2023 else if (STRINGP (val))
2024 {
2025 (*insert_from_string_func) (val, 0, 0,
2026 SCHARS (val),
2027 SBYTES (val),
2028 inherit);
2029 }
2030 else
2031 {
2032 val = wrong_type_argument (Qchar_or_string_p, val);
2033 goto retry;
2034 }
2035 }
2036 }
2037
2038 void
2039 insert1 (arg)
2040 Lisp_Object arg;
2041 {
2042 Finsert (1, &arg);
2043 }
2044
2045
2046 /* Callers passing one argument to Finsert need not gcpro the
2047 argument "array", since the only element of the array will
2048 not be used after calling insert or insert_from_string, so
2049 we don't care if it gets trashed. */
2050
2051 DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0,
2052 doc: /* Insert the arguments, either strings or characters, at point.
2053 Point and before-insertion markers move forward to end up
2054 after the inserted text.
2055 Any other markers at the point of insertion remain before the text.
2056
2057 If the current buffer is multibyte, unibyte strings are converted
2058 to multibyte for insertion (see `string-make-multibyte').
2059 If the current buffer is unibyte, multibyte strings are converted
2060 to unibyte for insertion (see `string-make-unibyte').
2061
2062 When operating on binary data, it may be necessary to preserve the
2063 original bytes of a unibyte string when inserting it into a multibyte
2064 buffer; to accomplish this, apply `string-as-multibyte' to the string
2065 and insert the result.
2066
2067 usage: (insert &rest ARGS) */)
2068 (nargs, args)
2069 int nargs;
2070 register Lisp_Object *args;
2071 {
2072 general_insert_function (insert, insert_from_string, 0, nargs, args);
2073 return Qnil;
2074 }
2075
2076 DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit,
2077 0, MANY, 0,
2078 doc: /* Insert the arguments at point, inheriting properties from adjoining text.
2079 Point and before-insertion markers move forward to end up
2080 after the inserted text.
2081 Any other markers at the point of insertion remain before the text.
2082
2083 If the current buffer is multibyte, unibyte strings are converted
2084 to multibyte for insertion (see `unibyte-char-to-multibyte').
2085 If the current buffer is unibyte, multibyte strings are converted
2086 to unibyte for insertion.
2087
2088 usage: (insert-and-inherit &rest ARGS) */)
2089 (nargs, args)
2090 int nargs;
2091 register Lisp_Object *args;
2092 {
2093 general_insert_function (insert_and_inherit, insert_from_string, 1,
2094 nargs, args);
2095 return Qnil;
2096 }
2097
2098 DEFUN ("insert-before-markers", Finsert_before_markers, Sinsert_before_markers, 0, MANY, 0,
2099 doc: /* Insert strings or characters at point, relocating markers after the text.
2100 Point and markers move forward to end up after the inserted text.
2101
2102 If the current buffer is multibyte, unibyte strings are converted
2103 to multibyte for insertion (see `unibyte-char-to-multibyte').
2104 If the current buffer is unibyte, multibyte strings are converted
2105 to unibyte for insertion.
2106
2107 usage: (insert-before-markers &rest ARGS) */)
2108 (nargs, args)
2109 int nargs;
2110 register Lisp_Object *args;
2111 {
2112 general_insert_function (insert_before_markers,
2113 insert_from_string_before_markers, 0,
2114 nargs, args);
2115 return Qnil;
2116 }
2117
2118 DEFUN ("insert-before-markers-and-inherit", Finsert_and_inherit_before_markers,
2119 Sinsert_and_inherit_before_markers, 0, MANY, 0,
2120 doc: /* Insert text at point, relocating markers and inheriting properties.
2121 Point and markers move forward to end up after the inserted text.
2122
2123 If the current buffer is multibyte, unibyte strings are converted
2124 to multibyte for insertion (see `unibyte-char-to-multibyte').
2125 If the current buffer is unibyte, multibyte strings are converted
2126 to unibyte for insertion.
2127
2128 usage: (insert-before-markers-and-inherit &rest ARGS) */)
2129 (nargs, args)
2130 int nargs;
2131 register Lisp_Object *args;
2132 {
2133 general_insert_function (insert_before_markers_and_inherit,
2134 insert_from_string_before_markers, 1,
2135 nargs, args);
2136 return Qnil;
2137 }
2138 \f
2139 DEFUN ("insert-char", Finsert_char, Sinsert_char, 2, 3, 0,
2140 doc: /* Insert COUNT (second arg) copies of CHARACTER (first arg).
2141 Both arguments are required.
2142 Point, and before-insertion markers, are relocated as in the function `insert'.
2143 The optional third arg INHERIT, if non-nil, says to inherit text properties
2144 from adjoining text, if those properties are sticky. */)
2145 (character, count, inherit)
2146 Lisp_Object character, count, inherit;
2147 {
2148 register unsigned char *string;
2149 register int strlen;
2150 register int i, n;
2151 int len;
2152 unsigned char str[MAX_MULTIBYTE_LENGTH];
2153
2154 CHECK_NUMBER (character);
2155 CHECK_NUMBER (count);
2156
2157 if (!NILP (current_buffer->enable_multibyte_characters))
2158 len = CHAR_STRING (XFASTINT (character), str);
2159 else
2160 str[0] = XFASTINT (character), len = 1;
2161 n = XINT (count) * len;
2162 if (n <= 0)
2163 return Qnil;
2164 strlen = min (n, 256 * len);
2165 string = (unsigned char *) alloca (strlen);
2166 for (i = 0; i < strlen; i++)
2167 string[i] = str[i % len];
2168 while (n >= strlen)
2169 {
2170 QUIT;
2171 if (!NILP (inherit))
2172 insert_and_inherit (string, strlen);
2173 else
2174 insert (string, strlen);
2175 n -= strlen;
2176 }
2177 if (n > 0)
2178 {
2179 if (!NILP (inherit))
2180 insert_and_inherit (string, n);
2181 else
2182 insert (string, n);
2183 }
2184 return Qnil;
2185 }
2186
2187 DEFUN ("insert-byte", Finsert_byte, Sinsert_byte, 2, 3, 0,
2188 doc: /* Insert COUNT (second arg) copies of BYTE (first arg).
2189 Both arguments are required.
2190 BYTE is a number of the range 0..255.
2191
2192 If BYTE is 128..255 and the current buffer is multibyte, the
2193 corresponding eight-bit character is inserted.
2194
2195 Point, and before-insertion markers, are relocated as in the function `insert'.
2196 The optional third arg INHERIT, if non-nil, says to inherit text properties
2197 from adjoining text, if those properties are sticky. */)
2198 (byte, count, inherit)
2199 Lisp_Object byte, count, inherit;
2200 {
2201 CHECK_NUMBER (byte);
2202 if (XINT (byte) < 0 || XINT (byte) > 255)
2203 args_out_of_range_3 (byte, make_number (0), make_number (255));
2204 if (XINT (byte) >= 128
2205 && ! NILP (current_buffer->enable_multibyte_characters))
2206 XSETFASTINT (byte, BYTE8_TO_CHAR (XINT (byte)));
2207 return Finsert_char (byte, count, inherit);
2208 }
2209
2210 \f
2211 /* Making strings from buffer contents. */
2212
2213 /* Return a Lisp_String containing the text of the current buffer from
2214 START to END. If text properties are in use and the current buffer
2215 has properties in the range specified, the resulting string will also
2216 have them, if PROPS is nonzero.
2217
2218 We don't want to use plain old make_string here, because it calls
2219 make_uninit_string, which can cause the buffer arena to be
2220 compacted. make_string has no way of knowing that the data has
2221 been moved, and thus copies the wrong data into the string. This
2222 doesn't effect most of the other users of make_string, so it should
2223 be left as is. But we should use this function when conjuring
2224 buffer substrings. */
2225
2226 Lisp_Object
2227 make_buffer_string (start, end, props)
2228 int start, end;
2229 int props;
2230 {
2231 int start_byte = CHAR_TO_BYTE (start);
2232 int end_byte = CHAR_TO_BYTE (end);
2233
2234 return make_buffer_string_both (start, start_byte, end, end_byte, props);
2235 }
2236
2237 /* Return a Lisp_String containing the text of the current buffer from
2238 START / START_BYTE to END / END_BYTE.
2239
2240 If text properties are in use and the current buffer
2241 has properties in the range specified, the resulting string will also
2242 have them, if PROPS is nonzero.
2243
2244 We don't want to use plain old make_string here, because it calls
2245 make_uninit_string, which can cause the buffer arena to be
2246 compacted. make_string has no way of knowing that the data has
2247 been moved, and thus copies the wrong data into the string. This
2248 doesn't effect most of the other users of make_string, so it should
2249 be left as is. But we should use this function when conjuring
2250 buffer substrings. */
2251
2252 Lisp_Object
2253 make_buffer_string_both (start, start_byte, end, end_byte, props)
2254 int start, start_byte, end, end_byte;
2255 int props;
2256 {
2257 Lisp_Object result, tem, tem1;
2258
2259 if (start < GPT && GPT < end)
2260 move_gap (start);
2261
2262 if (! NILP (current_buffer->enable_multibyte_characters))
2263 result = make_uninit_multibyte_string (end - start, end_byte - start_byte);
2264 else
2265 result = make_uninit_string (end - start);
2266 bcopy (BYTE_POS_ADDR (start_byte), SDATA (result),
2267 end_byte - start_byte);
2268
2269 /* If desired, update and copy the text properties. */
2270 if (props)
2271 {
2272 update_buffer_properties (start, end);
2273
2274 tem = Fnext_property_change (make_number (start), Qnil, make_number (end));
2275 tem1 = Ftext_properties_at (make_number (start), Qnil);
2276
2277 if (XINT (tem) != end || !NILP (tem1))
2278 copy_intervals_to_string (result, current_buffer, start,
2279 end - start);
2280 }
2281
2282 return result;
2283 }
2284
2285 /* Call Vbuffer_access_fontify_functions for the range START ... END
2286 in the current buffer, if necessary. */
2287
2288 static void
2289 update_buffer_properties (start, end)
2290 int start, end;
2291 {
2292 /* If this buffer has some access functions,
2293 call them, specifying the range of the buffer being accessed. */
2294 if (!NILP (Vbuffer_access_fontify_functions))
2295 {
2296 Lisp_Object args[3];
2297 Lisp_Object tem;
2298
2299 args[0] = Qbuffer_access_fontify_functions;
2300 XSETINT (args[1], start);
2301 XSETINT (args[2], end);
2302
2303 /* But don't call them if we can tell that the work
2304 has already been done. */
2305 if (!NILP (Vbuffer_access_fontified_property))
2306 {
2307 tem = Ftext_property_any (args[1], args[2],
2308 Vbuffer_access_fontified_property,
2309 Qnil, Qnil);
2310 if (! NILP (tem))
2311 Frun_hook_with_args (3, args);
2312 }
2313 else
2314 Frun_hook_with_args (3, args);
2315 }
2316 }
2317
2318 DEFUN ("buffer-substring", Fbuffer_substring, Sbuffer_substring, 2, 2, 0,
2319 doc: /* Return the contents of part of the current buffer as a string.
2320 The two arguments START and END are character positions;
2321 they can be in either order.
2322 The string returned is multibyte if the buffer is multibyte.
2323
2324 This function copies the text properties of that part of the buffer
2325 into the result string; if you don't want the text properties,
2326 use `buffer-substring-no-properties' instead. */)
2327 (start, end)
2328 Lisp_Object start, end;
2329 {
2330 register int b, e;
2331
2332 validate_region (&start, &end);
2333 b = XINT (start);
2334 e = XINT (end);
2335
2336 return make_buffer_string (b, e, 1);
2337 }
2338
2339 DEFUN ("buffer-substring-no-properties", Fbuffer_substring_no_properties,
2340 Sbuffer_substring_no_properties, 2, 2, 0,
2341 doc: /* Return the characters of part of the buffer, without the text properties.
2342 The two arguments START and END are character positions;
2343 they can be in either order. */)
2344 (start, end)
2345 Lisp_Object start, end;
2346 {
2347 register int b, e;
2348
2349 validate_region (&start, &end);
2350 b = XINT (start);
2351 e = XINT (end);
2352
2353 return make_buffer_string (b, e, 0);
2354 }
2355
2356 DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0,
2357 doc: /* Return the contents of the current buffer as a string.
2358 If narrowing is in effect, this function returns only the visible part
2359 of the buffer. */)
2360 ()
2361 {
2362 return make_buffer_string (BEGV, ZV, 1);
2363 }
2364
2365 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, Sinsert_buffer_substring,
2366 1, 3, 0,
2367 doc: /* Insert before point a substring of the contents of BUFFER.
2368 BUFFER may be a buffer or a buffer name.
2369 Arguments START and END are character positions specifying the substring.
2370 They default to the values of (point-min) and (point-max) in BUFFER. */)
2371 (buffer, start, end)
2372 Lisp_Object buffer, start, end;
2373 {
2374 register int b, e, temp;
2375 register struct buffer *bp, *obuf;
2376 Lisp_Object buf;
2377
2378 buf = Fget_buffer (buffer);
2379 if (NILP (buf))
2380 nsberror (buffer);
2381 bp = XBUFFER (buf);
2382 if (NILP (bp->name))
2383 error ("Selecting deleted buffer");
2384
2385 if (NILP (start))
2386 b = BUF_BEGV (bp);
2387 else
2388 {
2389 CHECK_NUMBER_COERCE_MARKER (start);
2390 b = XINT (start);
2391 }
2392 if (NILP (end))
2393 e = BUF_ZV (bp);
2394 else
2395 {
2396 CHECK_NUMBER_COERCE_MARKER (end);
2397 e = XINT (end);
2398 }
2399
2400 if (b > e)
2401 temp = b, b = e, e = temp;
2402
2403 if (!(BUF_BEGV (bp) <= b && e <= BUF_ZV (bp)))
2404 args_out_of_range (start, end);
2405
2406 obuf = current_buffer;
2407 set_buffer_internal_1 (bp);
2408 update_buffer_properties (b, e);
2409 set_buffer_internal_1 (obuf);
2410
2411 insert_from_buffer (bp, b, e - b, 0);
2412 return Qnil;
2413 }
2414
2415 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
2416 6, 6, 0,
2417 doc: /* Compare two substrings of two buffers; return result as number.
2418 the value is -N if first string is less after N-1 chars,
2419 +N if first string is greater after N-1 chars, or 0 if strings match.
2420 Each substring is represented as three arguments: BUFFER, START and END.
2421 That makes six args in all, three for each substring.
2422
2423 The value of `case-fold-search' in the current buffer
2424 determines whether case is significant or ignored. */)
2425 (buffer1, start1, end1, buffer2, start2, end2)
2426 Lisp_Object buffer1, start1, end1, buffer2, start2, end2;
2427 {
2428 register int begp1, endp1, begp2, endp2, temp;
2429 register struct buffer *bp1, *bp2;
2430 register Lisp_Object *trt
2431 = (!NILP (current_buffer->case_fold_search)
2432 ? XCHAR_TABLE (current_buffer->case_canon_table)->contents : 0);
2433 int chars = 0;
2434 int i1, i2, i1_byte, i2_byte;
2435
2436 /* Find the first buffer and its substring. */
2437
2438 if (NILP (buffer1))
2439 bp1 = current_buffer;
2440 else
2441 {
2442 Lisp_Object buf1;
2443 buf1 = Fget_buffer (buffer1);
2444 if (NILP (buf1))
2445 nsberror (buffer1);
2446 bp1 = XBUFFER (buf1);
2447 if (NILP (bp1->name))
2448 error ("Selecting deleted buffer");
2449 }
2450
2451 if (NILP (start1))
2452 begp1 = BUF_BEGV (bp1);
2453 else
2454 {
2455 CHECK_NUMBER_COERCE_MARKER (start1);
2456 begp1 = XINT (start1);
2457 }
2458 if (NILP (end1))
2459 endp1 = BUF_ZV (bp1);
2460 else
2461 {
2462 CHECK_NUMBER_COERCE_MARKER (end1);
2463 endp1 = XINT (end1);
2464 }
2465
2466 if (begp1 > endp1)
2467 temp = begp1, begp1 = endp1, endp1 = temp;
2468
2469 if (!(BUF_BEGV (bp1) <= begp1
2470 && begp1 <= endp1
2471 && endp1 <= BUF_ZV (bp1)))
2472 args_out_of_range (start1, end1);
2473
2474 /* Likewise for second substring. */
2475
2476 if (NILP (buffer2))
2477 bp2 = current_buffer;
2478 else
2479 {
2480 Lisp_Object buf2;
2481 buf2 = Fget_buffer (buffer2);
2482 if (NILP (buf2))
2483 nsberror (buffer2);
2484 bp2 = XBUFFER (buf2);
2485 if (NILP (bp2->name))
2486 error ("Selecting deleted buffer");
2487 }
2488
2489 if (NILP (start2))
2490 begp2 = BUF_BEGV (bp2);
2491 else
2492 {
2493 CHECK_NUMBER_COERCE_MARKER (start2);
2494 begp2 = XINT (start2);
2495 }
2496 if (NILP (end2))
2497 endp2 = BUF_ZV (bp2);
2498 else
2499 {
2500 CHECK_NUMBER_COERCE_MARKER (end2);
2501 endp2 = XINT (end2);
2502 }
2503
2504 if (begp2 > endp2)
2505 temp = begp2, begp2 = endp2, endp2 = temp;
2506
2507 if (!(BUF_BEGV (bp2) <= begp2
2508 && begp2 <= endp2
2509 && endp2 <= BUF_ZV (bp2)))
2510 args_out_of_range (start2, end2);
2511
2512 i1 = begp1;
2513 i2 = begp2;
2514 i1_byte = buf_charpos_to_bytepos (bp1, i1);
2515 i2_byte = buf_charpos_to_bytepos (bp2, i2);
2516
2517 while (i1 < endp1 && i2 < endp2)
2518 {
2519 /* When we find a mismatch, we must compare the
2520 characters, not just the bytes. */
2521 int c1, c2;
2522
2523 QUIT;
2524
2525 if (! NILP (bp1->enable_multibyte_characters))
2526 {
2527 c1 = BUF_FETCH_MULTIBYTE_CHAR (bp1, i1_byte);
2528 BUF_INC_POS (bp1, i1_byte);
2529 i1++;
2530 }
2531 else
2532 {
2533 c1 = BUF_FETCH_BYTE (bp1, i1);
2534 c1 = unibyte_char_to_multibyte (c1);
2535 i1++;
2536 }
2537
2538 if (! NILP (bp2->enable_multibyte_characters))
2539 {
2540 c2 = BUF_FETCH_MULTIBYTE_CHAR (bp2, i2_byte);
2541 BUF_INC_POS (bp2, i2_byte);
2542 i2++;
2543 }
2544 else
2545 {
2546 c2 = BUF_FETCH_BYTE (bp2, i2);
2547 c2 = unibyte_char_to_multibyte (c2);
2548 i2++;
2549 }
2550
2551 if (trt)
2552 {
2553 c1 = XINT (trt[c1]);
2554 c2 = XINT (trt[c2]);
2555 }
2556 if (c1 < c2)
2557 return make_number (- 1 - chars);
2558 if (c1 > c2)
2559 return make_number (chars + 1);
2560
2561 chars++;
2562 }
2563
2564 /* The strings match as far as they go.
2565 If one is shorter, that one is less. */
2566 if (chars < endp1 - begp1)
2567 return make_number (chars + 1);
2568 else if (chars < endp2 - begp2)
2569 return make_number (- chars - 1);
2570
2571 /* Same length too => they are equal. */
2572 return make_number (0);
2573 }
2574 \f
2575 static Lisp_Object
2576 subst_char_in_region_unwind (arg)
2577 Lisp_Object arg;
2578 {
2579 return current_buffer->undo_list = arg;
2580 }
2581
2582 static Lisp_Object
2583 subst_char_in_region_unwind_1 (arg)
2584 Lisp_Object arg;
2585 {
2586 return current_buffer->filename = arg;
2587 }
2588
2589 DEFUN ("subst-char-in-region", Fsubst_char_in_region,
2590 Ssubst_char_in_region, 4, 5, 0,
2591 doc: /* From START to END, replace FROMCHAR with TOCHAR each time it occurs.
2592 If optional arg NOUNDO is non-nil, don't record this change for undo
2593 and don't mark the buffer as really changed.
2594 Both characters must have the same length of multi-byte form. */)
2595 (start, end, fromchar, tochar, noundo)
2596 Lisp_Object start, end, fromchar, tochar, noundo;
2597 {
2598 register int pos, pos_byte, stop, i, len, end_byte;
2599 int changed = 0;
2600 unsigned char fromstr[MAX_MULTIBYTE_LENGTH], tostr[MAX_MULTIBYTE_LENGTH];
2601 unsigned char *p;
2602 int count = SPECPDL_INDEX ();
2603 #define COMBINING_NO 0
2604 #define COMBINING_BEFORE 1
2605 #define COMBINING_AFTER 2
2606 #define COMBINING_BOTH (COMBINING_BEFORE | COMBINING_AFTER)
2607 int maybe_byte_combining = COMBINING_NO;
2608 int last_changed = 0;
2609 int multibyte_p = !NILP (current_buffer->enable_multibyte_characters);
2610
2611 validate_region (&start, &end);
2612 CHECK_NUMBER (fromchar);
2613 CHECK_NUMBER (tochar);
2614
2615 if (multibyte_p)
2616 {
2617 len = CHAR_STRING (XFASTINT (fromchar), fromstr);
2618 if (CHAR_STRING (XFASTINT (tochar), tostr) != len)
2619 error ("Characters in subst-char-in-region have different byte-lengths");
2620 if (!ASCII_BYTE_P (*tostr))
2621 {
2622 /* If *TOSTR is in the range 0x80..0x9F and TOCHAR is not a
2623 complete multibyte character, it may be combined with the
2624 after bytes. If it is in the range 0xA0..0xFF, it may be
2625 combined with the before and after bytes. */
2626 if (!CHAR_HEAD_P (*tostr))
2627 maybe_byte_combining = COMBINING_BOTH;
2628 else if (BYTES_BY_CHAR_HEAD (*tostr) > len)
2629 maybe_byte_combining = COMBINING_AFTER;
2630 }
2631 }
2632 else
2633 {
2634 len = 1;
2635 fromstr[0] = XFASTINT (fromchar);
2636 tostr[0] = XFASTINT (tochar);
2637 }
2638
2639 pos = XINT (start);
2640 pos_byte = CHAR_TO_BYTE (pos);
2641 stop = CHAR_TO_BYTE (XINT (end));
2642 end_byte = stop;
2643
2644 /* If we don't want undo, turn off putting stuff on the list.
2645 That's faster than getting rid of things,
2646 and it prevents even the entry for a first change.
2647 Also inhibit locking the file. */
2648 if (!NILP (noundo))
2649 {
2650 record_unwind_protect (subst_char_in_region_unwind,
2651 current_buffer->undo_list);
2652 current_buffer->undo_list = Qt;
2653 /* Don't do file-locking. */
2654 record_unwind_protect (subst_char_in_region_unwind_1,
2655 current_buffer->filename);
2656 current_buffer->filename = Qnil;
2657 }
2658
2659 if (pos_byte < GPT_BYTE)
2660 stop = min (stop, GPT_BYTE);
2661 while (1)
2662 {
2663 int pos_byte_next = pos_byte;
2664
2665 if (pos_byte >= stop)
2666 {
2667 if (pos_byte >= end_byte) break;
2668 stop = end_byte;
2669 }
2670 p = BYTE_POS_ADDR (pos_byte);
2671 if (multibyte_p)
2672 INC_POS (pos_byte_next);
2673 else
2674 ++pos_byte_next;
2675 if (pos_byte_next - pos_byte == len
2676 && p[0] == fromstr[0]
2677 && (len == 1
2678 || (p[1] == fromstr[1]
2679 && (len == 2 || (p[2] == fromstr[2]
2680 && (len == 3 || p[3] == fromstr[3]))))))
2681 {
2682 if (! changed)
2683 {
2684 changed = pos;
2685 modify_region (current_buffer, changed, XINT (end));
2686
2687 if (! NILP (noundo))
2688 {
2689 if (MODIFF - 1 == SAVE_MODIFF)
2690 SAVE_MODIFF++;
2691 if (MODIFF - 1 == current_buffer->auto_save_modified)
2692 current_buffer->auto_save_modified++;
2693 }
2694 }
2695
2696 /* Take care of the case where the new character
2697 combines with neighboring bytes. */
2698 if (maybe_byte_combining
2699 && (maybe_byte_combining == COMBINING_AFTER
2700 ? (pos_byte_next < Z_BYTE
2701 && ! CHAR_HEAD_P (FETCH_BYTE (pos_byte_next)))
2702 : ((pos_byte_next < Z_BYTE
2703 && ! CHAR_HEAD_P (FETCH_BYTE (pos_byte_next)))
2704 || (pos_byte > BEG_BYTE
2705 && ! ASCII_BYTE_P (FETCH_BYTE (pos_byte - 1))))))
2706 {
2707 Lisp_Object tem, string;
2708
2709 struct gcpro gcpro1;
2710
2711 tem = current_buffer->undo_list;
2712 GCPRO1 (tem);
2713
2714 /* Make a multibyte string containing this single character. */
2715 string = make_multibyte_string (tostr, 1, len);
2716 /* replace_range is less efficient, because it moves the gap,
2717 but it handles combining correctly. */
2718 replace_range (pos, pos + 1, string,
2719 0, 0, 1);
2720 pos_byte_next = CHAR_TO_BYTE (pos);
2721 if (pos_byte_next > pos_byte)
2722 /* Before combining happened. We should not increment
2723 POS. So, to cancel the later increment of POS,
2724 decrease it now. */
2725 pos--;
2726 else
2727 INC_POS (pos_byte_next);
2728
2729 if (! NILP (noundo))
2730 current_buffer->undo_list = tem;
2731
2732 UNGCPRO;
2733 }
2734 else
2735 {
2736 if (NILP (noundo))
2737 record_change (pos, 1);
2738 for (i = 0; i < len; i++) *p++ = tostr[i];
2739 }
2740 last_changed = pos + 1;
2741 }
2742 pos_byte = pos_byte_next;
2743 pos++;
2744 }
2745
2746 if (changed)
2747 {
2748 signal_after_change (changed,
2749 last_changed - changed, last_changed - changed);
2750 update_compositions (changed, last_changed, CHECK_ALL);
2751 }
2752
2753 unbind_to (count, Qnil);
2754 return Qnil;
2755 }
2756
2757
2758 static Lisp_Object check_translation P_ ((int, int, int, Lisp_Object));
2759
2760 /* Helper function for Ftranslate_region_internal.
2761
2762 Check if a character sequence at POS (POS_BYTE) matches an element
2763 of VAL. VAL is a list (([FROM-CHAR ...] . TO) ...). If a matching
2764 element is found, return it. Otherwise return Qnil. */
2765
2766 static Lisp_Object
2767 check_translation (pos, pos_byte, end, val)
2768 int pos, pos_byte, end;
2769 Lisp_Object val;
2770 {
2771 int buf_size = 16, buf_used = 0;
2772 int *buf = alloca (sizeof (int) * buf_size);
2773
2774 for (; CONSP (val); val = XCDR (val))
2775 {
2776 Lisp_Object elt;
2777 int len, i;
2778
2779 elt = XCAR (val);
2780 if (! CONSP (elt))
2781 continue;
2782 elt = XCAR (elt);
2783 if (! VECTORP (elt))
2784 continue;
2785 len = ASIZE (elt);
2786 if (len <= end - pos)
2787 {
2788 for (i = 0; i < len; i++)
2789 {
2790 if (buf_used <= i)
2791 {
2792 unsigned char *p = BYTE_POS_ADDR (pos_byte);
2793 int len;
2794
2795 if (buf_used == buf_size)
2796 {
2797 int *newbuf;
2798
2799 buf_size += 16;
2800 newbuf = alloca (sizeof (int) * buf_size);
2801 memcpy (newbuf, buf, sizeof (int) * buf_used);
2802 buf = newbuf;
2803 }
2804 buf[buf_used++] = STRING_CHAR_AND_LENGTH (p, 0, len);
2805 pos_byte += len;
2806 }
2807 if (XINT (AREF (elt, i)) != buf[i])
2808 break;
2809 }
2810 if (i == len)
2811 return XCAR (val);
2812 }
2813 }
2814 return Qnil;
2815 }
2816
2817
2818 DEFUN ("translate-region-internal", Ftranslate_region_internal,
2819 Stranslate_region_internal, 3, 3, 0,
2820 doc: /* Internal use only.
2821 From START to END, translate characters according to TABLE.
2822 TABLE is a string or a char-table; the Nth character in it is the
2823 mapping for the character with code N.
2824 It returns the number of characters changed. */)
2825 (start, end, table)
2826 Lisp_Object start;
2827 Lisp_Object end;
2828 register Lisp_Object table;
2829 {
2830 register unsigned char *tt; /* Trans table. */
2831 register int nc; /* New character. */
2832 int cnt; /* Number of changes made. */
2833 int size; /* Size of translate table. */
2834 int pos, pos_byte, end_pos;
2835 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
2836 int string_multibyte;
2837 Lisp_Object val;
2838
2839 validate_region (&start, &end);
2840 if (CHAR_TABLE_P (table))
2841 {
2842 if (! EQ (XCHAR_TABLE (table)->purpose, Qtranslation_table))
2843 error ("Not a translation table");
2844 tt = NULL;
2845 }
2846 else
2847 {
2848 CHECK_STRING (table);
2849
2850 if (multibyte != (SCHARS (table) < SBYTES (table)))
2851 table = (multibyte
2852 ? string_make_multibyte (table)
2853 : string_make_unibyte (table));
2854 string_multibyte = SCHARS (table) < SBYTES (table);
2855 size = SBYTES (table);
2856 tt = SDATA (table);
2857 }
2858
2859 pos = XINT (start);
2860 pos_byte = CHAR_TO_BYTE (pos);
2861 end_pos = XINT (end);
2862 modify_region (current_buffer, pos, end_pos);
2863
2864 cnt = 0;
2865 for (; pos < end_pos; )
2866 {
2867 register unsigned char *p = BYTE_POS_ADDR (pos_byte);
2868 unsigned char *str, buf[MAX_MULTIBYTE_LENGTH];
2869 int len, str_len;
2870 int oc;
2871 Lisp_Object val;
2872
2873 if (multibyte)
2874 nc = oc = STRING_CHAR_AND_LENGTH (p, 0, len);
2875 else
2876 nc = oc = *p, len = 1;
2877 if (tt)
2878 {
2879 if (oc < size)
2880 {
2881 if (string_multibyte)
2882 {
2883 str = tt + string_char_to_byte (table, oc);
2884 nc = STRING_CHAR_AND_LENGTH (str, 0, str_len);
2885 }
2886 else
2887 {
2888 str = tt + oc;
2889 nc = tt[oc], str_len = 1;
2890 }
2891 }
2892 }
2893 else
2894 {
2895 val = CHAR_TABLE_REF (table, oc);
2896 if (CHARACTERP (val))
2897 {
2898 nc = XFASTINT (val);
2899 str_len = CHAR_STRING (nc, buf);
2900 str = buf;
2901 }
2902 else if (VECTORP (val) || (CONSP (val)))
2903 {
2904 /* VAL is [TO_CHAR ...] or (([FROM-CHAR ...] . TO) ...)
2905 where TO is TO-CHAR or [TO-CHAR ...]. */
2906 nc = -1;
2907 }
2908 }
2909
2910 if (nc != oc)
2911 {
2912 if (nc >= 0)
2913 {
2914 /* Simple one char to one char translation. */
2915 if (len != str_len)
2916 {
2917 Lisp_Object string;
2918
2919 /* This is less efficient, because it moves the gap,
2920 but it should handle multibyte characters correctly. */
2921 string = make_multibyte_string (str, 1, str_len);
2922 replace_range (pos, pos + 1, string, 1, 0, 1);
2923 len = str_len;
2924 }
2925 else
2926 {
2927 record_change (pos, 1);
2928 while (str_len-- > 0)
2929 *p++ = *str++;
2930 signal_after_change (pos, 1, 1);
2931 update_compositions (pos, pos + 1, CHECK_BORDER);
2932 }
2933 ++cnt;
2934 }
2935 else
2936 {
2937 Lisp_Object string;
2938
2939 if (CONSP (val))
2940 {
2941 val = check_translation (pos, pos_byte, end_pos, val);
2942 if (NILP (val))
2943 {
2944 pos_byte += len;
2945 pos++;
2946 continue;
2947 }
2948 /* VAL is ([FROM-CHAR ...] . TO). */
2949 len = ASIZE (XCAR (val));
2950 val = XCDR (val);
2951 }
2952 else
2953 len = 1;
2954
2955 if (VECTORP (val))
2956 {
2957 int i;
2958
2959 string = Fmake_string (make_number (ASIZE (val)),
2960 AREF (val, 0));
2961 for (i = 1; i < ASIZE (val); i++)
2962 Faset (string, make_number (i), AREF (val, i));
2963 }
2964 else
2965 {
2966 string = Fmake_string (make_number (1), val);
2967 }
2968 replace_range (pos, pos + len, string, 1, 0, 1);
2969 pos_byte += SBYTES (string);
2970 pos += SCHARS (string);
2971 cnt += SCHARS (string);
2972 end_pos += SCHARS (string) - len;
2973 continue;
2974 }
2975 }
2976 pos_byte += len;
2977 pos++;
2978 }
2979
2980 return make_number (cnt);
2981 }
2982
2983 DEFUN ("delete-region", Fdelete_region, Sdelete_region, 2, 2, "r",
2984 doc: /* Delete the text between point and mark.
2985
2986 When called from a program, expects two arguments,
2987 positions (integers or markers) specifying the stretch to be deleted. */)
2988 (start, end)
2989 Lisp_Object start, end;
2990 {
2991 validate_region (&start, &end);
2992 del_range (XINT (start), XINT (end));
2993 return Qnil;
2994 }
2995
2996 DEFUN ("delete-and-extract-region", Fdelete_and_extract_region,
2997 Sdelete_and_extract_region, 2, 2, 0,
2998 doc: /* Delete the text between START and END and return it. */)
2999 (start, end)
3000 Lisp_Object start, end;
3001 {
3002 validate_region (&start, &end);
3003 if (XINT (start) == XINT (end))
3004 return build_string ("");
3005 return del_range_1 (XINT (start), XINT (end), 1, 1);
3006 }
3007 \f
3008 DEFUN ("widen", Fwiden, Swiden, 0, 0, "",
3009 doc: /* Remove restrictions (narrowing) from current buffer.
3010 This allows the buffer's full text to be seen and edited. */)
3011 ()
3012 {
3013 if (BEG != BEGV || Z != ZV)
3014 current_buffer->clip_changed = 1;
3015 BEGV = BEG;
3016 BEGV_BYTE = BEG_BYTE;
3017 SET_BUF_ZV_BOTH (current_buffer, Z, Z_BYTE);
3018 /* Changing the buffer bounds invalidates any recorded current column. */
3019 invalidate_current_column ();
3020 return Qnil;
3021 }
3022
3023 DEFUN ("narrow-to-region", Fnarrow_to_region, Snarrow_to_region, 2, 2, "r",
3024 doc: /* Restrict editing in this buffer to the current region.
3025 The rest of the text becomes temporarily invisible and untouchable
3026 but is not deleted; if you save the buffer in a file, the invisible
3027 text is included in the file. \\[widen] makes all visible again.
3028 See also `save-restriction'.
3029
3030 When calling from a program, pass two arguments; positions (integers
3031 or markers) bounding the text that should remain visible. */)
3032 (start, end)
3033 register Lisp_Object start, end;
3034 {
3035 CHECK_NUMBER_COERCE_MARKER (start);
3036 CHECK_NUMBER_COERCE_MARKER (end);
3037
3038 if (XINT (start) > XINT (end))
3039 {
3040 Lisp_Object tem;
3041 tem = start; start = end; end = tem;
3042 }
3043
3044 if (!(BEG <= XINT (start) && XINT (start) <= XINT (end) && XINT (end) <= Z))
3045 args_out_of_range (start, end);
3046
3047 if (BEGV != XFASTINT (start) || ZV != XFASTINT (end))
3048 current_buffer->clip_changed = 1;
3049
3050 SET_BUF_BEGV (current_buffer, XFASTINT (start));
3051 SET_BUF_ZV (current_buffer, XFASTINT (end));
3052 if (PT < XFASTINT (start))
3053 SET_PT (XFASTINT (start));
3054 if (PT > XFASTINT (end))
3055 SET_PT (XFASTINT (end));
3056 /* Changing the buffer bounds invalidates any recorded current column. */
3057 invalidate_current_column ();
3058 return Qnil;
3059 }
3060
3061 Lisp_Object
3062 save_restriction_save ()
3063 {
3064 if (BEGV == BEG && ZV == Z)
3065 /* The common case that the buffer isn't narrowed.
3066 We return just the buffer object, which save_restriction_restore
3067 recognizes as meaning `no restriction'. */
3068 return Fcurrent_buffer ();
3069 else
3070 /* We have to save a restriction, so return a pair of markers, one
3071 for the beginning and one for the end. */
3072 {
3073 Lisp_Object beg, end;
3074
3075 beg = buildmark (BEGV, BEGV_BYTE);
3076 end = buildmark (ZV, ZV_BYTE);
3077
3078 /* END must move forward if text is inserted at its exact location. */
3079 XMARKER(end)->insertion_type = 1;
3080
3081 return Fcons (beg, end);
3082 }
3083 }
3084
3085 Lisp_Object
3086 save_restriction_restore (data)
3087 Lisp_Object data;
3088 {
3089 if (CONSP (data))
3090 /* A pair of marks bounding a saved restriction. */
3091 {
3092 struct Lisp_Marker *beg = XMARKER (XCAR (data));
3093 struct Lisp_Marker *end = XMARKER (XCDR (data));
3094 struct buffer *buf = beg->buffer; /* END should have the same buffer. */
3095
3096 if (buf /* Verify marker still points to a buffer. */
3097 && (beg->charpos != BUF_BEGV (buf) || end->charpos != BUF_ZV (buf)))
3098 /* The restriction has changed from the saved one, so restore
3099 the saved restriction. */
3100 {
3101 int pt = BUF_PT (buf);
3102
3103 SET_BUF_BEGV_BOTH (buf, beg->charpos, beg->bytepos);
3104 SET_BUF_ZV_BOTH (buf, end->charpos, end->bytepos);
3105
3106 if (pt < beg->charpos || pt > end->charpos)
3107 /* The point is outside the new visible range, move it inside. */
3108 SET_BUF_PT_BOTH (buf,
3109 clip_to_bounds (beg->charpos, pt, end->charpos),
3110 clip_to_bounds (beg->bytepos, BUF_PT_BYTE (buf),
3111 end->bytepos));
3112
3113 buf->clip_changed = 1; /* Remember that the narrowing changed. */
3114 }
3115 }
3116 else
3117 /* A buffer, which means that there was no old restriction. */
3118 {
3119 struct buffer *buf = XBUFFER (data);
3120
3121 if (buf /* Verify marker still points to a buffer. */
3122 && (BUF_BEGV (buf) != BUF_BEG (buf) || BUF_ZV (buf) != BUF_Z (buf)))
3123 /* The buffer has been narrowed, get rid of the narrowing. */
3124 {
3125 SET_BUF_BEGV_BOTH (buf, BUF_BEG (buf), BUF_BEG_BYTE (buf));
3126 SET_BUF_ZV_BOTH (buf, BUF_Z (buf), BUF_Z_BYTE (buf));
3127
3128 buf->clip_changed = 1; /* Remember that the narrowing changed. */
3129 }
3130 }
3131
3132 return Qnil;
3133 }
3134
3135 DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0,
3136 doc: /* Execute BODY, saving and restoring current buffer's restrictions.
3137 The buffer's restrictions make parts of the beginning and end invisible.
3138 (They are set up with `narrow-to-region' and eliminated with `widen'.)
3139 This special form, `save-restriction', saves the current buffer's restrictions
3140 when it is entered, and restores them when it is exited.
3141 So any `narrow-to-region' within BODY lasts only until the end of the form.
3142 The old restrictions settings are restored
3143 even in case of abnormal exit (throw or error).
3144
3145 The value returned is the value of the last form in BODY.
3146
3147 Note: if you are using both `save-excursion' and `save-restriction',
3148 use `save-excursion' outermost:
3149 (save-excursion (save-restriction ...))
3150
3151 usage: (save-restriction &rest BODY) */)
3152 (body)
3153 Lisp_Object body;
3154 {
3155 register Lisp_Object val;
3156 int count = SPECPDL_INDEX ();
3157
3158 record_unwind_protect (save_restriction_restore, save_restriction_save ());
3159 val = Fprogn (body);
3160 return unbind_to (count, val);
3161 }
3162 \f
3163 /* Buffer for the most recent text displayed by Fmessage_box. */
3164 static char *message_text;
3165
3166 /* Allocated length of that buffer. */
3167 static int message_length;
3168
3169 DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
3170 doc: /* Print a one-line message at the bottom of the screen.
3171 The first argument is a format control string, and the rest are data
3172 to be formatted under control of the string. See `format' for details.
3173
3174 If the first argument is nil, clear any existing message; let the
3175 minibuffer contents show.
3176
3177 usage: (message STRING &rest ARGS) */)
3178 (nargs, args)
3179 int nargs;
3180 Lisp_Object *args;
3181 {
3182 if (NILP (args[0])
3183 || (STRINGP (args[0])
3184 && SBYTES (args[0]) == 0))
3185 {
3186 message (0);
3187 return Qnil;
3188 }
3189 else
3190 {
3191 register Lisp_Object val;
3192 val = Fformat (nargs, args);
3193 message3 (val, SBYTES (val), STRING_MULTIBYTE (val));
3194 return val;
3195 }
3196 }
3197
3198 DEFUN ("message-box", Fmessage_box, Smessage_box, 1, MANY, 0,
3199 doc: /* Display a message, in a dialog box if possible.
3200 If a dialog box is not available, use the echo area.
3201 The first argument is a format control string, and the rest are data
3202 to be formatted under control of the string. See `format' for details.
3203
3204 If the first argument is nil, clear any existing message; let the
3205 minibuffer contents show.
3206
3207 usage: (message-box STRING &rest ARGS) */)
3208 (nargs, args)
3209 int nargs;
3210 Lisp_Object *args;
3211 {
3212 if (NILP (args[0]))
3213 {
3214 message (0);
3215 return Qnil;
3216 }
3217 else
3218 {
3219 register Lisp_Object val;
3220 val = Fformat (nargs, args);
3221 #ifdef HAVE_MENUS
3222 /* The MS-DOS frames support popup menus even though they are
3223 not FRAME_WINDOW_P. */
3224 if (FRAME_WINDOW_P (XFRAME (selected_frame))
3225 || FRAME_MSDOS_P (XFRAME (selected_frame)))
3226 {
3227 Lisp_Object pane, menu, obj;
3228 struct gcpro gcpro1;
3229 pane = Fcons (Fcons (build_string ("OK"), Qt), Qnil);
3230 GCPRO1 (pane);
3231 menu = Fcons (val, pane);
3232 obj = Fx_popup_dialog (Qt, menu);
3233 UNGCPRO;
3234 return val;
3235 }
3236 #endif /* HAVE_MENUS */
3237 /* Copy the data so that it won't move when we GC. */
3238 if (! message_text)
3239 {
3240 message_text = (char *)xmalloc (80);
3241 message_length = 80;
3242 }
3243 if (SBYTES (val) > message_length)
3244 {
3245 message_length = SBYTES (val);
3246 message_text = (char *)xrealloc (message_text, message_length);
3247 }
3248 bcopy (SDATA (val), message_text, SBYTES (val));
3249 message2 (message_text, SBYTES (val),
3250 STRING_MULTIBYTE (val));
3251 return val;
3252 }
3253 }
3254 #ifdef HAVE_MENUS
3255 extern Lisp_Object last_nonmenu_event;
3256 #endif
3257
3258 DEFUN ("message-or-box", Fmessage_or_box, Smessage_or_box, 1, MANY, 0,
3259 doc: /* Display a message in a dialog box or in the echo area.
3260 If this command was invoked with the mouse, use a dialog box if
3261 `use-dialog-box' is non-nil.
3262 Otherwise, use the echo area.
3263 The first argument is a format control string, and the rest are data
3264 to be formatted under control of the string. See `format' for details.
3265
3266 If the first argument is nil, clear any existing message; let the
3267 minibuffer contents show.
3268
3269 usage: (message-or-box STRING &rest ARGS) */)
3270 (nargs, args)
3271 int nargs;
3272 Lisp_Object *args;
3273 {
3274 #ifdef HAVE_MENUS
3275 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
3276 && use_dialog_box)
3277 return Fmessage_box (nargs, args);
3278 #endif
3279 return Fmessage (nargs, args);
3280 }
3281
3282 DEFUN ("current-message", Fcurrent_message, Scurrent_message, 0, 0, 0,
3283 doc: /* Return the string currently displayed in the echo area, or nil if none. */)
3284 ()
3285 {
3286 return current_message ();
3287 }
3288
3289
3290 DEFUN ("propertize", Fpropertize, Spropertize, 1, MANY, 0,
3291 doc: /* Return a copy of STRING with text properties added.
3292 First argument is the string to copy.
3293 Remaining arguments form a sequence of PROPERTY VALUE pairs for text
3294 properties to add to the result.
3295 usage: (propertize STRING &rest PROPERTIES) */)
3296 (nargs, args)
3297 int nargs;
3298 Lisp_Object *args;
3299 {
3300 Lisp_Object properties, string;
3301 struct gcpro gcpro1, gcpro2;
3302 int i;
3303
3304 /* Number of args must be odd. */
3305 if ((nargs & 1) == 0 || nargs < 1)
3306 error ("Wrong number of arguments");
3307
3308 properties = string = Qnil;
3309 GCPRO2 (properties, string);
3310
3311 /* First argument must be a string. */
3312 CHECK_STRING (args[0]);
3313 string = Fcopy_sequence (args[0]);
3314
3315 for (i = 1; i < nargs; i += 2)
3316 {
3317 CHECK_SYMBOL (args[i]);
3318 properties = Fcons (args[i], Fcons (args[i + 1], properties));
3319 }
3320
3321 Fadd_text_properties (make_number (0),
3322 make_number (SCHARS (string)),
3323 properties, string);
3324 RETURN_UNGCPRO (string);
3325 }
3326
3327
3328 /* Number of bytes that STRING will occupy when put into the result.
3329 MULTIBYTE is nonzero if the result should be multibyte. */
3330
3331 #define CONVERTED_BYTE_SIZE(MULTIBYTE, STRING) \
3332 (((MULTIBYTE) && ! STRING_MULTIBYTE (STRING)) \
3333 ? count_size_as_multibyte (SDATA (STRING), SBYTES (STRING)) \
3334 : SBYTES (STRING))
3335
3336 DEFUN ("format", Fformat, Sformat, 1, MANY, 0,
3337 doc: /* Format a string out of a control-string and arguments.
3338 The first argument is a control string.
3339 The other arguments are substituted into it to make the result, a string.
3340 It may contain %-sequences meaning to substitute the next argument.
3341 %s means print a string argument. Actually, prints any object, with `princ'.
3342 %d means print as number in decimal (%o octal, %x hex).
3343 %X is like %x, but uses upper case.
3344 %e means print a number in exponential notation.
3345 %f means print a number in decimal-point notation.
3346 %g means print a number in exponential notation
3347 or decimal-point notation, whichever uses fewer characters.
3348 %c means print a number as a single character.
3349 %S means print any object as an s-expression (using `prin1').
3350 The argument used for %d, %o, %x, %e, %f, %g or %c must be a number.
3351 Use %% to put a single % into the output.
3352
3353 The basic structure of a %-sequence is
3354 % <flags> <width> <precision> character
3355 where flags is [- #0]+, width is [0-9]+, and precision is .[0-9]+
3356
3357 usage: (format STRING &rest OBJECTS) */)
3358 (nargs, args)
3359 int nargs;
3360 register Lisp_Object *args;
3361 {
3362 register int n; /* The number of the next arg to substitute */
3363 register int total; /* An estimate of the final length */
3364 char *buf, *p;
3365 register unsigned char *format, *end, *format_start;
3366 int nchars;
3367 /* Nonzero if the output should be a multibyte string,
3368 which is true if any of the inputs is one. */
3369 int multibyte = 0;
3370 /* When we make a multibyte string, we must pay attention to the
3371 byte combining problem, i.e., a byte may be combined with a
3372 multibyte charcter of the previous string. This flag tells if we
3373 must consider such a situation or not. */
3374 int maybe_combine_byte;
3375 unsigned char *this_format;
3376 /* Precision for each spec, or -1, a flag value meaning no precision
3377 was given in that spec. Element 0, corresonding to the format
3378 string itself, will not be used. Element NARGS, corresponding to
3379 no argument, *will* be assigned to in the case that a `%' and `.'
3380 occur after the final format specifier. */
3381 int *precision = (int *) (alloca((nargs + 1) * sizeof (int)));
3382 int longest_format;
3383 Lisp_Object val;
3384 int arg_intervals = 0;
3385 USE_SAFE_ALLOCA;
3386
3387 /* discarded[I] is 1 if byte I of the format
3388 string was not copied into the output.
3389 It is 2 if byte I was not the first byte of its character. */
3390 char *discarded = 0;
3391
3392 /* Each element records, for one argument,
3393 the start and end bytepos in the output string,
3394 and whether the argument is a string with intervals.
3395 info[0] is unused. Unused elements have -1 for start. */
3396 struct info
3397 {
3398 int start, end, intervals;
3399 } *info = 0;
3400
3401 /* It should not be necessary to GCPRO ARGS, because
3402 the caller in the interpreter should take care of that. */
3403
3404 /* Try to determine whether the result should be multibyte.
3405 This is not always right; sometimes the result needs to be multibyte
3406 because of an object that we will pass through prin1,
3407 and in that case, we won't know it here. */
3408 for (n = 0; n < nargs; n++)
3409 {
3410 if (STRINGP (args[n]) && STRING_MULTIBYTE (args[n]))
3411 multibyte = 1;
3412 /* Piggyback on this loop to initialize precision[N]. */
3413 precision[n] = -1;
3414 }
3415 precision[nargs] = -1;
3416
3417 CHECK_STRING (args[0]);
3418 /* We may have to change "%S" to "%s". */
3419 args[0] = Fcopy_sequence (args[0]);
3420
3421 /* GC should never happen here, so abort if it does. */
3422 abort_on_gc++;
3423
3424 /* If we start out planning a unibyte result,
3425 then discover it has to be multibyte, we jump back to retry.
3426 That can only happen from the first large while loop below. */
3427 retry:
3428
3429 format = SDATA (args[0]);
3430 format_start = format;
3431 end = format + SBYTES (args[0]);
3432 longest_format = 0;
3433
3434 /* Make room in result for all the non-%-codes in the control string. */
3435 total = 5 + CONVERTED_BYTE_SIZE (multibyte, args[0]) + 1;
3436
3437 /* Allocate the info and discarded tables. */
3438 {
3439 int nbytes = (nargs+1) * sizeof *info;
3440 int i;
3441 if (!info)
3442 info = (struct info *) alloca (nbytes);
3443 bzero (info, nbytes);
3444 for (i = 0; i <= nargs; i++)
3445 info[i].start = -1;
3446 if (!discarded)
3447 SAFE_ALLOCA (discarded, char *, SBYTES (args[0]));
3448 bzero (discarded, SBYTES (args[0]));
3449 }
3450
3451 /* Add to TOTAL enough space to hold the converted arguments. */
3452
3453 n = 0;
3454 while (format != end)
3455 if (*format++ == '%')
3456 {
3457 int thissize = 0;
3458 int actual_width = 0;
3459 unsigned char *this_format_start = format - 1;
3460 int field_width = 0;
3461
3462 /* General format specifications look like
3463
3464 '%' [flags] [field-width] [precision] format
3465
3466 where
3467
3468 flags ::= [- #0]+
3469 field-width ::= [0-9]+
3470 precision ::= '.' [0-9]*
3471
3472 If a field-width is specified, it specifies to which width
3473 the output should be padded with blanks, iff the output
3474 string is shorter than field-width.
3475
3476 If precision is specified, it specifies the number of
3477 digits to print after the '.' for floats, or the max.
3478 number of chars to print from a string. */
3479
3480 while (index ("-0# ", *format))
3481 ++format;
3482
3483 if (*format >= '0' && *format <= '9')
3484 {
3485 for (field_width = 0; *format >= '0' && *format <= '9'; ++format)
3486 field_width = 10 * field_width + *format - '0';
3487 }
3488
3489 /* N is not incremented for another few lines below, so refer to
3490 element N+1 (which might be precision[NARGS]). */
3491 if (*format == '.')
3492 {
3493 ++format;
3494 for (precision[n+1] = 0; *format >= '0' && *format <= '9'; ++format)
3495 precision[n+1] = 10 * precision[n+1] + *format - '0';
3496 }
3497
3498 if (format - this_format_start + 1 > longest_format)
3499 longest_format = format - this_format_start + 1;
3500
3501 if (format == end)
3502 error ("Format string ends in middle of format specifier");
3503 if (*format == '%')
3504 format++;
3505 else if (++n >= nargs)
3506 error ("Not enough arguments for format string");
3507 else if (*format == 'S')
3508 {
3509 /* For `S', prin1 the argument and then treat like a string. */
3510 register Lisp_Object tem;
3511 tem = Fprin1_to_string (args[n], Qnil);
3512 if (STRING_MULTIBYTE (tem) && ! multibyte)
3513 {
3514 multibyte = 1;
3515 goto retry;
3516 }
3517 args[n] = tem;
3518 /* If we restart the loop, we should not come here again
3519 because args[n] is now a string and calling
3520 Fprin1_to_string on it produces superflous double
3521 quotes. So, change "%S" to "%s" now. */
3522 *format = 's';
3523 goto string;
3524 }
3525 else if (SYMBOLP (args[n]))
3526 {
3527 args[n] = SYMBOL_NAME (args[n]);
3528 if (STRING_MULTIBYTE (args[n]) && ! multibyte)
3529 {
3530 multibyte = 1;
3531 goto retry;
3532 }
3533 goto string;
3534 }
3535 else if (STRINGP (args[n]))
3536 {
3537 string:
3538 if (*format != 's' && *format != 'S')
3539 error ("Format specifier doesn't match argument type");
3540 /* In the case (PRECISION[N] > 0), THISSIZE may not need
3541 to be as large as is calculated here. Easy check for
3542 the case PRECISION = 0. */
3543 thissize = precision[n] ? CONVERTED_BYTE_SIZE (multibyte, args[n]) : 0;
3544 actual_width = lisp_string_width (args[n], -1, NULL, NULL);
3545 }
3546 /* Would get MPV otherwise, since Lisp_Int's `point' to low memory. */
3547 else if (INTEGERP (args[n]) && *format != 's')
3548 {
3549 /* The following loop assumes the Lisp type indicates
3550 the proper way to pass the argument.
3551 So make sure we have a flonum if the argument should
3552 be a double. */
3553 if (*format == 'e' || *format == 'f' || *format == 'g')
3554 args[n] = Ffloat (args[n]);
3555 else
3556 if (*format != 'd' && *format != 'o' && *format != 'x'
3557 && *format != 'i' && *format != 'X' && *format != 'c')
3558 error ("Invalid format operation %%%c", *format);
3559
3560 thissize = 30;
3561 if (*format == 'c')
3562 {
3563 if (! ASCII_CHAR_P (XINT (args[n]))
3564 /* Note: No one can remeber why we have to treat
3565 the character 0 as a multibyte character here.
3566 But, until it causes a real problem, let's
3567 don't change it. */
3568 || XINT (args[n]) == 0)
3569 {
3570 if (! multibyte)
3571 {
3572 multibyte = 1;
3573 goto retry;
3574 }
3575 args[n] = Fchar_to_string (args[n]);
3576 thissize = SBYTES (args[n]);
3577 }
3578 else if (! ASCII_BYTE_P (XINT (args[n])) && multibyte)
3579 {
3580 args[n]
3581 = Fchar_to_string (Funibyte_char_to_multibyte (args[n]));
3582 thissize = SBYTES (args[n]);
3583 }
3584 }
3585 }
3586 else if (FLOATP (args[n]) && *format != 's')
3587 {
3588 if (! (*format == 'e' || *format == 'f' || *format == 'g'))
3589 {
3590 if (*format != 'd' && *format != 'o' && *format != 'x'
3591 && *format != 'i' && *format != 'X' && *format != 'c')
3592 error ("Invalid format operation %%%c", *format);
3593 args[n] = Ftruncate (args[n], Qnil);
3594 }
3595
3596 /* Note that we're using sprintf to print floats,
3597 so we have to take into account what that function
3598 prints. */
3599 /* Filter out flag value of -1. */
3600 thissize = (MAX_10_EXP + 100
3601 + (precision[n] > 0 ? precision[n] : 0));
3602 }
3603 else
3604 {
3605 /* Anything but a string, convert to a string using princ. */
3606 register Lisp_Object tem;
3607 tem = Fprin1_to_string (args[n], Qt);
3608 if (STRING_MULTIBYTE (tem) && ! multibyte)
3609 {
3610 multibyte = 1;
3611 goto retry;
3612 }
3613 args[n] = tem;
3614 goto string;
3615 }
3616
3617 thissize += max (0, field_width - actual_width);
3618 total += thissize + 4;
3619 }
3620
3621 abort_on_gc--;
3622
3623 /* Now we can no longer jump to retry.
3624 TOTAL and LONGEST_FORMAT are known for certain. */
3625
3626 this_format = (unsigned char *) alloca (longest_format + 1);
3627
3628 /* Allocate the space for the result.
3629 Note that TOTAL is an overestimate. */
3630 SAFE_ALLOCA (buf, char *, total);
3631
3632 p = buf;
3633 nchars = 0;
3634 n = 0;
3635
3636 /* Scan the format and store result in BUF. */
3637 format = SDATA (args[0]);
3638 format_start = format;
3639 end = format + SBYTES (args[0]);
3640 maybe_combine_byte = 0;
3641 while (format != end)
3642 {
3643 if (*format == '%')
3644 {
3645 int minlen;
3646 int negative = 0;
3647 unsigned char *this_format_start = format;
3648
3649 discarded[format - format_start] = 1;
3650 format++;
3651
3652 while (index("-0# ", *format))
3653 {
3654 if (*format == '-')
3655 {
3656 negative = 1;
3657 }
3658 discarded[format - format_start] = 1;
3659 ++format;
3660 }
3661
3662 minlen = atoi (format);
3663
3664 while ((*format >= '0' && *format <= '9') || *format == '.')
3665 {
3666 discarded[format - format_start] = 1;
3667 format++;
3668 }
3669
3670 if (*format++ == '%')
3671 {
3672 *p++ = '%';
3673 nchars++;
3674 continue;
3675 }
3676
3677 ++n;
3678
3679 discarded[format - format_start - 1] = 1;
3680 info[n].start = nchars;
3681
3682 if (STRINGP (args[n]))
3683 {
3684 /* handle case (precision[n] >= 0) */
3685
3686 int width, padding;
3687 int nbytes, start, end;
3688 int nchars_string;
3689
3690 /* lisp_string_width ignores a precision of 0, but GNU
3691 libc functions print 0 characters when the precision
3692 is 0. Imitate libc behavior here. Changing
3693 lisp_string_width is the right thing, and will be
3694 done, but meanwhile we work with it. */
3695
3696 if (precision[n] == 0)
3697 width = nchars_string = nbytes = 0;
3698 else if (precision[n] > 0)
3699 width = lisp_string_width (args[n], precision[n], &nchars_string, &nbytes);
3700 else
3701 { /* no precision spec given for this argument */
3702 width = lisp_string_width (args[n], -1, NULL, NULL);
3703 nbytes = SBYTES (args[n]);
3704 nchars_string = SCHARS (args[n]);
3705 }
3706
3707 /* If spec requires it, pad on right with spaces. */
3708 padding = minlen - width;
3709 if (! negative)
3710 while (padding-- > 0)
3711 {
3712 *p++ = ' ';
3713 ++nchars;
3714 }
3715
3716 start = nchars;
3717 nchars += nchars_string;
3718 end = nchars;
3719
3720 if (p > buf
3721 && multibyte
3722 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
3723 && STRING_MULTIBYTE (args[n])
3724 && !CHAR_HEAD_P (SREF (args[n], 0)))
3725 maybe_combine_byte = 1;
3726
3727 p += copy_text (SDATA (args[n]), p,
3728 nbytes,
3729 STRING_MULTIBYTE (args[n]), multibyte);
3730
3731 if (negative)
3732 while (padding-- > 0)
3733 {
3734 *p++ = ' ';
3735 nchars++;
3736 }
3737
3738 /* If this argument has text properties, record where
3739 in the result string it appears. */
3740 if (STRING_INTERVALS (args[n]))
3741 info[n].intervals = arg_intervals = 1;
3742 }
3743 else if (INTEGERP (args[n]) || FLOATP (args[n]))
3744 {
3745 int this_nchars;
3746
3747 bcopy (this_format_start, this_format,
3748 format - this_format_start);
3749 this_format[format - this_format_start] = 0;
3750
3751 if (INTEGERP (args[n]))
3752 sprintf (p, this_format, XINT (args[n]));
3753 else
3754 sprintf (p, this_format, XFLOAT_DATA (args[n]));
3755
3756 if (p > buf
3757 && multibyte
3758 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
3759 && !CHAR_HEAD_P (*((unsigned char *) p)))
3760 maybe_combine_byte = 1;
3761 this_nchars = strlen (p);
3762 if (multibyte)
3763 p += str_to_multibyte (p, buf + total - 1 - p, this_nchars);
3764 else
3765 p += this_nchars;
3766 nchars += this_nchars;
3767 }
3768
3769 info[n].end = nchars;
3770 }
3771 else if (STRING_MULTIBYTE (args[0]))
3772 {
3773 /* Copy a whole multibyte character. */
3774 if (p > buf
3775 && multibyte
3776 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
3777 && !CHAR_HEAD_P (*format))
3778 maybe_combine_byte = 1;
3779 *p++ = *format++;
3780 while (! CHAR_HEAD_P (*format))
3781 {
3782 discarded[format - format_start] = 2;
3783 *p++ = *format++;
3784 }
3785 nchars++;
3786 }
3787 else if (multibyte)
3788 {
3789 /* Convert a single-byte character to multibyte. */
3790 int len = copy_text (format, p, 1, 0, 1);
3791
3792 p += len;
3793 format++;
3794 nchars++;
3795 }
3796 else
3797 *p++ = *format++, nchars++;
3798 }
3799
3800 if (p > buf + total)
3801 abort ();
3802
3803 if (maybe_combine_byte)
3804 nchars = multibyte_chars_in_text (buf, p - buf);
3805 val = make_specified_string (buf, nchars, p - buf, multibyte);
3806
3807 /* If we allocated BUF with malloc, free it too. */
3808 SAFE_FREE ();
3809
3810 /* If the format string has text properties, or any of the string
3811 arguments has text properties, set up text properties of the
3812 result string. */
3813
3814 if (STRING_INTERVALS (args[0]) || arg_intervals)
3815 {
3816 Lisp_Object len, new_len, props;
3817 struct gcpro gcpro1;
3818
3819 /* Add text properties from the format string. */
3820 len = make_number (SCHARS (args[0]));
3821 props = text_property_list (args[0], make_number (0), len, Qnil);
3822 GCPRO1 (props);
3823
3824 if (CONSP (props))
3825 {
3826 int bytepos = 0, position = 0, translated = 0, argn = 1;
3827 Lisp_Object list;
3828
3829 /* Adjust the bounds of each text property
3830 to the proper start and end in the output string. */
3831
3832 /* Put the positions in PROPS in increasing order, so that
3833 we can do (effectively) one scan through the position
3834 space of the format string. */
3835 props = Fnreverse (props);
3836
3837 /* BYTEPOS is the byte position in the format string,
3838 POSITION is the untranslated char position in it,
3839 TRANSLATED is the translated char position in BUF,
3840 and ARGN is the number of the next arg we will come to. */
3841 for (list = props; CONSP (list); list = XCDR (list))
3842 {
3843 Lisp_Object item;
3844 int pos;
3845
3846 item = XCAR (list);
3847
3848 /* First adjust the property start position. */
3849 pos = XINT (XCAR (item));
3850
3851 /* Advance BYTEPOS, POSITION, TRANSLATED and ARGN
3852 up to this position. */
3853 for (; position < pos; bytepos++)
3854 {
3855 if (! discarded[bytepos])
3856 position++, translated++;
3857 else if (discarded[bytepos] == 1)
3858 {
3859 position++;
3860 if (translated == info[argn].start)
3861 {
3862 translated += info[argn].end - info[argn].start;
3863 argn++;
3864 }
3865 }
3866 }
3867
3868 XSETCAR (item, make_number (translated));
3869
3870 /* Likewise adjust the property end position. */
3871 pos = XINT (XCAR (XCDR (item)));
3872
3873 for (; bytepos < pos; bytepos++)
3874 {
3875 if (! discarded[bytepos])
3876 position++, translated++;
3877 else if (discarded[bytepos] == 1)
3878 {
3879 position++;
3880 if (translated == info[argn].start)
3881 {
3882 translated += info[argn].end - info[argn].start;
3883 argn++;
3884 }
3885 }
3886 }
3887
3888 XSETCAR (XCDR (item), make_number (translated));
3889 }
3890
3891 add_text_properties_from_list (val, props, make_number (0));
3892 }
3893
3894 /* Add text properties from arguments. */
3895 if (arg_intervals)
3896 for (n = 1; n < nargs; ++n)
3897 if (info[n].intervals)
3898 {
3899 len = make_number (SCHARS (args[n]));
3900 new_len = make_number (info[n].end - info[n].start);
3901 props = text_property_list (args[n], make_number (0), len, Qnil);
3902 extend_property_ranges (props, len, new_len);
3903 /* If successive arguments have properites, be sure that
3904 the value of `composition' property be the copy. */
3905 if (n > 1 && info[n - 1].end)
3906 make_composition_value_copy (props);
3907 add_text_properties_from_list (val, props,
3908 make_number (info[n].start));
3909 }
3910
3911 UNGCPRO;
3912 }
3913
3914 return val;
3915 }
3916
3917 Lisp_Object
3918 format2 (string1, arg0, arg1)
3919 char *string1;
3920 Lisp_Object arg0, arg1;
3921 {
3922 Lisp_Object args[3];
3923 args[0] = build_string (string1);
3924 args[1] = arg0;
3925 args[2] = arg1;
3926 return Fformat (3, args);
3927 }
3928 \f
3929 DEFUN ("char-equal", Fchar_equal, Schar_equal, 2, 2, 0,
3930 doc: /* Return t if two characters match, optionally ignoring case.
3931 Both arguments must be characters (i.e. integers).
3932 Case is ignored if `case-fold-search' is non-nil in the current buffer. */)
3933 (c1, c2)
3934 register Lisp_Object c1, c2;
3935 {
3936 int i1, i2;
3937 CHECK_NUMBER (c1);
3938 CHECK_NUMBER (c2);
3939
3940 if (XINT (c1) == XINT (c2))
3941 return Qt;
3942 if (NILP (current_buffer->case_fold_search))
3943 return Qnil;
3944
3945 /* Do these in separate statements,
3946 then compare the variables.
3947 because of the way DOWNCASE uses temp variables. */
3948 i1 = XFASTINT (c1);
3949 if (NILP (current_buffer->enable_multibyte_characters)
3950 && ! ASCII_CHAR_P (i1))
3951 {
3952 MAKE_CHAR_MULTIBYTE (i1);
3953 }
3954 i2 = XFASTINT (c2);
3955 if (NILP (current_buffer->enable_multibyte_characters)
3956 && ! ASCII_CHAR_P (i2))
3957 {
3958 MAKE_CHAR_MULTIBYTE (i2);
3959 }
3960 i1 = DOWNCASE (i1);
3961 i2 = DOWNCASE (i2);
3962 return (i1 == i2 ? Qt : Qnil);
3963 }
3964 \f
3965 /* Transpose the markers in two regions of the current buffer, and
3966 adjust the ones between them if necessary (i.e.: if the regions
3967 differ in size).
3968
3969 START1, END1 are the character positions of the first region.
3970 START1_BYTE, END1_BYTE are the byte positions.
3971 START2, END2 are the character positions of the second region.
3972 START2_BYTE, END2_BYTE are the byte positions.
3973
3974 Traverses the entire marker list of the buffer to do so, adding an
3975 appropriate amount to some, subtracting from some, and leaving the
3976 rest untouched. Most of this is copied from adjust_markers in insdel.c.
3977
3978 It's the caller's job to ensure that START1 <= END1 <= START2 <= END2. */
3979
3980 static void
3981 transpose_markers (start1, end1, start2, end2,
3982 start1_byte, end1_byte, start2_byte, end2_byte)
3983 register int start1, end1, start2, end2;
3984 register int start1_byte, end1_byte, start2_byte, end2_byte;
3985 {
3986 register int amt1, amt1_byte, amt2, amt2_byte, diff, diff_byte, mpos;
3987 register struct Lisp_Marker *marker;
3988
3989 /* Update point as if it were a marker. */
3990 if (PT < start1)
3991 ;
3992 else if (PT < end1)
3993 TEMP_SET_PT_BOTH (PT + (end2 - end1),
3994 PT_BYTE + (end2_byte - end1_byte));
3995 else if (PT < start2)
3996 TEMP_SET_PT_BOTH (PT + (end2 - start2) - (end1 - start1),
3997 (PT_BYTE + (end2_byte - start2_byte)
3998 - (end1_byte - start1_byte)));
3999 else if (PT < end2)
4000 TEMP_SET_PT_BOTH (PT - (start2 - start1),
4001 PT_BYTE - (start2_byte - start1_byte));
4002
4003 /* We used to adjust the endpoints here to account for the gap, but that
4004 isn't good enough. Even if we assume the caller has tried to move the
4005 gap out of our way, it might still be at start1 exactly, for example;
4006 and that places it `inside' the interval, for our purposes. The amount
4007 of adjustment is nontrivial if there's a `denormalized' marker whose
4008 position is between GPT and GPT + GAP_SIZE, so it's simpler to leave
4009 the dirty work to Fmarker_position, below. */
4010
4011 /* The difference between the region's lengths */
4012 diff = (end2 - start2) - (end1 - start1);
4013 diff_byte = (end2_byte - start2_byte) - (end1_byte - start1_byte);
4014
4015 /* For shifting each marker in a region by the length of the other
4016 region plus the distance between the regions. */
4017 amt1 = (end2 - start2) + (start2 - end1);
4018 amt2 = (end1 - start1) + (start2 - end1);
4019 amt1_byte = (end2_byte - start2_byte) + (start2_byte - end1_byte);
4020 amt2_byte = (end1_byte - start1_byte) + (start2_byte - end1_byte);
4021
4022 for (marker = BUF_MARKERS (current_buffer); marker; marker = marker->next)
4023 {
4024 mpos = marker->bytepos;
4025 if (mpos >= start1_byte && mpos < end2_byte)
4026 {
4027 if (mpos < end1_byte)
4028 mpos += amt1_byte;
4029 else if (mpos < start2_byte)
4030 mpos += diff_byte;
4031 else
4032 mpos -= amt2_byte;
4033 marker->bytepos = mpos;
4034 }
4035 mpos = marker->charpos;
4036 if (mpos >= start1 && mpos < end2)
4037 {
4038 if (mpos < end1)
4039 mpos += amt1;
4040 else if (mpos < start2)
4041 mpos += diff;
4042 else
4043 mpos -= amt2;
4044 }
4045 marker->charpos = mpos;
4046 }
4047 }
4048
4049 DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0,
4050 doc: /* Transpose region STARTR1 to ENDR1 with STARTR2 to ENDR2.
4051 The regions may not be overlapping, because the size of the buffer is
4052 never changed in a transposition.
4053
4054 Optional fifth arg LEAVE-MARKERS, if non-nil, means don't update
4055 any markers that happen to be located in the regions.
4056
4057 Transposing beyond buffer boundaries is an error. */)
4058 (startr1, endr1, startr2, endr2, leave_markers)
4059 Lisp_Object startr1, endr1, startr2, endr2, leave_markers;
4060 {
4061 register int start1, end1, start2, end2;
4062 int start1_byte, start2_byte, len1_byte, len2_byte;
4063 int gap, len1, len_mid, len2;
4064 unsigned char *start1_addr, *start2_addr, *temp;
4065
4066 INTERVAL cur_intv, tmp_interval1, tmp_interval_mid, tmp_interval2;
4067 cur_intv = BUF_INTERVALS (current_buffer);
4068
4069 validate_region (&startr1, &endr1);
4070 validate_region (&startr2, &endr2);
4071
4072 start1 = XFASTINT (startr1);
4073 end1 = XFASTINT (endr1);
4074 start2 = XFASTINT (startr2);
4075 end2 = XFASTINT (endr2);
4076 gap = GPT;
4077
4078 /* Swap the regions if they're reversed. */
4079 if (start2 < end1)
4080 {
4081 register int glumph = start1;
4082 start1 = start2;
4083 start2 = glumph;
4084 glumph = end1;
4085 end1 = end2;
4086 end2 = glumph;
4087 }
4088
4089 len1 = end1 - start1;
4090 len2 = end2 - start2;
4091
4092 if (start2 < end1)
4093 error ("Transposed regions overlap");
4094 else if (start1 == end1 || start2 == end2)
4095 error ("Transposed region has length 0");
4096
4097 /* The possibilities are:
4098 1. Adjacent (contiguous) regions, or separate but equal regions
4099 (no, really equal, in this case!), or
4100 2. Separate regions of unequal size.
4101
4102 The worst case is usually No. 2. It means that (aside from
4103 potential need for getting the gap out of the way), there also
4104 needs to be a shifting of the text between the two regions. So
4105 if they are spread far apart, we are that much slower... sigh. */
4106
4107 /* It must be pointed out that the really studly thing to do would
4108 be not to move the gap at all, but to leave it in place and work
4109 around it if necessary. This would be extremely efficient,
4110 especially considering that people are likely to do
4111 transpositions near where they are working interactively, which
4112 is exactly where the gap would be found. However, such code
4113 would be much harder to write and to read. So, if you are
4114 reading this comment and are feeling squirrely, by all means have
4115 a go! I just didn't feel like doing it, so I will simply move
4116 the gap the minimum distance to get it out of the way, and then
4117 deal with an unbroken array. */
4118
4119 /* Make sure the gap won't interfere, by moving it out of the text
4120 we will operate on. */
4121 if (start1 < gap && gap < end2)
4122 {
4123 if (gap - start1 < end2 - gap)
4124 move_gap (start1);
4125 else
4126 move_gap (end2);
4127 }
4128
4129 start1_byte = CHAR_TO_BYTE (start1);
4130 start2_byte = CHAR_TO_BYTE (start2);
4131 len1_byte = CHAR_TO_BYTE (end1) - start1_byte;
4132 len2_byte = CHAR_TO_BYTE (end2) - start2_byte;
4133
4134 #ifdef BYTE_COMBINING_DEBUG
4135 if (end1 == start2)
4136 {
4137 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
4138 len2_byte, start1, start1_byte)
4139 || count_combining_before (BYTE_POS_ADDR (start1_byte),
4140 len1_byte, end2, start2_byte + len2_byte)
4141 || count_combining_after (BYTE_POS_ADDR (start1_byte),
4142 len1_byte, end2, start2_byte + len2_byte))
4143 abort ();
4144 }
4145 else
4146 {
4147 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
4148 len2_byte, start1, start1_byte)
4149 || count_combining_before (BYTE_POS_ADDR (start1_byte),
4150 len1_byte, start2, start2_byte)
4151 || count_combining_after (BYTE_POS_ADDR (start2_byte),
4152 len2_byte, end1, start1_byte + len1_byte)
4153 || count_combining_after (BYTE_POS_ADDR (start1_byte),
4154 len1_byte, end2, start2_byte + len2_byte))
4155 abort ();
4156 }
4157 #endif
4158
4159 /* Hmmm... how about checking to see if the gap is large
4160 enough to use as the temporary storage? That would avoid an
4161 allocation... interesting. Later, don't fool with it now. */
4162
4163 /* Working without memmove, for portability (sigh), so must be
4164 careful of overlapping subsections of the array... */
4165
4166 if (end1 == start2) /* adjacent regions */
4167 {
4168 modify_region (current_buffer, start1, end2);
4169 record_change (start1, len1 + len2);
4170
4171 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4172 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4173 Fset_text_properties (make_number (start1), make_number (end2),
4174 Qnil, Qnil);
4175
4176 /* First region smaller than second. */
4177 if (len1_byte < len2_byte)
4178 {
4179 USE_SAFE_ALLOCA;
4180
4181 SAFE_ALLOCA (temp, unsigned char *, len2_byte);
4182
4183 /* Don't precompute these addresses. We have to compute them
4184 at the last minute, because the relocating allocator might
4185 have moved the buffer around during the xmalloc. */
4186 start1_addr = BYTE_POS_ADDR (start1_byte);
4187 start2_addr = BYTE_POS_ADDR (start2_byte);
4188
4189 bcopy (start2_addr, temp, len2_byte);
4190 bcopy (start1_addr, start1_addr + len2_byte, len1_byte);
4191 bcopy (temp, start1_addr, len2_byte);
4192 SAFE_FREE ();
4193 }
4194 else
4195 /* First region not smaller than second. */
4196 {
4197 USE_SAFE_ALLOCA;
4198
4199 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4200 start1_addr = BYTE_POS_ADDR (start1_byte);
4201 start2_addr = BYTE_POS_ADDR (start2_byte);
4202 bcopy (start1_addr, temp, len1_byte);
4203 bcopy (start2_addr, start1_addr, len2_byte);
4204 bcopy (temp, start1_addr + len2_byte, len1_byte);
4205 SAFE_FREE ();
4206 }
4207 graft_intervals_into_buffer (tmp_interval1, start1 + len2,
4208 len1, current_buffer, 0);
4209 graft_intervals_into_buffer (tmp_interval2, start1,
4210 len2, current_buffer, 0);
4211 update_compositions (start1, start1 + len2, CHECK_BORDER);
4212 update_compositions (start1 + len2, end2, CHECK_TAIL);
4213 }
4214 /* Non-adjacent regions, because end1 != start2, bleagh... */
4215 else
4216 {
4217 len_mid = start2_byte - (start1_byte + len1_byte);
4218
4219 if (len1_byte == len2_byte)
4220 /* Regions are same size, though, how nice. */
4221 {
4222 USE_SAFE_ALLOCA;
4223
4224 modify_region (current_buffer, start1, end1);
4225 modify_region (current_buffer, start2, end2);
4226 record_change (start1, len1);
4227 record_change (start2, len2);
4228 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4229 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4230 Fset_text_properties (make_number (start1), make_number (end1),
4231 Qnil, Qnil);
4232 Fset_text_properties (make_number (start2), make_number (end2),
4233 Qnil, Qnil);
4234
4235 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4236 start1_addr = BYTE_POS_ADDR (start1_byte);
4237 start2_addr = BYTE_POS_ADDR (start2_byte);
4238 bcopy (start1_addr, temp, len1_byte);
4239 bcopy (start2_addr, start1_addr, len2_byte);
4240 bcopy (temp, start2_addr, len1_byte);
4241 SAFE_FREE ();
4242
4243 graft_intervals_into_buffer (tmp_interval1, start2,
4244 len1, current_buffer, 0);
4245 graft_intervals_into_buffer (tmp_interval2, start1,
4246 len2, current_buffer, 0);
4247 }
4248
4249 else if (len1_byte < len2_byte) /* Second region larger than first */
4250 /* Non-adjacent & unequal size, area between must also be shifted. */
4251 {
4252 USE_SAFE_ALLOCA;
4253
4254 modify_region (current_buffer, start1, end2);
4255 record_change (start1, (end2 - start1));
4256 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4257 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
4258 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4259 Fset_text_properties (make_number (start1), make_number (end2),
4260 Qnil, Qnil);
4261
4262 /* holds region 2 */
4263 SAFE_ALLOCA (temp, unsigned char *, len2_byte);
4264 start1_addr = BYTE_POS_ADDR (start1_byte);
4265 start2_addr = BYTE_POS_ADDR (start2_byte);
4266 bcopy (start2_addr, temp, len2_byte);
4267 bcopy (start1_addr, start1_addr + len_mid + len2_byte, len1_byte);
4268 safe_bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
4269 bcopy (temp, start1_addr, len2_byte);
4270 SAFE_FREE ();
4271
4272 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4273 len1, current_buffer, 0);
4274 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4275 len_mid, current_buffer, 0);
4276 graft_intervals_into_buffer (tmp_interval2, start1,
4277 len2, current_buffer, 0);
4278 }
4279 else
4280 /* Second region smaller than first. */
4281 {
4282 USE_SAFE_ALLOCA;
4283
4284 record_change (start1, (end2 - start1));
4285 modify_region (current_buffer, start1, end2);
4286
4287 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4288 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
4289 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4290 Fset_text_properties (make_number (start1), make_number (end2),
4291 Qnil, Qnil);
4292
4293 /* holds region 1 */
4294 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4295 start1_addr = BYTE_POS_ADDR (start1_byte);
4296 start2_addr = BYTE_POS_ADDR (start2_byte);
4297 bcopy (start1_addr, temp, len1_byte);
4298 bcopy (start2_addr, start1_addr, len2_byte);
4299 bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
4300 bcopy (temp, start1_addr + len2_byte + len_mid, len1_byte);
4301 SAFE_FREE ();
4302
4303 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4304 len1, current_buffer, 0);
4305 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4306 len_mid, current_buffer, 0);
4307 graft_intervals_into_buffer (tmp_interval2, start1,
4308 len2, current_buffer, 0);
4309 }
4310
4311 update_compositions (start1, start1 + len2, CHECK_BORDER);
4312 update_compositions (end2 - len1, end2, CHECK_BORDER);
4313 }
4314
4315 /* When doing multiple transpositions, it might be nice
4316 to optimize this. Perhaps the markers in any one buffer
4317 should be organized in some sorted data tree. */
4318 if (NILP (leave_markers))
4319 {
4320 transpose_markers (start1, end1, start2, end2,
4321 start1_byte, start1_byte + len1_byte,
4322 start2_byte, start2_byte + len2_byte);
4323 fix_start_end_in_overlays (start1, end2);
4324 }
4325
4326 return Qnil;
4327 }
4328
4329 \f
4330 void
4331 syms_of_editfns ()
4332 {
4333 environbuf = 0;
4334
4335 Qbuffer_access_fontify_functions
4336 = intern ("buffer-access-fontify-functions");
4337 staticpro (&Qbuffer_access_fontify_functions);
4338
4339 DEFVAR_LISP ("inhibit-field-text-motion", &Vinhibit_field_text_motion,
4340 doc: /* Non-nil means text motion commands don't notice fields. */);
4341 Vinhibit_field_text_motion = Qnil;
4342
4343 DEFVAR_LISP ("buffer-access-fontify-functions",
4344 &Vbuffer_access_fontify_functions,
4345 doc: /* List of functions called by `buffer-substring' to fontify if necessary.
4346 Each function is called with two arguments which specify the range
4347 of the buffer being accessed. */);
4348 Vbuffer_access_fontify_functions = Qnil;
4349
4350 {
4351 Lisp_Object obuf;
4352 extern Lisp_Object Vprin1_to_string_buffer;
4353 obuf = Fcurrent_buffer ();
4354 /* Do this here, because init_buffer_once is too early--it won't work. */
4355 Fset_buffer (Vprin1_to_string_buffer);
4356 /* Make sure buffer-access-fontify-functions is nil in this buffer. */
4357 Fset (Fmake_local_variable (intern ("buffer-access-fontify-functions")),
4358 Qnil);
4359 Fset_buffer (obuf);
4360 }
4361
4362 DEFVAR_LISP ("buffer-access-fontified-property",
4363 &Vbuffer_access_fontified_property,
4364 doc: /* Property which (if non-nil) indicates text has been fontified.
4365 `buffer-substring' need not call the `buffer-access-fontify-functions'
4366 functions if all the text being accessed has this property. */);
4367 Vbuffer_access_fontified_property = Qnil;
4368
4369 DEFVAR_LISP ("system-name", &Vsystem_name,
4370 doc: /* The name of the machine Emacs is running on. */);
4371
4372 DEFVAR_LISP ("user-full-name", &Vuser_full_name,
4373 doc: /* The full name of the user logged in. */);
4374
4375 DEFVAR_LISP ("user-login-name", &Vuser_login_name,
4376 doc: /* The user's name, taken from environment variables if possible. */);
4377
4378 DEFVAR_LISP ("user-real-login-name", &Vuser_real_login_name,
4379 doc: /* The user's name, based upon the real uid only. */);
4380
4381 defsubr (&Spropertize);
4382 defsubr (&Schar_equal);
4383 defsubr (&Sgoto_char);
4384 defsubr (&Sstring_to_char);
4385 defsubr (&Schar_to_string);
4386 defsubr (&Sbuffer_substring);
4387 defsubr (&Sbuffer_substring_no_properties);
4388 defsubr (&Sbuffer_string);
4389
4390 defsubr (&Spoint_marker);
4391 defsubr (&Smark_marker);
4392 defsubr (&Spoint);
4393 defsubr (&Sregion_beginning);
4394 defsubr (&Sregion_end);
4395
4396 staticpro (&Qfield);
4397 Qfield = intern ("field");
4398 staticpro (&Qboundary);
4399 Qboundary = intern ("boundary");
4400 defsubr (&Sfield_beginning);
4401 defsubr (&Sfield_end);
4402 defsubr (&Sfield_string);
4403 defsubr (&Sfield_string_no_properties);
4404 defsubr (&Sdelete_field);
4405 defsubr (&Sconstrain_to_field);
4406
4407 defsubr (&Sline_beginning_position);
4408 defsubr (&Sline_end_position);
4409
4410 /* defsubr (&Smark); */
4411 /* defsubr (&Sset_mark); */
4412 defsubr (&Ssave_excursion);
4413 defsubr (&Ssave_current_buffer);
4414
4415 defsubr (&Sbufsize);
4416 defsubr (&Spoint_max);
4417 defsubr (&Spoint_min);
4418 defsubr (&Spoint_min_marker);
4419 defsubr (&Spoint_max_marker);
4420 defsubr (&Sgap_position);
4421 defsubr (&Sgap_size);
4422 defsubr (&Sposition_bytes);
4423 defsubr (&Sbyte_to_position);
4424
4425 defsubr (&Sbobp);
4426 defsubr (&Seobp);
4427 defsubr (&Sbolp);
4428 defsubr (&Seolp);
4429 defsubr (&Sfollowing_char);
4430 defsubr (&Sprevious_char);
4431 defsubr (&Schar_after);
4432 defsubr (&Schar_before);
4433 defsubr (&Sinsert);
4434 defsubr (&Sinsert_before_markers);
4435 defsubr (&Sinsert_and_inherit);
4436 defsubr (&Sinsert_and_inherit_before_markers);
4437 defsubr (&Sinsert_char);
4438 defsubr (&Sinsert_byte);
4439
4440 defsubr (&Suser_login_name);
4441 defsubr (&Suser_real_login_name);
4442 defsubr (&Suser_uid);
4443 defsubr (&Suser_real_uid);
4444 defsubr (&Suser_full_name);
4445 defsubr (&Semacs_pid);
4446 defsubr (&Scurrent_time);
4447 defsubr (&Sformat_time_string);
4448 defsubr (&Sfloat_time);
4449 defsubr (&Sdecode_time);
4450 defsubr (&Sencode_time);
4451 defsubr (&Scurrent_time_string);
4452 defsubr (&Scurrent_time_zone);
4453 defsubr (&Sset_time_zone_rule);
4454 defsubr (&Ssystem_name);
4455 defsubr (&Smessage);
4456 defsubr (&Smessage_box);
4457 defsubr (&Smessage_or_box);
4458 defsubr (&Scurrent_message);
4459 defsubr (&Sformat);
4460
4461 defsubr (&Sinsert_buffer_substring);
4462 defsubr (&Scompare_buffer_substrings);
4463 defsubr (&Ssubst_char_in_region);
4464 defsubr (&Stranslate_region_internal);
4465 defsubr (&Sdelete_region);
4466 defsubr (&Sdelete_and_extract_region);
4467 defsubr (&Swiden);
4468 defsubr (&Snarrow_to_region);
4469 defsubr (&Ssave_restriction);
4470 defsubr (&Stranspose_regions);
4471 }
4472
4473 /* arch-tag: fc3827d8-6f60-4067-b11e-c3218031b018
4474 (do not change this comment) */