* lisp/isearch.el: Let M-e start with point at the first mismatched char.
[emacs.git] / src / editfns.c
blob8b48355fbfae80ca22c2976b93e762f6f735efd8
1 /* Lisp functions pertaining to editing.
3 Copyright (C) 1985-1987, 1989, 1993-2011 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <sys/types.h>
23 #include <stdio.h>
24 #include <setjmp.h>
26 #ifdef HAVE_PWD_H
27 #include <pwd.h>
28 #endif
30 #include <unistd.h>
32 #ifdef HAVE_SYS_UTSNAME_H
33 #include <sys/utsname.h>
34 #endif
36 #include "lisp.h"
38 /* systime.h includes <sys/time.h> which, on some systems, is required
39 for <sys/resource.h>; thus systime.h must be included before
40 <sys/resource.h> */
41 #include "systime.h"
43 #if defined HAVE_SYS_RESOURCE_H
44 #include <sys/resource.h>
45 #endif
47 #include <ctype.h>
48 #include <float.h>
49 #include <limits.h>
50 #include <intprops.h>
51 #include <strftime.h>
52 #include <verify.h>
54 #include "intervals.h"
55 #include "buffer.h"
56 #include "character.h"
57 #include "coding.h"
58 #include "frame.h"
59 #include "window.h"
60 #include "blockinput.h"
62 #ifndef NULL
63 #define NULL 0
64 #endif
66 #ifndef USER_FULL_NAME
67 #define USER_FULL_NAME pw->pw_gecos
68 #endif
70 #ifndef USE_CRT_DLL
71 extern char **environ;
72 #endif
74 #define TM_YEAR_BASE 1900
76 /* Nonzero if TM_YEAR is a struct tm's tm_year value that causes
77 asctime to have well-defined behavior. */
78 #ifndef TM_YEAR_IN_ASCTIME_RANGE
79 # define TM_YEAR_IN_ASCTIME_RANGE(tm_year) \
80 (1000 - TM_YEAR_BASE <= (tm_year) && (tm_year) <= 9999 - TM_YEAR_BASE)
81 #endif
83 #ifdef WINDOWSNT
84 extern Lisp_Object w32_get_internal_run_time (void);
85 #endif
87 static void time_overflow (void) NO_RETURN;
88 static int tm_diff (struct tm *, struct tm *);
89 static void find_field (Lisp_Object, Lisp_Object, Lisp_Object,
90 EMACS_INT *, Lisp_Object, EMACS_INT *);
91 static void update_buffer_properties (EMACS_INT, EMACS_INT);
92 static Lisp_Object region_limit (int);
93 static size_t emacs_nmemftime (char *, size_t, const char *,
94 size_t, const struct tm *, int, int);
95 static void general_insert_function (void (*) (const char *, EMACS_INT),
96 void (*) (Lisp_Object, EMACS_INT,
97 EMACS_INT, EMACS_INT,
98 EMACS_INT, int),
99 int, size_t, Lisp_Object *);
100 static Lisp_Object subst_char_in_region_unwind (Lisp_Object);
101 static Lisp_Object subst_char_in_region_unwind_1 (Lisp_Object);
102 static void transpose_markers (EMACS_INT, EMACS_INT, EMACS_INT, EMACS_INT,
103 EMACS_INT, EMACS_INT, EMACS_INT, EMACS_INT);
105 static Lisp_Object Qbuffer_access_fontify_functions;
106 static Lisp_Object Fuser_full_name (Lisp_Object);
108 /* Symbol for the text property used to mark fields. */
110 Lisp_Object Qfield;
112 /* A special value for Qfield properties. */
114 static Lisp_Object Qboundary;
117 void
118 init_editfns (void)
120 const char *user_name;
121 register char *p;
122 struct passwd *pw; /* password entry for the current user */
123 Lisp_Object tem;
125 /* Set up system_name even when dumping. */
126 init_system_name ();
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 */
134 pw = 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
144 /* Get the effective user name, by consulting environment variables,
145 or the effective uid if those are unset. */
146 user_name = getenv ("LOGNAME");
147 if (!user_name)
148 #ifdef WINDOWSNT
149 user_name = getenv ("USERNAME"); /* it's USERNAME on NT */
150 #else /* WINDOWSNT */
151 user_name = getenv ("USER");
152 #endif /* WINDOWSNT */
153 if (!user_name)
155 pw = getpwuid (geteuid ());
156 user_name = pw ? pw->pw_name : "unknown";
158 Vuser_login_name = build_string (user_name);
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);
166 p = 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");
172 #ifdef HAVE_SYS_UTSNAME_H
174 struct utsname uts;
175 uname (&uts);
176 Voperating_system_release = build_string (uts.release);
178 #else
179 Voperating_system_release = Qnil;
180 #endif
183 DEFUN ("char-to-string", Fchar_to_string, Schar_to_string, 1, 1, 0,
184 doc: /* Convert arg CHAR to a string containing that character.
185 usage: (char-to-string CHAR) */)
186 (Lisp_Object character)
188 int len;
189 unsigned char str[MAX_MULTIBYTE_LENGTH];
191 CHECK_CHARACTER (character);
193 len = CHAR_STRING (XFASTINT (character), str);
194 return make_string_from_bytes ((char *) str, 1, len);
197 DEFUN ("byte-to-string", Fbyte_to_string, Sbyte_to_string, 1, 1, 0,
198 doc: /* Convert arg BYTE to a unibyte string containing that byte. */)
199 (Lisp_Object byte)
201 unsigned char b;
202 CHECK_NUMBER (byte);
203 if (XINT (byte) < 0 || XINT (byte) > 255)
204 error ("Invalid byte");
205 b = XINT (byte);
206 return make_string_from_bytes ((char *) &b, 1, 1);
209 DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0,
210 doc: /* Convert arg STRING to a character, the first character of that string.
211 A multibyte character is handled correctly. */)
212 (register Lisp_Object string)
214 register Lisp_Object val;
215 CHECK_STRING (string);
216 if (SCHARS (string))
218 if (STRING_MULTIBYTE (string))
219 XSETFASTINT (val, STRING_CHAR (SDATA (string)));
220 else
221 XSETFASTINT (val, SREF (string, 0));
223 else
224 XSETFASTINT (val, 0);
225 return val;
228 static Lisp_Object
229 buildmark (EMACS_INT charpos, EMACS_INT bytepos)
231 register Lisp_Object mark;
232 mark = Fmake_marker ();
233 set_marker_both (mark, Qnil, charpos, bytepos);
234 return mark;
237 DEFUN ("point", Fpoint, Spoint, 0, 0, 0,
238 doc: /* Return value of point, as an integer.
239 Beginning of buffer is position (point-min). */)
240 (void)
242 Lisp_Object temp;
243 XSETFASTINT (temp, PT);
244 return temp;
247 DEFUN ("point-marker", Fpoint_marker, Spoint_marker, 0, 0, 0,
248 doc: /* Return value of point, as a marker object. */)
249 (void)
251 return buildmark (PT, PT_BYTE);
254 EMACS_INT
255 clip_to_bounds (EMACS_INT lower, EMACS_INT num, EMACS_INT upper)
257 if (num < lower)
258 return lower;
259 else if (num > upper)
260 return upper;
261 else
262 return num;
265 DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ",
266 doc: /* Set point to POSITION, a number or marker.
267 Beginning of buffer is position (point-min), end is (point-max).
269 The return value is POSITION. */)
270 (register Lisp_Object position)
272 EMACS_INT pos;
274 if (MARKERP (position)
275 && current_buffer == XMARKER (position)->buffer)
277 pos = marker_position (position);
278 if (pos < BEGV)
279 SET_PT_BOTH (BEGV, BEGV_BYTE);
280 else if (pos > ZV)
281 SET_PT_BOTH (ZV, ZV_BYTE);
282 else
283 SET_PT_BOTH (pos, marker_byte_position (position));
285 return position;
288 CHECK_NUMBER_COERCE_MARKER (position);
290 pos = clip_to_bounds (BEGV, XINT (position), ZV);
291 SET_PT (pos);
292 return position;
296 /* Return the start or end position of the region.
297 BEGINNINGP non-zero means return the start.
298 If there is no region active, signal an error. */
300 static Lisp_Object
301 region_limit (int beginningp)
303 Lisp_Object m;
305 if (!NILP (Vtransient_mark_mode)
306 && NILP (Vmark_even_if_inactive)
307 && NILP (BVAR (current_buffer, mark_active)))
308 xsignal0 (Qmark_inactive);
310 m = Fmarker_position (BVAR (current_buffer, mark));
311 if (NILP (m))
312 error ("The mark is not set now, so there is no region");
314 if ((PT < XFASTINT (m)) == (beginningp != 0))
315 m = make_number (PT);
316 return m;
319 DEFUN ("region-beginning", Fregion_beginning, Sregion_beginning, 0, 0, 0,
320 doc: /* Return the integer value of point or mark, whichever is smaller. */)
321 (void)
323 return region_limit (1);
326 DEFUN ("region-end", Fregion_end, Sregion_end, 0, 0, 0,
327 doc: /* Return the integer value of point or mark, whichever is larger. */)
328 (void)
330 return region_limit (0);
333 DEFUN ("mark-marker", Fmark_marker, Smark_marker, 0, 0, 0,
334 doc: /* Return this buffer's mark, as a marker object.
335 Watch out! Moving this marker changes the mark position.
336 If you set the marker not to point anywhere, the buffer will have no mark. */)
337 (void)
339 return BVAR (current_buffer, mark);
343 /* Find all the overlays in the current buffer that touch position POS.
344 Return the number found, and store them in a vector in VEC
345 of length LEN. */
347 static int
348 overlays_around (EMACS_INT pos, Lisp_Object *vec, int len)
350 Lisp_Object overlay, start, end;
351 struct Lisp_Overlay *tail;
352 EMACS_INT startpos, endpos;
353 int idx = 0;
355 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
357 XSETMISC (overlay, tail);
359 end = OVERLAY_END (overlay);
360 endpos = OVERLAY_POSITION (end);
361 if (endpos < pos)
362 break;
363 start = OVERLAY_START (overlay);
364 startpos = OVERLAY_POSITION (start);
365 if (startpos <= pos)
367 if (idx < len)
368 vec[idx] = overlay;
369 /* Keep counting overlays even if we can't return them all. */
370 idx++;
374 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
376 XSETMISC (overlay, tail);
378 start = OVERLAY_START (overlay);
379 startpos = OVERLAY_POSITION (start);
380 if (pos < startpos)
381 break;
382 end = OVERLAY_END (overlay);
383 endpos = OVERLAY_POSITION (end);
384 if (pos <= endpos)
386 if (idx < len)
387 vec[idx] = overlay;
388 idx++;
392 return idx;
395 /* Return the value of property PROP, in OBJECT at POSITION.
396 It's the value of PROP that a char inserted at POSITION would get.
397 OBJECT is optional and defaults to the current buffer.
398 If OBJECT is a buffer, then overlay properties are considered as well as
399 text properties.
400 If OBJECT is a window, then that window's buffer is used, but
401 window-specific overlays are considered only if they are associated
402 with OBJECT. */
403 Lisp_Object
404 get_pos_property (Lisp_Object position, register Lisp_Object prop, Lisp_Object object)
406 CHECK_NUMBER_COERCE_MARKER (position);
408 if (NILP (object))
409 XSETBUFFER (object, current_buffer);
410 else if (WINDOWP (object))
411 object = XWINDOW (object)->buffer;
413 if (!BUFFERP (object))
414 /* pos-property only makes sense in buffers right now, since strings
415 have no overlays and no notion of insertion for which stickiness
416 could be obeyed. */
417 return Fget_text_property (position, prop, object);
418 else
420 EMACS_INT posn = XINT (position);
421 int noverlays;
422 Lisp_Object *overlay_vec, tem;
423 struct buffer *obuf = current_buffer;
425 set_buffer_temp (XBUFFER (object));
427 /* First try with room for 40 overlays. */
428 noverlays = 40;
429 overlay_vec = (Lisp_Object *) alloca (noverlays * sizeof (Lisp_Object));
430 noverlays = overlays_around (posn, overlay_vec, noverlays);
432 /* If there are more than 40,
433 make enough space for all, and try again. */
434 if (noverlays > 40)
436 overlay_vec = (Lisp_Object *) alloca (noverlays * sizeof (Lisp_Object));
437 noverlays = overlays_around (posn, overlay_vec, noverlays);
439 noverlays = sort_overlays (overlay_vec, noverlays, NULL);
441 set_buffer_temp (obuf);
443 /* Now check the overlays in order of decreasing priority. */
444 while (--noverlays >= 0)
446 Lisp_Object ol = overlay_vec[noverlays];
447 tem = Foverlay_get (ol, prop);
448 if (!NILP (tem))
450 /* Check the overlay is indeed active at point. */
451 Lisp_Object start = OVERLAY_START (ol), finish = OVERLAY_END (ol);
452 if ((OVERLAY_POSITION (start) == posn
453 && XMARKER (start)->insertion_type == 1)
454 || (OVERLAY_POSITION (finish) == posn
455 && XMARKER (finish)->insertion_type == 0))
456 ; /* The overlay will not cover a char inserted at point. */
457 else
459 return tem;
464 { /* Now check the text properties. */
465 int stickiness = text_property_stickiness (prop, position, object);
466 if (stickiness > 0)
467 return Fget_text_property (position, prop, object);
468 else if (stickiness < 0
469 && XINT (position) > BUF_BEGV (XBUFFER (object)))
470 return Fget_text_property (make_number (XINT (position) - 1),
471 prop, object);
472 else
473 return Qnil;
478 /* Find the field surrounding POS in *BEG and *END. If POS is nil,
479 the value of point is used instead. If BEG or END is null,
480 means don't store the beginning or end of the field.
482 BEG_LIMIT and END_LIMIT serve to limit the ranged of the returned
483 results; they do not effect boundary behavior.
485 If MERGE_AT_BOUNDARY is nonzero, then if POS is at the very first
486 position of a field, then the beginning of the previous field is
487 returned instead of the beginning of POS's field (since the end of a
488 field is actually also the beginning of the next input field, this
489 behavior is sometimes useful). Additionally in the MERGE_AT_BOUNDARY
490 true case, if two fields are separated by a field with the special
491 value `boundary', and POS lies within it, then the two separated
492 fields are considered to be adjacent, and POS between them, when
493 finding the beginning and ending of the "merged" field.
495 Either BEG or END may be 0, in which case the corresponding value
496 is not stored. */
498 static void
499 find_field (Lisp_Object pos, Lisp_Object merge_at_boundary,
500 Lisp_Object beg_limit,
501 EMACS_INT *beg, Lisp_Object end_limit, EMACS_INT *end)
503 /* Fields right before and after the point. */
504 Lisp_Object before_field, after_field;
505 /* 1 if POS counts as the start of a field. */
506 int at_field_start = 0;
507 /* 1 if POS counts as the end of a field. */
508 int at_field_end = 0;
510 if (NILP (pos))
511 XSETFASTINT (pos, PT);
512 else
513 CHECK_NUMBER_COERCE_MARKER (pos);
515 after_field
516 = get_char_property_and_overlay (pos, Qfield, Qnil, NULL);
517 before_field
518 = (XFASTINT (pos) > BEGV
519 ? get_char_property_and_overlay (make_number (XINT (pos) - 1),
520 Qfield, Qnil, NULL)
521 /* Using nil here would be a more obvious choice, but it would
522 fail when the buffer starts with a non-sticky field. */
523 : after_field);
525 /* See if we need to handle the case where MERGE_AT_BOUNDARY is nil
526 and POS is at beginning of a field, which can also be interpreted
527 as the end of the previous field. Note that the case where if
528 MERGE_AT_BOUNDARY is non-nil (see function comment) is actually the
529 more natural one; then we avoid treating the beginning of a field
530 specially. */
531 if (NILP (merge_at_boundary))
533 Lisp_Object field = get_pos_property (pos, Qfield, Qnil);
534 if (!EQ (field, after_field))
535 at_field_end = 1;
536 if (!EQ (field, before_field))
537 at_field_start = 1;
538 if (NILP (field) && at_field_start && at_field_end)
539 /* If an inserted char would have a nil field while the surrounding
540 text is non-nil, we're probably not looking at a
541 zero-length field, but instead at a non-nil field that's
542 not intended for editing (such as comint's prompts). */
543 at_field_end = at_field_start = 0;
546 /* Note about special `boundary' fields:
548 Consider the case where the point (`.') is between the fields `x' and `y':
550 xxxx.yyyy
552 In this situation, if merge_at_boundary is true, we consider the
553 `x' and `y' fields as forming one big merged field, and so the end
554 of the field is the end of `y'.
556 However, if `x' and `y' are separated by a special `boundary' field
557 (a field with a `field' char-property of 'boundary), then we ignore
558 this special field when merging adjacent fields. Here's the same
559 situation, but with a `boundary' field between the `x' and `y' fields:
561 xxx.BBBByyyy
563 Here, if point is at the end of `x', the beginning of `y', or
564 anywhere in-between (within the `boundary' field), we merge all
565 three fields and consider the beginning as being the beginning of
566 the `x' field, and the end as being the end of the `y' field. */
568 if (beg)
570 if (at_field_start)
571 /* POS is at the edge of a field, and we should consider it as
572 the beginning of the following field. */
573 *beg = XFASTINT (pos);
574 else
575 /* Find the previous field boundary. */
577 Lisp_Object p = pos;
578 if (!NILP (merge_at_boundary) && EQ (before_field, Qboundary))
579 /* Skip a `boundary' field. */
580 p = Fprevious_single_char_property_change (p, Qfield, Qnil,
581 beg_limit);
583 p = Fprevious_single_char_property_change (p, Qfield, Qnil,
584 beg_limit);
585 *beg = NILP (p) ? BEGV : XFASTINT (p);
589 if (end)
591 if (at_field_end)
592 /* POS is at the edge of a field, and we should consider it as
593 the end of the previous field. */
594 *end = XFASTINT (pos);
595 else
596 /* Find the next field boundary. */
598 if (!NILP (merge_at_boundary) && EQ (after_field, Qboundary))
599 /* Skip a `boundary' field. */
600 pos = Fnext_single_char_property_change (pos, Qfield, Qnil,
601 end_limit);
603 pos = Fnext_single_char_property_change (pos, Qfield, Qnil,
604 end_limit);
605 *end = NILP (pos) ? ZV : XFASTINT (pos);
611 DEFUN ("delete-field", Fdelete_field, Sdelete_field, 0, 1, 0,
612 doc: /* Delete the field surrounding POS.
613 A field is a region of text with the same `field' property.
614 If POS is nil, the value of point is used for POS. */)
615 (Lisp_Object pos)
617 EMACS_INT beg, end;
618 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
619 if (beg != end)
620 del_range (beg, end);
621 return Qnil;
624 DEFUN ("field-string", Ffield_string, Sfield_string, 0, 1, 0,
625 doc: /* Return the contents of the field surrounding POS as a string.
626 A field is a region of text with the same `field' property.
627 If POS is nil, the value of point is used for POS. */)
628 (Lisp_Object pos)
630 EMACS_INT beg, end;
631 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
632 return make_buffer_string (beg, end, 1);
635 DEFUN ("field-string-no-properties", Ffield_string_no_properties, Sfield_string_no_properties, 0, 1, 0,
636 doc: /* Return the contents of the field around POS, without text properties.
637 A field is a region of text with the same `field' property.
638 If POS is nil, the value of point is used for POS. */)
639 (Lisp_Object pos)
641 EMACS_INT beg, end;
642 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
643 return make_buffer_string (beg, end, 0);
646 DEFUN ("field-beginning", Ffield_beginning, Sfield_beginning, 0, 3, 0,
647 doc: /* Return the beginning of the field surrounding POS.
648 A field is a region of text with the same `field' property.
649 If POS is nil, the value of point is used for POS.
650 If ESCAPE-FROM-EDGE is non-nil and POS is at the beginning of its
651 field, then the beginning of the *previous* field is returned.
652 If LIMIT is non-nil, it is a buffer position; if the beginning of the field
653 is before LIMIT, then LIMIT will be returned instead. */)
654 (Lisp_Object pos, Lisp_Object escape_from_edge, Lisp_Object limit)
656 EMACS_INT beg;
657 find_field (pos, escape_from_edge, limit, &beg, Qnil, 0);
658 return make_number (beg);
661 DEFUN ("field-end", Ffield_end, Sfield_end, 0, 3, 0,
662 doc: /* Return the end of the field surrounding POS.
663 A field is a region of text with the same `field' property.
664 If POS is nil, the value of point is used for POS.
665 If ESCAPE-FROM-EDGE is non-nil and POS is at the end of its field,
666 then the end of the *following* field is returned.
667 If LIMIT is non-nil, it is a buffer position; if the end of the field
668 is after LIMIT, then LIMIT will be returned instead. */)
669 (Lisp_Object pos, Lisp_Object escape_from_edge, Lisp_Object limit)
671 EMACS_INT end;
672 find_field (pos, escape_from_edge, Qnil, 0, limit, &end);
673 return make_number (end);
676 DEFUN ("constrain-to-field", Fconstrain_to_field, Sconstrain_to_field, 2, 5, 0,
677 doc: /* Return the position closest to NEW-POS that is in the same field as OLD-POS.
679 A field is a region of text with the same `field' property.
680 If NEW-POS is nil, then the current point is used instead, and set to the
681 constrained position if that is different.
683 If OLD-POS is at the boundary of two fields, then the allowable
684 positions for NEW-POS depends on the value of the optional argument
685 ESCAPE-FROM-EDGE: If ESCAPE-FROM-EDGE is nil, then NEW-POS is
686 constrained to the field that has the same `field' char-property
687 as any new characters inserted at OLD-POS, whereas if ESCAPE-FROM-EDGE
688 is non-nil, NEW-POS is constrained to the union of the two adjacent
689 fields. Additionally, if two fields are separated by another field with
690 the special value `boundary', then any point within this special field is
691 also considered to be `on the boundary'.
693 If the optional argument ONLY-IN-LINE is non-nil and constraining
694 NEW-POS would move it to a different line, NEW-POS is returned
695 unconstrained. This useful for commands that move by line, like
696 \\[next-line] or \\[beginning-of-line], which should generally respect field boundaries
697 only in the case where they can still move to the right line.
699 If the optional argument INHIBIT-CAPTURE-PROPERTY is non-nil, and OLD-POS has
700 a non-nil property of that name, then any field boundaries are ignored.
702 Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil. */)
703 (Lisp_Object new_pos, Lisp_Object old_pos, Lisp_Object escape_from_edge, Lisp_Object only_in_line, Lisp_Object inhibit_capture_property)
705 /* If non-zero, then the original point, before re-positioning. */
706 EMACS_INT orig_point = 0;
707 int fwd;
708 Lisp_Object prev_old, prev_new;
710 if (NILP (new_pos))
711 /* Use the current point, and afterwards, set it. */
713 orig_point = PT;
714 XSETFASTINT (new_pos, PT);
717 CHECK_NUMBER_COERCE_MARKER (new_pos);
718 CHECK_NUMBER_COERCE_MARKER (old_pos);
720 fwd = (XFASTINT (new_pos) > XFASTINT (old_pos));
722 prev_old = make_number (XFASTINT (old_pos) - 1);
723 prev_new = make_number (XFASTINT (new_pos) - 1);
725 if (NILP (Vinhibit_field_text_motion)
726 && !EQ (new_pos, old_pos)
727 && (!NILP (Fget_char_property (new_pos, Qfield, Qnil))
728 || !NILP (Fget_char_property (old_pos, Qfield, Qnil))
729 /* To recognize field boundaries, we must also look at the
730 previous positions; we could use `get_pos_property'
731 instead, but in itself that would fail inside non-sticky
732 fields (like comint prompts). */
733 || (XFASTINT (new_pos) > BEGV
734 && !NILP (Fget_char_property (prev_new, Qfield, Qnil)))
735 || (XFASTINT (old_pos) > BEGV
736 && !NILP (Fget_char_property (prev_old, Qfield, Qnil))))
737 && (NILP (inhibit_capture_property)
738 /* Field boundaries are again a problem; but now we must
739 decide the case exactly, so we need to call
740 `get_pos_property' as well. */
741 || (NILP (get_pos_property (old_pos, inhibit_capture_property, Qnil))
742 && (XFASTINT (old_pos) <= BEGV
743 || NILP (Fget_char_property (old_pos, inhibit_capture_property, Qnil))
744 || NILP (Fget_char_property (prev_old, inhibit_capture_property, Qnil))))))
745 /* It is possible that NEW_POS is not within the same field as
746 OLD_POS; try to move NEW_POS so that it is. */
748 EMACS_INT shortage;
749 Lisp_Object field_bound;
751 if (fwd)
752 field_bound = Ffield_end (old_pos, escape_from_edge, new_pos);
753 else
754 field_bound = Ffield_beginning (old_pos, escape_from_edge, new_pos);
756 if (/* See if ESCAPE_FROM_EDGE caused FIELD_BOUND to jump to the
757 other side of NEW_POS, which would mean that NEW_POS is
758 already acceptable, and it's not necessary to constrain it
759 to FIELD_BOUND. */
760 ((XFASTINT (field_bound) < XFASTINT (new_pos)) ? fwd : !fwd)
761 /* NEW_POS should be constrained, but only if either
762 ONLY_IN_LINE is nil (in which case any constraint is OK),
763 or NEW_POS and FIELD_BOUND are on the same line (in which
764 case the constraint is OK even if ONLY_IN_LINE is non-nil). */
765 && (NILP (only_in_line)
766 /* This is the ONLY_IN_LINE case, check that NEW_POS and
767 FIELD_BOUND are on the same line by seeing whether
768 there's an intervening newline or not. */
769 || (scan_buffer ('\n',
770 XFASTINT (new_pos), XFASTINT (field_bound),
771 fwd ? -1 : 1, &shortage, 1),
772 shortage != 0)))
773 /* Constrain NEW_POS to FIELD_BOUND. */
774 new_pos = field_bound;
776 if (orig_point && XFASTINT (new_pos) != orig_point)
777 /* The NEW_POS argument was originally nil, so automatically set PT. */
778 SET_PT (XFASTINT (new_pos));
781 return new_pos;
785 DEFUN ("line-beginning-position",
786 Fline_beginning_position, Sline_beginning_position, 0, 1, 0,
787 doc: /* Return the character position of the first character on the current line.
788 With argument N not nil or 1, move forward N - 1 lines first.
789 If scan reaches end of buffer, return that position.
791 The returned position is of the first character in the logical order,
792 i.e. the one that has the smallest character position.
794 This function constrains the returned position to the current field
795 unless that would be on a different line than the original,
796 unconstrained result. If N is nil or 1, and a front-sticky field
797 starts at point, the scan stops as soon as it starts. To ignore field
798 boundaries bind `inhibit-field-text-motion' to t.
800 This function does not move point. */)
801 (Lisp_Object n)
803 EMACS_INT orig, orig_byte, end;
804 int count = SPECPDL_INDEX ();
805 specbind (Qinhibit_point_motion_hooks, Qt);
807 if (NILP (n))
808 XSETFASTINT (n, 1);
809 else
810 CHECK_NUMBER (n);
812 orig = PT;
813 orig_byte = PT_BYTE;
814 Fforward_line (make_number (XINT (n) - 1));
815 end = PT;
817 SET_PT_BOTH (orig, orig_byte);
819 unbind_to (count, Qnil);
821 /* Return END constrained to the current input field. */
822 return Fconstrain_to_field (make_number (end), make_number (orig),
823 XINT (n) != 1 ? Qt : Qnil,
824 Qt, Qnil);
827 DEFUN ("line-end-position", Fline_end_position, Sline_end_position, 0, 1, 0,
828 doc: /* Return the character position of the last character on the current line.
829 With argument N not nil or 1, move forward N - 1 lines first.
830 If scan reaches end of buffer, return that position.
832 The returned position is of the last character in the logical order,
833 i.e. the character whose buffer position is the largest one.
835 This function constrains the returned position to the current field
836 unless that would be on a different line than the original,
837 unconstrained result. If N is nil or 1, and a rear-sticky field ends
838 at point, the scan stops as soon as it starts. To ignore field
839 boundaries bind `inhibit-field-text-motion' to t.
841 This function does not move point. */)
842 (Lisp_Object n)
844 EMACS_INT end_pos;
845 EMACS_INT orig = PT;
847 if (NILP (n))
848 XSETFASTINT (n, 1);
849 else
850 CHECK_NUMBER (n);
852 end_pos = find_before_next_newline (orig, 0, XINT (n) - (XINT (n) <= 0));
854 /* Return END_POS constrained to the current input field. */
855 return Fconstrain_to_field (make_number (end_pos), make_number (orig),
856 Qnil, Qt, Qnil);
860 Lisp_Object
861 save_excursion_save (void)
863 int visible = (XBUFFER (XWINDOW (selected_window)->buffer)
864 == current_buffer);
866 return Fcons (Fpoint_marker (),
867 Fcons (Fcopy_marker (BVAR (current_buffer, mark), Qnil),
868 Fcons (visible ? Qt : Qnil,
869 Fcons (BVAR (current_buffer, mark_active),
870 selected_window))));
873 Lisp_Object
874 save_excursion_restore (Lisp_Object info)
876 Lisp_Object tem, tem1, omark, nmark;
877 struct gcpro gcpro1, gcpro2, gcpro3;
878 int visible_p;
880 tem = Fmarker_buffer (XCAR (info));
881 /* If buffer being returned to is now deleted, avoid error */
882 /* Otherwise could get error here while unwinding to top level
883 and crash */
884 /* In that case, Fmarker_buffer returns nil now. */
885 if (NILP (tem))
886 return Qnil;
888 omark = nmark = Qnil;
889 GCPRO3 (info, omark, nmark);
891 Fset_buffer (tem);
893 /* Point marker. */
894 tem = XCAR (info);
895 Fgoto_char (tem);
896 unchain_marker (XMARKER (tem));
898 /* Mark marker. */
899 info = XCDR (info);
900 tem = XCAR (info);
901 omark = Fmarker_position (BVAR (current_buffer, mark));
902 Fset_marker (BVAR (current_buffer, mark), tem, Fcurrent_buffer ());
903 nmark = Fmarker_position (tem);
904 unchain_marker (XMARKER (tem));
906 /* visible */
907 info = XCDR (info);
908 visible_p = !NILP (XCAR (info));
910 #if 0 /* We used to make the current buffer visible in the selected window
911 if that was true previously. That avoids some anomalies.
912 But it creates others, and it wasn't documented, and it is simpler
913 and cleaner never to alter the window/buffer connections. */
914 tem1 = Fcar (tem);
915 if (!NILP (tem1)
916 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
917 Fswitch_to_buffer (Fcurrent_buffer (), Qnil);
918 #endif /* 0 */
920 /* Mark active */
921 info = XCDR (info);
922 tem = XCAR (info);
923 tem1 = BVAR (current_buffer, mark_active);
924 BVAR (current_buffer, mark_active) = tem;
926 /* If mark is active now, and either was not active
927 or was at a different place, run the activate hook. */
928 if (! NILP (tem))
930 if (! EQ (omark, nmark))
932 tem = intern ("activate-mark-hook");
933 Frun_hooks (1, &tem);
936 /* If mark has ceased to be active, run deactivate hook. */
937 else if (! NILP (tem1))
939 tem = intern ("deactivate-mark-hook");
940 Frun_hooks (1, &tem);
943 /* If buffer was visible in a window, and a different window was
944 selected, and the old selected window is still showing this
945 buffer, restore point in that window. */
946 tem = XCDR (info);
947 if (visible_p
948 && !EQ (tem, selected_window)
949 && (tem1 = XWINDOW (tem)->buffer,
950 (/* Window is live... */
951 BUFFERP (tem1)
952 /* ...and it shows the current buffer. */
953 && XBUFFER (tem1) == current_buffer)))
954 Fset_window_point (tem, make_number (PT));
956 UNGCPRO;
957 return Qnil;
960 DEFUN ("save-excursion", Fsave_excursion, Ssave_excursion, 0, UNEVALLED, 0,
961 doc: /* Save point, mark, and current buffer; execute BODY; restore those things.
962 Executes BODY just like `progn'.
963 The values of point, mark and the current buffer are restored
964 even in case of abnormal exit (throw or error).
965 The state of activation of the mark is also restored.
967 This construct does not save `deactivate-mark', and therefore
968 functions that change the buffer will still cause deactivation
969 of the mark at the end of the command. To prevent that, bind
970 `deactivate-mark' with `let'.
972 If you only want to save the current buffer but not point nor mark,
973 then just use `save-current-buffer', or even `with-current-buffer'.
975 usage: (save-excursion &rest BODY) */)
976 (Lisp_Object args)
978 register Lisp_Object val;
979 int count = SPECPDL_INDEX ();
981 record_unwind_protect (save_excursion_restore, save_excursion_save ());
983 val = Fprogn (args);
984 return unbind_to (count, val);
987 DEFUN ("save-current-buffer", Fsave_current_buffer, Ssave_current_buffer, 0, UNEVALLED, 0,
988 doc: /* Save the current buffer; execute BODY; restore the current buffer.
989 Executes BODY just like `progn'.
990 usage: (save-current-buffer &rest BODY) */)
991 (Lisp_Object args)
993 Lisp_Object val;
994 int count = SPECPDL_INDEX ();
996 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
998 val = Fprogn (args);
999 return unbind_to (count, val);
1002 DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 1, 0,
1003 doc: /* Return the number of characters in the current buffer.
1004 If BUFFER, return the number of characters in that buffer instead. */)
1005 (Lisp_Object buffer)
1007 if (NILP (buffer))
1008 return make_number (Z - BEG);
1009 else
1011 CHECK_BUFFER (buffer);
1012 return make_number (BUF_Z (XBUFFER (buffer))
1013 - BUF_BEG (XBUFFER (buffer)));
1017 DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0,
1018 doc: /* Return the minimum permissible value of point in the current buffer.
1019 This is 1, unless narrowing (a buffer restriction) is in effect. */)
1020 (void)
1022 Lisp_Object temp;
1023 XSETFASTINT (temp, BEGV);
1024 return temp;
1027 DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0,
1028 doc: /* Return a marker to the minimum permissible value of point in this buffer.
1029 This is the beginning, unless narrowing (a buffer restriction) is in effect. */)
1030 (void)
1032 return buildmark (BEGV, BEGV_BYTE);
1035 DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0,
1036 doc: /* Return the maximum permissible value of point in the current buffer.
1037 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
1038 is in effect, in which case it is less. */)
1039 (void)
1041 Lisp_Object temp;
1042 XSETFASTINT (temp, ZV);
1043 return temp;
1046 DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0,
1047 doc: /* Return a marker to the maximum permissible value of point in this buffer.
1048 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
1049 is in effect, in which case it is less. */)
1050 (void)
1052 return buildmark (ZV, ZV_BYTE);
1055 DEFUN ("gap-position", Fgap_position, Sgap_position, 0, 0, 0,
1056 doc: /* Return the position of the gap, in the current buffer.
1057 See also `gap-size'. */)
1058 (void)
1060 Lisp_Object temp;
1061 XSETFASTINT (temp, GPT);
1062 return temp;
1065 DEFUN ("gap-size", Fgap_size, Sgap_size, 0, 0, 0,
1066 doc: /* Return the size of the current buffer's gap.
1067 See also `gap-position'. */)
1068 (void)
1070 Lisp_Object temp;
1071 XSETFASTINT (temp, GAP_SIZE);
1072 return temp;
1075 DEFUN ("position-bytes", Fposition_bytes, Sposition_bytes, 1, 1, 0,
1076 doc: /* Return the byte position for character position POSITION.
1077 If POSITION is out of range, the value is nil. */)
1078 (Lisp_Object position)
1080 CHECK_NUMBER_COERCE_MARKER (position);
1081 if (XINT (position) < BEG || XINT (position) > Z)
1082 return Qnil;
1083 return make_number (CHAR_TO_BYTE (XINT (position)));
1086 DEFUN ("byte-to-position", Fbyte_to_position, Sbyte_to_position, 1, 1, 0,
1087 doc: /* Return the character position for byte position BYTEPOS.
1088 If BYTEPOS is out of range, the value is nil. */)
1089 (Lisp_Object bytepos)
1091 CHECK_NUMBER (bytepos);
1092 if (XINT (bytepos) < BEG_BYTE || XINT (bytepos) > Z_BYTE)
1093 return Qnil;
1094 return make_number (BYTE_TO_CHAR (XINT (bytepos)));
1097 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
1098 doc: /* Return the character following point, as a number.
1099 At the end of the buffer or accessible region, return 0. */)
1100 (void)
1102 Lisp_Object temp;
1103 if (PT >= ZV)
1104 XSETFASTINT (temp, 0);
1105 else
1106 XSETFASTINT (temp, FETCH_CHAR (PT_BYTE));
1107 return temp;
1110 DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
1111 doc: /* Return the character preceding point, as a number.
1112 At the beginning of the buffer or accessible region, return 0. */)
1113 (void)
1115 Lisp_Object temp;
1116 if (PT <= BEGV)
1117 XSETFASTINT (temp, 0);
1118 else if (!NILP (BVAR (current_buffer, enable_multibyte_characters)))
1120 EMACS_INT pos = PT_BYTE;
1121 DEC_POS (pos);
1122 XSETFASTINT (temp, FETCH_CHAR (pos));
1124 else
1125 XSETFASTINT (temp, FETCH_BYTE (PT_BYTE - 1));
1126 return temp;
1129 DEFUN ("bobp", Fbobp, Sbobp, 0, 0, 0,
1130 doc: /* Return t if point is at the beginning of the buffer.
1131 If the buffer is narrowed, this means the beginning of the narrowed part. */)
1132 (void)
1134 if (PT == BEGV)
1135 return Qt;
1136 return Qnil;
1139 DEFUN ("eobp", Feobp, Seobp, 0, 0, 0,
1140 doc: /* Return t if point is at the end of the buffer.
1141 If the buffer is narrowed, this means the end of the narrowed part. */)
1142 (void)
1144 if (PT == ZV)
1145 return Qt;
1146 return Qnil;
1149 DEFUN ("bolp", Fbolp, Sbolp, 0, 0, 0,
1150 doc: /* Return t if point is at the beginning of a line. */)
1151 (void)
1153 if (PT == BEGV || FETCH_BYTE (PT_BYTE - 1) == '\n')
1154 return Qt;
1155 return Qnil;
1158 DEFUN ("eolp", Feolp, Seolp, 0, 0, 0,
1159 doc: /* Return t if point is at the end of a line.
1160 `End of a line' includes point being at the end of the buffer. */)
1161 (void)
1163 if (PT == ZV || FETCH_BYTE (PT_BYTE) == '\n')
1164 return Qt;
1165 return Qnil;
1168 DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0,
1169 doc: /* Return character in current buffer at position POS.
1170 POS is an integer or a marker and defaults to point.
1171 If POS is out of range, the value is nil. */)
1172 (Lisp_Object pos)
1174 register EMACS_INT pos_byte;
1176 if (NILP (pos))
1178 pos_byte = PT_BYTE;
1179 XSETFASTINT (pos, PT);
1182 if (MARKERP (pos))
1184 pos_byte = marker_byte_position (pos);
1185 if (pos_byte < BEGV_BYTE || pos_byte >= ZV_BYTE)
1186 return Qnil;
1188 else
1190 CHECK_NUMBER_COERCE_MARKER (pos);
1191 if (XINT (pos) < BEGV || XINT (pos) >= ZV)
1192 return Qnil;
1194 pos_byte = CHAR_TO_BYTE (XINT (pos));
1197 return make_number (FETCH_CHAR (pos_byte));
1200 DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0,
1201 doc: /* Return character in current buffer preceding position POS.
1202 POS is an integer or a marker and defaults to point.
1203 If POS is out of range, the value is nil. */)
1204 (Lisp_Object pos)
1206 register Lisp_Object val;
1207 register EMACS_INT pos_byte;
1209 if (NILP (pos))
1211 pos_byte = PT_BYTE;
1212 XSETFASTINT (pos, PT);
1215 if (MARKERP (pos))
1217 pos_byte = marker_byte_position (pos);
1219 if (pos_byte <= BEGV_BYTE || pos_byte > ZV_BYTE)
1220 return Qnil;
1222 else
1224 CHECK_NUMBER_COERCE_MARKER (pos);
1226 if (XINT (pos) <= BEGV || XINT (pos) > ZV)
1227 return Qnil;
1229 pos_byte = CHAR_TO_BYTE (XINT (pos));
1232 if (!NILP (BVAR (current_buffer, enable_multibyte_characters)))
1234 DEC_POS (pos_byte);
1235 XSETFASTINT (val, FETCH_CHAR (pos_byte));
1237 else
1239 pos_byte--;
1240 XSETFASTINT (val, FETCH_BYTE (pos_byte));
1242 return val;
1245 DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 1, 0,
1246 doc: /* Return the name under which the user logged in, as a string.
1247 This is based on the effective uid, not the real uid.
1248 Also, if the environment variables LOGNAME or USER are set,
1249 that determines the value of this function.
1251 If optional argument UID is an integer or a float, return the login name
1252 of the user with that uid, or nil if there is no such user. */)
1253 (Lisp_Object uid)
1255 struct passwd *pw;
1256 uid_t id;
1258 /* Set up the user name info if we didn't do it before.
1259 (That can happen if Emacs is dumpable
1260 but you decide to run `temacs -l loadup' and not dump. */
1261 if (INTEGERP (Vuser_login_name))
1262 init_editfns ();
1264 if (NILP (uid))
1265 return Vuser_login_name;
1267 id = XFLOATINT (uid);
1268 BLOCK_INPUT;
1269 pw = getpwuid (id);
1270 UNBLOCK_INPUT;
1271 return (pw ? build_string (pw->pw_name) : Qnil);
1274 DEFUN ("user-real-login-name", Fuser_real_login_name, Suser_real_login_name,
1275 0, 0, 0,
1276 doc: /* Return the name of the user's real uid, as a string.
1277 This ignores the environment variables LOGNAME and USER, so it differs from
1278 `user-login-name' when running under `su'. */)
1279 (void)
1281 /* Set up the user name info if we didn't do it before.
1282 (That can happen if Emacs is dumpable
1283 but you decide to run `temacs -l loadup' and not dump. */
1284 if (INTEGERP (Vuser_login_name))
1285 init_editfns ();
1286 return Vuser_real_login_name;
1289 DEFUN ("user-uid", Fuser_uid, Suser_uid, 0, 0, 0,
1290 doc: /* Return the effective uid of Emacs.
1291 Value is an integer or a float, depending on the value. */)
1292 (void)
1294 /* Assignment to EMACS_INT stops GCC whining about limited range of
1295 data type. */
1296 EMACS_INT euid = geteuid ();
1298 /* Make sure we don't produce a negative UID due to signed integer
1299 overflow. */
1300 if (euid < 0)
1301 return make_float (geteuid ());
1302 return make_fixnum_or_float (euid);
1305 DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0,
1306 doc: /* Return the real uid of Emacs.
1307 Value is an integer or a float, depending on the value. */)
1308 (void)
1310 /* Assignment to EMACS_INT stops GCC whining about limited range of
1311 data type. */
1312 EMACS_INT uid = getuid ();
1314 /* Make sure we don't produce a negative UID due to signed integer
1315 overflow. */
1316 if (uid < 0)
1317 return make_float (getuid ());
1318 return make_fixnum_or_float (uid);
1321 DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 1, 0,
1322 doc: /* Return the full name of the user logged in, as a string.
1323 If the full name corresponding to Emacs's userid is not known,
1324 return "unknown".
1326 If optional argument UID is an integer or float, return the full name
1327 of the user with that uid, or nil if there is no such user.
1328 If UID is a string, return the full name of the user with that login
1329 name, or nil if there is no such user. */)
1330 (Lisp_Object uid)
1332 struct passwd *pw;
1333 register char *p, *q;
1334 Lisp_Object full;
1336 if (NILP (uid))
1337 return Vuser_full_name;
1338 else if (NUMBERP (uid))
1340 uid_t u = XFLOATINT (uid);
1341 BLOCK_INPUT;
1342 pw = getpwuid (u);
1343 UNBLOCK_INPUT;
1345 else if (STRINGP (uid))
1347 BLOCK_INPUT;
1348 pw = getpwnam (SSDATA (uid));
1349 UNBLOCK_INPUT;
1351 else
1352 error ("Invalid UID specification");
1354 if (!pw)
1355 return Qnil;
1357 p = USER_FULL_NAME;
1358 /* Chop off everything after the first comma. */
1359 q = strchr (p, ',');
1360 full = make_string (p, q ? q - p : strlen (p));
1362 #ifdef AMPERSAND_FULL_NAME
1363 p = SSDATA (full);
1364 q = strchr (p, '&');
1365 /* Substitute the login name for the &, upcasing the first character. */
1366 if (q)
1368 register char *r;
1369 Lisp_Object login;
1371 login = Fuser_login_name (make_number (pw->pw_uid));
1372 r = (char *) alloca (strlen (p) + SCHARS (login) + 1);
1373 memcpy (r, p, q - p);
1374 r[q - p] = 0;
1375 strcat (r, SSDATA (login));
1376 r[q - p] = upcase ((unsigned char) r[q - p]);
1377 strcat (r, q + 1);
1378 full = build_string (r);
1380 #endif /* AMPERSAND_FULL_NAME */
1382 return full;
1385 DEFUN ("system-name", Fsystem_name, Ssystem_name, 0, 0, 0,
1386 doc: /* Return the host name of the machine you are running on, as a string. */)
1387 (void)
1389 return Vsystem_name;
1392 const char *
1393 get_system_name (void)
1395 if (STRINGP (Vsystem_name))
1396 return SSDATA (Vsystem_name);
1397 else
1398 return "";
1401 DEFUN ("emacs-pid", Femacs_pid, Semacs_pid, 0, 0, 0,
1402 doc: /* Return the process ID of Emacs, as an integer. */)
1403 (void)
1405 return make_number (getpid ());
1410 #ifndef TIME_T_MIN
1411 # define TIME_T_MIN TYPE_MINIMUM (time_t)
1412 #endif
1413 #ifndef TIME_T_MAX
1414 # define TIME_T_MAX TYPE_MAXIMUM (time_t)
1415 #endif
1417 /* Report that a time value is out of range for Emacs. */
1418 static void
1419 time_overflow (void)
1421 error ("Specified time is not representable");
1424 /* Return the upper part of the time T (everything but the bottom 16 bits),
1425 making sure that it is representable. */
1426 static EMACS_INT
1427 hi_time (time_t t)
1429 time_t hi = t >> 16;
1431 /* Check for overflow, helping the compiler for common cases where
1432 no runtime check is needed, and taking care not to convert
1433 negative numbers to unsigned before comparing them. */
1434 if (! ((! TYPE_SIGNED (time_t)
1435 || MOST_NEGATIVE_FIXNUM <= TIME_T_MIN >> 16
1436 || MOST_NEGATIVE_FIXNUM <= hi)
1437 && (TIME_T_MAX >> 16 <= MOST_POSITIVE_FIXNUM
1438 || hi <= MOST_POSITIVE_FIXNUM)))
1439 time_overflow ();
1441 return hi;
1444 /* Return the bottom 16 bits of the time T. */
1445 static EMACS_INT
1446 lo_time (time_t t)
1448 return t & ((1 << 16) - 1);
1451 DEFUN ("current-time", Fcurrent_time, Scurrent_time, 0, 0, 0,
1452 doc: /* Return the current time, as the number of seconds since 1970-01-01 00:00:00.
1453 The time is returned as a list of three integers. The first has the
1454 most significant 16 bits of the seconds, while the second has the
1455 least significant 16 bits. The third integer gives the microsecond
1456 count.
1458 The microsecond count is zero on systems that do not provide
1459 resolution finer than a second. */)
1460 (void)
1462 EMACS_TIME t;
1464 EMACS_GET_TIME (t);
1465 return list3 (make_number (hi_time (EMACS_SECS (t))),
1466 make_number (lo_time (EMACS_SECS (t))),
1467 make_number (EMACS_USECS (t)));
1470 DEFUN ("get-internal-run-time", Fget_internal_run_time, Sget_internal_run_time,
1471 0, 0, 0,
1472 doc: /* Return the current run time used by Emacs.
1473 The time is returned as a list of three integers. The first has the
1474 most significant 16 bits of the seconds, while the second has the
1475 least significant 16 bits. The third integer gives the microsecond
1476 count.
1478 On systems that can't determine the run time, `get-internal-run-time'
1479 does the same thing as `current-time'. The microsecond count is zero
1480 on systems that do not provide resolution finer than a second. */)
1481 (void)
1483 #ifdef HAVE_GETRUSAGE
1484 struct rusage usage;
1485 time_t secs;
1486 int usecs;
1488 if (getrusage (RUSAGE_SELF, &usage) < 0)
1489 /* This shouldn't happen. What action is appropriate? */
1490 xsignal0 (Qerror);
1492 /* Sum up user time and system time. */
1493 secs = usage.ru_utime.tv_sec + usage.ru_stime.tv_sec;
1494 usecs = usage.ru_utime.tv_usec + usage.ru_stime.tv_usec;
1495 if (usecs >= 1000000)
1497 usecs -= 1000000;
1498 secs++;
1501 return list3 (make_number (hi_time (secs)),
1502 make_number (lo_time (secs)),
1503 make_number (usecs));
1504 #else /* ! HAVE_GETRUSAGE */
1505 #ifdef WINDOWSNT
1506 return w32_get_internal_run_time ();
1507 #else /* ! WINDOWSNT */
1508 return Fcurrent_time ();
1509 #endif /* WINDOWSNT */
1510 #endif /* HAVE_GETRUSAGE */
1514 /* Make a Lisp list that represents the time T. */
1515 Lisp_Object
1516 make_time (time_t t)
1518 return list2 (make_number (hi_time (t)),
1519 make_number (lo_time (t)));
1522 /* Decode a Lisp list SPECIFIED_TIME that represents a time.
1523 If SPECIFIED_TIME is nil, use the current time.
1524 Set *RESULT to seconds since the Epoch.
1525 If USEC is not null, set *USEC to the microseconds component.
1526 Return nonzero if successful. */
1528 lisp_time_argument (Lisp_Object specified_time, time_t *result, int *usec)
1530 if (NILP (specified_time))
1532 if (usec)
1534 EMACS_TIME t;
1536 EMACS_GET_TIME (t);
1537 *usec = EMACS_USECS (t);
1538 *result = EMACS_SECS (t);
1539 return 1;
1541 else
1542 return time (result) != -1;
1544 else
1546 Lisp_Object high, low;
1547 EMACS_INT hi;
1548 high = Fcar (specified_time);
1549 CHECK_NUMBER (high);
1550 low = Fcdr (specified_time);
1551 if (CONSP (low))
1553 if (usec)
1555 Lisp_Object usec_l = Fcdr (low);
1556 if (CONSP (usec_l))
1557 usec_l = Fcar (usec_l);
1558 if (NILP (usec_l))
1559 *usec = 0;
1560 else
1562 CHECK_NUMBER (usec_l);
1563 *usec = XINT (usec_l);
1566 low = Fcar (low);
1568 else if (usec)
1569 *usec = 0;
1570 CHECK_NUMBER (low);
1571 hi = XINT (high);
1573 /* Check for overflow, helping the compiler for common cases
1574 where no runtime check is needed, and taking care not to
1575 convert negative numbers to unsigned before comparing them. */
1576 if (! ((TYPE_SIGNED (time_t)
1577 ? (TIME_T_MIN >> 16 <= MOST_NEGATIVE_FIXNUM
1578 || TIME_T_MIN >> 16 <= hi)
1579 : 0 <= hi)
1580 && (MOST_POSITIVE_FIXNUM <= TIME_T_MAX >> 16
1581 || hi <= TIME_T_MAX >> 16)))
1582 return 0;
1584 *result = (hi << 16) + (XINT (low) & 0xffff);
1585 return 1;
1589 DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0,
1590 doc: /* Return the current time, as a float number of seconds since the epoch.
1591 If SPECIFIED-TIME is given, it is the time to convert to float
1592 instead of the current time. The argument should have the form
1593 (HIGH LOW) or (HIGH LOW USEC). Thus, you can use times obtained from
1594 `current-time' and from `file-attributes'. SPECIFIED-TIME can also
1595 have the form (HIGH . LOW), but this is considered obsolete.
1597 WARNING: Since the result is floating point, it may not be exact.
1598 If precise time stamps are required, use either `current-time',
1599 or (if you need time as a string) `format-time-string'. */)
1600 (Lisp_Object specified_time)
1602 time_t sec;
1603 int usec;
1605 if (! lisp_time_argument (specified_time, &sec, &usec))
1606 error ("Invalid time specification");
1608 return make_float ((sec * 1e6 + usec) / 1e6);
1611 /* Write information into buffer S of size MAXSIZE, according to the
1612 FORMAT of length FORMAT_LEN, using time information taken from *TP.
1613 Default to Universal Time if UT is nonzero, local time otherwise.
1614 Use NS as the number of nanoseconds in the %N directive.
1615 Return the number of bytes written, not including the terminating
1616 '\0'. If S is NULL, nothing will be written anywhere; so to
1617 determine how many bytes would be written, use NULL for S and
1618 ((size_t) -1) for MAXSIZE.
1620 This function behaves like nstrftime, except it allows null
1621 bytes in FORMAT and it does not support nanoseconds. */
1622 static size_t
1623 emacs_nmemftime (char *s, size_t maxsize, const char *format,
1624 size_t format_len, const struct tm *tp, int ut, int ns)
1626 size_t total = 0;
1628 /* Loop through all the null-terminated strings in the format
1629 argument. Normally there's just one null-terminated string, but
1630 there can be arbitrarily many, concatenated together, if the
1631 format contains '\0' bytes. nstrftime stops at the first
1632 '\0' byte so we must invoke it separately for each such string. */
1633 for (;;)
1635 size_t len;
1636 size_t result;
1638 if (s)
1639 s[0] = '\1';
1641 result = nstrftime (s, maxsize, format, tp, ut, ns);
1643 if (s)
1645 if (result == 0 && s[0] != '\0')
1646 return 0;
1647 s += result + 1;
1650 maxsize -= result + 1;
1651 total += result;
1652 len = strlen (format);
1653 if (len == format_len)
1654 return total;
1655 total++;
1656 format += len + 1;
1657 format_len -= len + 1;
1661 DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string, 1, 3, 0,
1662 doc: /* Use FORMAT-STRING to format the time TIME, or now if omitted.
1663 TIME is specified as (HIGH LOW . IGNORED), as returned by
1664 `current-time' or `file-attributes'. The obsolete form (HIGH . LOW)
1665 is also still accepted.
1666 The third, optional, argument UNIVERSAL, if non-nil, means describe TIME
1667 as Universal Time; nil means describe TIME in the local time zone.
1668 The value is a copy of FORMAT-STRING, but with certain constructs replaced
1669 by text that describes the specified date and time in TIME:
1671 %Y is the year, %y within the century, %C the century.
1672 %G is the year corresponding to the ISO week, %g within the century.
1673 %m is the numeric month.
1674 %b and %h are the locale's abbreviated month name, %B the full name.
1675 %d is the day of the month, zero-padded, %e is blank-padded.
1676 %u is the numeric day of week from 1 (Monday) to 7, %w from 0 (Sunday) to 6.
1677 %a is the locale's abbreviated name of the day of week, %A the full name.
1678 %U is the week number starting on Sunday, %W starting on Monday,
1679 %V according to ISO 8601.
1680 %j is the day of the year.
1682 %H is the hour on a 24-hour clock, %I is on a 12-hour clock, %k is like %H
1683 only blank-padded, %l is like %I blank-padded.
1684 %p is the locale's equivalent of either AM or PM.
1685 %M is the minute.
1686 %S is the second.
1687 %N is the nanosecond, %6N the microsecond, %3N the millisecond, etc.
1688 %Z is the time zone name, %z is the numeric form.
1689 %s is the number of seconds since 1970-01-01 00:00:00 +0000.
1691 %c is the locale's date and time format.
1692 %x is the locale's "preferred" date format.
1693 %D is like "%m/%d/%y".
1695 %R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p".
1696 %X is the locale's "preferred" time format.
1698 Finally, %n is a newline, %t is a tab, %% is a literal %.
1700 Certain flags and modifiers are available with some format controls.
1701 The flags are `_', `-', `^' and `#'. For certain characters X,
1702 %_X is like %X, but padded with blanks; %-X is like %X,
1703 but without padding. %^X is like %X, but with all textual
1704 characters up-cased; %#X is like %X, but with letter-case of
1705 all textual characters reversed.
1706 %NX (where N stands for an integer) is like %X,
1707 but takes up at least N (a number) positions.
1708 The modifiers are `E' and `O'. For certain characters X,
1709 %EX is a locale's alternative version of %X;
1710 %OX is like %X, but uses the locale's number symbols.
1712 For example, to produce full ISO 8601 format, use "%Y-%m-%dT%T%z". */)
1713 (Lisp_Object format_string, Lisp_Object timeval, Lisp_Object universal)
1715 time_t value;
1716 int size;
1717 int usec;
1718 int ns;
1719 struct tm *tm;
1720 int ut = ! NILP (universal);
1722 CHECK_STRING (format_string);
1724 if (! (lisp_time_argument (timeval, &value, &usec)
1725 && 0 <= usec && usec < 1000000))
1726 error ("Invalid time specification");
1727 ns = usec * 1000;
1729 format_string = code_convert_string_norecord (format_string,
1730 Vlocale_coding_system, 1);
1732 /* This is probably enough. */
1733 size = SBYTES (format_string) * 6 + 50;
1735 BLOCK_INPUT;
1736 tm = ut ? gmtime (&value) : localtime (&value);
1737 UNBLOCK_INPUT;
1738 if (! tm)
1739 time_overflow ();
1741 synchronize_system_time_locale ();
1743 while (1)
1745 char *buf = (char *) alloca (size + 1);
1746 int result;
1748 buf[0] = '\1';
1749 BLOCK_INPUT;
1750 result = emacs_nmemftime (buf, size, SSDATA (format_string),
1751 SBYTES (format_string),
1752 tm, ut, ns);
1753 UNBLOCK_INPUT;
1754 if ((result > 0 && result < size) || (result == 0 && buf[0] == '\0'))
1755 return code_convert_string_norecord (make_unibyte_string (buf, result),
1756 Vlocale_coding_system, 0);
1758 /* If buffer was too small, make it bigger and try again. */
1759 BLOCK_INPUT;
1760 result = emacs_nmemftime (NULL, (size_t) -1,
1761 SSDATA (format_string),
1762 SBYTES (format_string),
1763 tm, ut, ns);
1764 UNBLOCK_INPUT;
1765 size = result + 1;
1769 DEFUN ("decode-time", Fdecode_time, Sdecode_time, 0, 1, 0,
1770 doc: /* Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).
1771 The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED),
1772 as from `current-time' and `file-attributes', or nil to use the
1773 current time. The obsolete form (HIGH . LOW) is also still accepted.
1774 The list has the following nine members: SEC is an integer between 0
1775 and 60; SEC is 60 for a leap second, which only some operating systems
1776 support. MINUTE is an integer between 0 and 59. HOUR is an integer
1777 between 0 and 23. DAY is an integer between 1 and 31. MONTH is an
1778 integer between 1 and 12. YEAR is an integer indicating the
1779 four-digit year. DOW is the day of week, an integer between 0 and 6,
1780 where 0 is Sunday. DST is t if daylight saving time is in effect,
1781 otherwise nil. ZONE is an integer indicating the number of seconds
1782 east of Greenwich. (Note that Common Lisp has different meanings for
1783 DOW and ZONE.) */)
1784 (Lisp_Object specified_time)
1786 time_t time_spec;
1787 struct tm save_tm;
1788 struct tm *decoded_time;
1789 Lisp_Object list_args[9];
1791 if (! lisp_time_argument (specified_time, &time_spec, NULL))
1792 error ("Invalid time specification");
1794 BLOCK_INPUT;
1795 decoded_time = localtime (&time_spec);
1796 UNBLOCK_INPUT;
1797 if (! (decoded_time
1798 && MOST_NEGATIVE_FIXNUM - TM_YEAR_BASE <= decoded_time->tm_year
1799 && decoded_time->tm_year <= MOST_POSITIVE_FIXNUM - TM_YEAR_BASE))
1800 time_overflow ();
1801 XSETFASTINT (list_args[0], decoded_time->tm_sec);
1802 XSETFASTINT (list_args[1], decoded_time->tm_min);
1803 XSETFASTINT (list_args[2], decoded_time->tm_hour);
1804 XSETFASTINT (list_args[3], decoded_time->tm_mday);
1805 XSETFASTINT (list_args[4], decoded_time->tm_mon + 1);
1806 /* On 64-bit machines an int is narrower than EMACS_INT, thus the
1807 cast below avoids overflow in int arithmetics. */
1808 XSETINT (list_args[5], TM_YEAR_BASE + (EMACS_INT) decoded_time->tm_year);
1809 XSETFASTINT (list_args[6], decoded_time->tm_wday);
1810 list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil;
1812 /* Make a copy, in case gmtime modifies the struct. */
1813 save_tm = *decoded_time;
1814 BLOCK_INPUT;
1815 decoded_time = gmtime (&time_spec);
1816 UNBLOCK_INPUT;
1817 if (decoded_time == 0)
1818 list_args[8] = Qnil;
1819 else
1820 XSETINT (list_args[8], tm_diff (&save_tm, decoded_time));
1821 return Flist (9, list_args);
1824 /* Return OBJ - OFFSET, checking that OBJ is a valid fixnum and that
1825 the result is representable as an int. Assume OFFSET is small and
1826 nonnegative. */
1827 static int
1828 check_tm_member (Lisp_Object obj, int offset)
1830 EMACS_INT n;
1831 CHECK_NUMBER (obj);
1832 n = XINT (obj);
1833 if (! (INT_MIN + offset <= n && n - offset <= INT_MAX))
1834 time_overflow ();
1835 return n - offset;
1838 DEFUN ("encode-time", Fencode_time, Sencode_time, 6, MANY, 0,
1839 doc: /* Convert SECOND, MINUTE, HOUR, DAY, MONTH, YEAR and ZONE to internal time.
1840 This is the reverse operation of `decode-time', which see.
1841 ZONE defaults to the current time zone rule. This can
1842 be a string or t (as from `set-time-zone-rule'), or it can be a list
1843 \(as from `current-time-zone') or an integer (as from `decode-time')
1844 applied without consideration for daylight saving time.
1846 You can pass more than 7 arguments; then the first six arguments
1847 are used as SECOND through YEAR, and the *last* argument is used as ZONE.
1848 The intervening arguments are ignored.
1849 This feature lets (apply 'encode-time (decode-time ...)) work.
1851 Out-of-range values for SECOND, MINUTE, HOUR, DAY, or MONTH are allowed;
1852 for example, a DAY of 0 means the day preceding the given month.
1853 Year numbers less than 100 are treated just like other year numbers.
1854 If you want them to stand for years in this century, you must do that yourself.
1856 Years before 1970 are not guaranteed to work. On some systems,
1857 year values as low as 1901 do work.
1859 usage: (encode-time SECOND MINUTE HOUR DAY MONTH YEAR &optional ZONE) */)
1860 (size_t nargs, register Lisp_Object *args)
1862 time_t value;
1863 struct tm tm;
1864 Lisp_Object zone = (nargs > 6 ? args[nargs - 1] : Qnil);
1866 tm.tm_sec = check_tm_member (args[0], 0);
1867 tm.tm_min = check_tm_member (args[1], 0);
1868 tm.tm_hour = check_tm_member (args[2], 0);
1869 tm.tm_mday = check_tm_member (args[3], 0);
1870 tm.tm_mon = check_tm_member (args[4], 1);
1871 tm.tm_year = check_tm_member (args[5], TM_YEAR_BASE);
1872 tm.tm_isdst = -1;
1874 if (CONSP (zone))
1875 zone = Fcar (zone);
1876 if (NILP (zone))
1878 BLOCK_INPUT;
1879 value = mktime (&tm);
1880 UNBLOCK_INPUT;
1882 else
1884 char tzbuf[100];
1885 const char *tzstring;
1886 char **oldenv = environ, **newenv;
1888 if (EQ (zone, Qt))
1889 tzstring = "UTC0";
1890 else if (STRINGP (zone))
1891 tzstring = SSDATA (zone);
1892 else if (INTEGERP (zone))
1894 int abszone = eabs (XINT (zone));
1895 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
1896 abszone / (60*60), (abszone/60) % 60, abszone % 60);
1897 tzstring = tzbuf;
1899 else
1900 error ("Invalid time zone specification");
1902 /* Set TZ before calling mktime; merely adjusting mktime's returned
1903 value doesn't suffice, since that would mishandle leap seconds. */
1904 set_time_zone_rule (tzstring);
1906 BLOCK_INPUT;
1907 value = mktime (&tm);
1908 UNBLOCK_INPUT;
1910 /* Restore TZ to previous value. */
1911 newenv = environ;
1912 environ = oldenv;
1913 xfree (newenv);
1914 #ifdef LOCALTIME_CACHE
1915 tzset ();
1916 #endif
1919 if (value == (time_t) -1)
1920 time_overflow ();
1922 return make_time (value);
1925 DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 1, 0,
1926 doc: /* Return the current local time, as a human-readable string.
1927 Programs can use this function to decode a time,
1928 since the number of columns in each field is fixed
1929 if the year is in the range 1000-9999.
1930 The format is `Sun Sep 16 01:03:52 1973'.
1931 However, see also the functions `decode-time' and `format-time-string'
1932 which provide a much more powerful and general facility.
1934 If SPECIFIED-TIME is given, it is a time to format instead of the
1935 current time. The argument should have the form (HIGH LOW . IGNORED).
1936 Thus, you can use times obtained from `current-time' and from
1937 `file-attributes'. SPECIFIED-TIME can also have the form (HIGH . LOW),
1938 but this is considered obsolete. */)
1939 (Lisp_Object specified_time)
1941 time_t value;
1942 struct tm *tm;
1943 register char *tem;
1945 if (! lisp_time_argument (specified_time, &value, NULL))
1946 error ("Invalid time specification");
1948 /* Convert to a string, checking for out-of-range time stamps.
1949 Don't use 'ctime', as that might dump core if VALUE is out of
1950 range. */
1951 BLOCK_INPUT;
1952 tm = localtime (&value);
1953 UNBLOCK_INPUT;
1954 if (! (tm && TM_YEAR_IN_ASCTIME_RANGE (tm->tm_year) && (tem = asctime (tm))))
1955 time_overflow ();
1957 /* Remove the trailing newline. */
1958 tem[strlen (tem) - 1] = '\0';
1960 return build_string (tem);
1963 /* Yield A - B, measured in seconds.
1964 This function is copied from the GNU C Library. */
1965 static int
1966 tm_diff (struct tm *a, struct tm *b)
1968 /* Compute intervening leap days correctly even if year is negative.
1969 Take care to avoid int overflow in leap day calculations,
1970 but it's OK to assume that A and B are close to each other. */
1971 int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3);
1972 int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3);
1973 int a100 = a4 / 25 - (a4 % 25 < 0);
1974 int b100 = b4 / 25 - (b4 % 25 < 0);
1975 int a400 = a100 >> 2;
1976 int b400 = b100 >> 2;
1977 int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);
1978 int years = a->tm_year - b->tm_year;
1979 int days = (365 * years + intervening_leap_days
1980 + (a->tm_yday - b->tm_yday));
1981 return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour))
1982 + (a->tm_min - b->tm_min))
1983 + (a->tm_sec - b->tm_sec));
1986 DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 1, 0,
1987 doc: /* Return the offset and name for the local time zone.
1988 This returns a list of the form (OFFSET NAME).
1989 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
1990 A negative value means west of Greenwich.
1991 NAME is a string giving the name of the time zone.
1992 If SPECIFIED-TIME is given, the time zone offset is determined from it
1993 instead of using the current time. The argument should have the form
1994 (HIGH LOW . IGNORED). Thus, you can use times obtained from
1995 `current-time' and from `file-attributes'. SPECIFIED-TIME can also
1996 have the form (HIGH . LOW), but this is considered obsolete.
1998 Some operating systems cannot provide all this information to Emacs;
1999 in this case, `current-time-zone' returns a list containing nil for
2000 the data it can't find. */)
2001 (Lisp_Object specified_time)
2003 time_t value;
2004 struct tm *t;
2005 struct tm gmt;
2007 if (!lisp_time_argument (specified_time, &value, NULL))
2008 t = NULL;
2009 else
2011 BLOCK_INPUT;
2012 t = gmtime (&value);
2013 if (t)
2015 gmt = *t;
2016 t = localtime (&value);
2018 UNBLOCK_INPUT;
2021 if (t)
2023 int offset = tm_diff (t, &gmt);
2024 char *s = 0;
2025 char buf[6];
2027 #ifdef HAVE_TM_ZONE
2028 if (t->tm_zone)
2029 s = (char *)t->tm_zone;
2030 #else /* not HAVE_TM_ZONE */
2031 #ifdef HAVE_TZNAME
2032 if (t->tm_isdst == 0 || t->tm_isdst == 1)
2033 s = tzname[t->tm_isdst];
2034 #endif
2035 #endif /* not HAVE_TM_ZONE */
2037 if (!s)
2039 /* No local time zone name is available; use "+-NNNN" instead. */
2040 int am = (offset < 0 ? -offset : offset) / 60;
2041 sprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60, am%60);
2042 s = buf;
2045 return Fcons (make_number (offset), Fcons (build_string (s), Qnil));
2047 else
2048 return Fmake_list (make_number (2), Qnil);
2051 /* This holds the value of `environ' produced by the previous
2052 call to Fset_time_zone_rule, or 0 if Fset_time_zone_rule
2053 has never been called. */
2054 static char **environbuf;
2056 /* This holds the startup value of the TZ environment variable so it
2057 can be restored if the user calls set-time-zone-rule with a nil
2058 argument. */
2059 static char *initial_tz;
2061 DEFUN ("set-time-zone-rule", Fset_time_zone_rule, Sset_time_zone_rule, 1, 1, 0,
2062 doc: /* Set the local time zone using TZ, a string specifying a time zone rule.
2063 If TZ is nil, use implementation-defined default time zone information.
2064 If TZ is t, use Universal Time. */)
2065 (Lisp_Object tz)
2067 const char *tzstring;
2069 /* When called for the first time, save the original TZ. */
2070 if (!environbuf)
2071 initial_tz = (char *) getenv ("TZ");
2073 if (NILP (tz))
2074 tzstring = initial_tz;
2075 else if (EQ (tz, Qt))
2076 tzstring = "UTC0";
2077 else
2079 CHECK_STRING (tz);
2080 tzstring = SSDATA (tz);
2083 set_time_zone_rule (tzstring);
2084 free (environbuf);
2085 environbuf = environ;
2087 return Qnil;
2090 #ifdef LOCALTIME_CACHE
2092 /* These two values are known to load tz files in buggy implementations,
2093 i.e. Solaris 1 executables running under either Solaris 1 or Solaris 2.
2094 Their values shouldn't matter in non-buggy implementations.
2095 We don't use string literals for these strings,
2096 since if a string in the environment is in readonly
2097 storage, it runs afoul of bugs in SVR4 and Solaris 2.3.
2098 See Sun bugs 1113095 and 1114114, ``Timezone routines
2099 improperly modify environment''. */
2101 static char set_time_zone_rule_tz1[] = "TZ=GMT+0";
2102 static char set_time_zone_rule_tz2[] = "TZ=GMT+1";
2104 #endif
2106 /* Set the local time zone rule to TZSTRING.
2107 This allocates memory into `environ', which it is the caller's
2108 responsibility to free. */
2110 void
2111 set_time_zone_rule (const char *tzstring)
2113 int envptrs;
2114 char **from, **to, **newenv;
2116 /* Make the ENVIRON vector longer with room for TZSTRING. */
2117 for (from = environ; *from; from++)
2118 continue;
2119 envptrs = from - environ + 2;
2120 newenv = to = (char **) xmalloc (envptrs * sizeof (char *)
2121 + (tzstring ? strlen (tzstring) + 4 : 0));
2123 /* Add TZSTRING to the end of environ, as a value for TZ. */
2124 if (tzstring)
2126 char *t = (char *) (to + envptrs);
2127 strcpy (t, "TZ=");
2128 strcat (t, tzstring);
2129 *to++ = t;
2132 /* Copy the old environ vector elements into NEWENV,
2133 but don't copy the TZ variable.
2134 So we have only one definition of TZ, which came from TZSTRING. */
2135 for (from = environ; *from; from++)
2136 if (strncmp (*from, "TZ=", 3) != 0)
2137 *to++ = *from;
2138 *to = 0;
2140 environ = newenv;
2142 /* If we do have a TZSTRING, NEWENV points to the vector slot where
2143 the TZ variable is stored. If we do not have a TZSTRING,
2144 TO points to the vector slot which has the terminating null. */
2146 #ifdef LOCALTIME_CACHE
2148 /* In SunOS 4.1.3_U1 and 4.1.4, if TZ has a value like
2149 "US/Pacific" that loads a tz file, then changes to a value like
2150 "XXX0" that does not load a tz file, and then changes back to
2151 its original value, the last change is (incorrectly) ignored.
2152 Also, if TZ changes twice in succession to values that do
2153 not load a tz file, tzset can dump core (see Sun bug#1225179).
2154 The following code works around these bugs. */
2156 if (tzstring)
2158 /* Temporarily set TZ to a value that loads a tz file
2159 and that differs from tzstring. */
2160 char *tz = *newenv;
2161 *newenv = (strcmp (tzstring, set_time_zone_rule_tz1 + 3) == 0
2162 ? set_time_zone_rule_tz2 : set_time_zone_rule_tz1);
2163 tzset ();
2164 *newenv = tz;
2166 else
2168 /* The implied tzstring is unknown, so temporarily set TZ to
2169 two different values that each load a tz file. */
2170 *to = set_time_zone_rule_tz1;
2171 to[1] = 0;
2172 tzset ();
2173 *to = set_time_zone_rule_tz2;
2174 tzset ();
2175 *to = 0;
2178 /* Now TZ has the desired value, and tzset can be invoked safely. */
2181 tzset ();
2182 #endif
2185 /* Insert NARGS Lisp objects in the array ARGS by calling INSERT_FUNC
2186 (if a type of object is Lisp_Int) or INSERT_FROM_STRING_FUNC (if a
2187 type of object is Lisp_String). INHERIT is passed to
2188 INSERT_FROM_STRING_FUNC as the last argument. */
2190 static void
2191 general_insert_function (void (*insert_func)
2192 (const char *, EMACS_INT),
2193 void (*insert_from_string_func)
2194 (Lisp_Object, EMACS_INT, EMACS_INT,
2195 EMACS_INT, EMACS_INT, int),
2196 int inherit, size_t nargs, Lisp_Object *args)
2198 register size_t argnum;
2199 register Lisp_Object val;
2201 for (argnum = 0; argnum < nargs; argnum++)
2203 val = args[argnum];
2204 if (CHARACTERP (val))
2206 unsigned char str[MAX_MULTIBYTE_LENGTH];
2207 int len;
2209 if (!NILP (BVAR (current_buffer, enable_multibyte_characters)))
2210 len = CHAR_STRING (XFASTINT (val), str);
2211 else
2213 str[0] = (ASCII_CHAR_P (XINT (val))
2214 ? XINT (val)
2215 : multibyte_char_to_unibyte (XINT (val)));
2216 len = 1;
2218 (*insert_func) ((char *) str, len);
2220 else if (STRINGP (val))
2222 (*insert_from_string_func) (val, 0, 0,
2223 SCHARS (val),
2224 SBYTES (val),
2225 inherit);
2227 else
2228 wrong_type_argument (Qchar_or_string_p, val);
2232 void
2233 insert1 (Lisp_Object arg)
2235 Finsert (1, &arg);
2239 /* Callers passing one argument to Finsert need not gcpro the
2240 argument "array", since the only element of the array will
2241 not be used after calling insert or insert_from_string, so
2242 we don't care if it gets trashed. */
2244 DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0,
2245 doc: /* Insert the arguments, either strings or characters, at point.
2246 Point and before-insertion markers move forward to end up
2247 after the inserted text.
2248 Any other markers at the point of insertion remain before the text.
2250 If the current buffer is multibyte, unibyte strings are converted
2251 to multibyte for insertion (see `string-make-multibyte').
2252 If the current buffer is unibyte, multibyte strings are converted
2253 to unibyte for insertion (see `string-make-unibyte').
2255 When operating on binary data, it may be necessary to preserve the
2256 original bytes of a unibyte string when inserting it into a multibyte
2257 buffer; to accomplish this, apply `string-as-multibyte' to the string
2258 and insert the result.
2260 usage: (insert &rest ARGS) */)
2261 (size_t nargs, register Lisp_Object *args)
2263 general_insert_function (insert, insert_from_string, 0, nargs, args);
2264 return Qnil;
2267 DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit,
2268 0, MANY, 0,
2269 doc: /* Insert the arguments at point, inheriting properties from adjoining text.
2270 Point and before-insertion markers move forward to end up
2271 after the inserted text.
2272 Any other markers at the point of insertion remain before the text.
2274 If the current buffer is multibyte, unibyte strings are converted
2275 to multibyte for insertion (see `unibyte-char-to-multibyte').
2276 If the current buffer is unibyte, multibyte strings are converted
2277 to unibyte for insertion.
2279 usage: (insert-and-inherit &rest ARGS) */)
2280 (size_t nargs, register Lisp_Object *args)
2282 general_insert_function (insert_and_inherit, insert_from_string, 1,
2283 nargs, args);
2284 return Qnil;
2287 DEFUN ("insert-before-markers", Finsert_before_markers, Sinsert_before_markers, 0, MANY, 0,
2288 doc: /* Insert strings or characters at point, relocating markers after the text.
2289 Point and markers move forward to end up after the inserted text.
2291 If the current buffer is multibyte, unibyte strings are converted
2292 to multibyte for insertion (see `unibyte-char-to-multibyte').
2293 If the current buffer is unibyte, multibyte strings are converted
2294 to unibyte for insertion.
2296 usage: (insert-before-markers &rest ARGS) */)
2297 (size_t nargs, register Lisp_Object *args)
2299 general_insert_function (insert_before_markers,
2300 insert_from_string_before_markers, 0,
2301 nargs, args);
2302 return Qnil;
2305 DEFUN ("insert-before-markers-and-inherit", Finsert_and_inherit_before_markers,
2306 Sinsert_and_inherit_before_markers, 0, MANY, 0,
2307 doc: /* Insert text at point, relocating markers and inheriting properties.
2308 Point and markers move forward to end up after the inserted text.
2310 If the current buffer is multibyte, unibyte strings are converted
2311 to multibyte for insertion (see `unibyte-char-to-multibyte').
2312 If the current buffer is unibyte, multibyte strings are converted
2313 to unibyte for insertion.
2315 usage: (insert-before-markers-and-inherit &rest ARGS) */)
2316 (size_t nargs, register Lisp_Object *args)
2318 general_insert_function (insert_before_markers_and_inherit,
2319 insert_from_string_before_markers, 1,
2320 nargs, args);
2321 return Qnil;
2324 DEFUN ("insert-char", Finsert_char, Sinsert_char, 2, 3, 0,
2325 doc: /* Insert COUNT copies of CHARACTER.
2326 Point, and before-insertion markers, are relocated as in the function `insert'.
2327 The optional third arg INHERIT, if non-nil, says to inherit text properties
2328 from adjoining text, if those properties are sticky. */)
2329 (Lisp_Object character, Lisp_Object count, Lisp_Object inherit)
2331 register char *string;
2332 register EMACS_INT stringlen;
2333 register int i;
2334 register EMACS_INT n;
2335 int len;
2336 unsigned char str[MAX_MULTIBYTE_LENGTH];
2338 CHECK_NUMBER (character);
2339 CHECK_NUMBER (count);
2341 if (!NILP (BVAR (current_buffer, enable_multibyte_characters)))
2342 len = CHAR_STRING (XFASTINT (character), str);
2343 else
2344 str[0] = XFASTINT (character), len = 1;
2345 if (MOST_POSITIVE_FIXNUM / len < XINT (count))
2346 error ("Maximum buffer size would be exceeded");
2347 n = XINT (count) * len;
2348 if (n <= 0)
2349 return Qnil;
2350 stringlen = min (n, 256 * len);
2351 string = (char *) alloca (stringlen);
2352 for (i = 0; i < stringlen; i++)
2353 string[i] = str[i % len];
2354 while (n >= stringlen)
2356 QUIT;
2357 if (!NILP (inherit))
2358 insert_and_inherit (string, stringlen);
2359 else
2360 insert (string, stringlen);
2361 n -= stringlen;
2363 if (n > 0)
2365 if (!NILP (inherit))
2366 insert_and_inherit (string, n);
2367 else
2368 insert (string, n);
2370 return Qnil;
2373 DEFUN ("insert-byte", Finsert_byte, Sinsert_byte, 2, 3, 0,
2374 doc: /* Insert COUNT (second arg) copies of BYTE (first arg).
2375 Both arguments are required.
2376 BYTE is a number of the range 0..255.
2378 If BYTE is 128..255 and the current buffer is multibyte, the
2379 corresponding eight-bit character is inserted.
2381 Point, and before-insertion markers, are relocated as in the function `insert'.
2382 The optional third arg INHERIT, if non-nil, says to inherit text properties
2383 from adjoining text, if those properties are sticky. */)
2384 (Lisp_Object byte, Lisp_Object count, Lisp_Object inherit)
2386 CHECK_NUMBER (byte);
2387 if (XINT (byte) < 0 || XINT (byte) > 255)
2388 args_out_of_range_3 (byte, make_number (0), make_number (255));
2389 if (XINT (byte) >= 128
2390 && ! NILP (BVAR (current_buffer, enable_multibyte_characters)))
2391 XSETFASTINT (byte, BYTE8_TO_CHAR (XINT (byte)));
2392 return Finsert_char (byte, count, inherit);
2396 /* Making strings from buffer contents. */
2398 /* Return a Lisp_String containing the text of the current buffer from
2399 START to END. If text properties are in use and the current buffer
2400 has properties in the range specified, the resulting string will also
2401 have them, if PROPS is nonzero.
2403 We don't want to use plain old make_string here, because it calls
2404 make_uninit_string, which can cause the buffer arena to be
2405 compacted. make_string has no way of knowing that the data has
2406 been moved, and thus copies the wrong data into the string. This
2407 doesn't effect most of the other users of make_string, so it should
2408 be left as is. But we should use this function when conjuring
2409 buffer substrings. */
2411 Lisp_Object
2412 make_buffer_string (EMACS_INT start, EMACS_INT end, int props)
2414 EMACS_INT start_byte = CHAR_TO_BYTE (start);
2415 EMACS_INT end_byte = CHAR_TO_BYTE (end);
2417 return make_buffer_string_both (start, start_byte, end, end_byte, props);
2420 /* Return a Lisp_String containing the text of the current buffer from
2421 START / START_BYTE to END / END_BYTE.
2423 If text properties are in use and the current buffer
2424 has properties in the range specified, the resulting string will also
2425 have them, if PROPS is nonzero.
2427 We don't want to use plain old make_string here, because it calls
2428 make_uninit_string, which can cause the buffer arena to be
2429 compacted. make_string has no way of knowing that the data has
2430 been moved, and thus copies the wrong data into the string. This
2431 doesn't effect most of the other users of make_string, so it should
2432 be left as is. But we should use this function when conjuring
2433 buffer substrings. */
2435 Lisp_Object
2436 make_buffer_string_both (EMACS_INT start, EMACS_INT start_byte,
2437 EMACS_INT end, EMACS_INT end_byte, int props)
2439 Lisp_Object result, tem, tem1;
2441 if (start < GPT && GPT < end)
2442 move_gap (start);
2444 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
2445 result = make_uninit_multibyte_string (end - start, end_byte - start_byte);
2446 else
2447 result = make_uninit_string (end - start);
2448 memcpy (SDATA (result), BYTE_POS_ADDR (start_byte), end_byte - start_byte);
2450 /* If desired, update and copy the text properties. */
2451 if (props)
2453 update_buffer_properties (start, end);
2455 tem = Fnext_property_change (make_number (start), Qnil, make_number (end));
2456 tem1 = Ftext_properties_at (make_number (start), Qnil);
2458 if (XINT (tem) != end || !NILP (tem1))
2459 copy_intervals_to_string (result, current_buffer, start,
2460 end - start);
2463 return result;
2466 /* Call Vbuffer_access_fontify_functions for the range START ... END
2467 in the current buffer, if necessary. */
2469 static void
2470 update_buffer_properties (EMACS_INT start, EMACS_INT end)
2472 /* If this buffer has some access functions,
2473 call them, specifying the range of the buffer being accessed. */
2474 if (!NILP (Vbuffer_access_fontify_functions))
2476 Lisp_Object args[3];
2477 Lisp_Object tem;
2479 args[0] = Qbuffer_access_fontify_functions;
2480 XSETINT (args[1], start);
2481 XSETINT (args[2], end);
2483 /* But don't call them if we can tell that the work
2484 has already been done. */
2485 if (!NILP (Vbuffer_access_fontified_property))
2487 tem = Ftext_property_any (args[1], args[2],
2488 Vbuffer_access_fontified_property,
2489 Qnil, Qnil);
2490 if (! NILP (tem))
2491 Frun_hook_with_args (3, args);
2493 else
2494 Frun_hook_with_args (3, args);
2498 DEFUN ("buffer-substring", Fbuffer_substring, Sbuffer_substring, 2, 2, 0,
2499 doc: /* Return the contents of part of the current buffer as a string.
2500 The two arguments START and END are character positions;
2501 they can be in either order.
2502 The string returned is multibyte if the buffer is multibyte.
2504 This function copies the text properties of that part of the buffer
2505 into the result string; if you don't want the text properties,
2506 use `buffer-substring-no-properties' instead. */)
2507 (Lisp_Object start, Lisp_Object end)
2509 register EMACS_INT b, e;
2511 validate_region (&start, &end);
2512 b = XINT (start);
2513 e = XINT (end);
2515 return make_buffer_string (b, e, 1);
2518 DEFUN ("buffer-substring-no-properties", Fbuffer_substring_no_properties,
2519 Sbuffer_substring_no_properties, 2, 2, 0,
2520 doc: /* Return the characters of part of the buffer, without the text properties.
2521 The two arguments START and END are character positions;
2522 they can be in either order. */)
2523 (Lisp_Object start, Lisp_Object end)
2525 register EMACS_INT b, e;
2527 validate_region (&start, &end);
2528 b = XINT (start);
2529 e = XINT (end);
2531 return make_buffer_string (b, e, 0);
2534 DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0,
2535 doc: /* Return the contents of the current buffer as a string.
2536 If narrowing is in effect, this function returns only the visible part
2537 of the buffer. */)
2538 (void)
2540 return make_buffer_string (BEGV, ZV, 1);
2543 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, Sinsert_buffer_substring,
2544 1, 3, 0,
2545 doc: /* Insert before point a substring of the contents of BUFFER.
2546 BUFFER may be a buffer or a buffer name.
2547 Arguments START and END are character positions specifying the substring.
2548 They default to the values of (point-min) and (point-max) in BUFFER. */)
2549 (Lisp_Object buffer, Lisp_Object start, Lisp_Object end)
2551 register EMACS_INT b, e, temp;
2552 register struct buffer *bp, *obuf;
2553 Lisp_Object buf;
2555 buf = Fget_buffer (buffer);
2556 if (NILP (buf))
2557 nsberror (buffer);
2558 bp = XBUFFER (buf);
2559 if (NILP (BVAR (bp, name)))
2560 error ("Selecting deleted buffer");
2562 if (NILP (start))
2563 b = BUF_BEGV (bp);
2564 else
2566 CHECK_NUMBER_COERCE_MARKER (start);
2567 b = XINT (start);
2569 if (NILP (end))
2570 e = BUF_ZV (bp);
2571 else
2573 CHECK_NUMBER_COERCE_MARKER (end);
2574 e = XINT (end);
2577 if (b > e)
2578 temp = b, b = e, e = temp;
2580 if (!(BUF_BEGV (bp) <= b && e <= BUF_ZV (bp)))
2581 args_out_of_range (start, end);
2583 obuf = current_buffer;
2584 set_buffer_internal_1 (bp);
2585 update_buffer_properties (b, e);
2586 set_buffer_internal_1 (obuf);
2588 insert_from_buffer (bp, b, e - b, 0);
2589 return Qnil;
2592 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
2593 6, 6, 0,
2594 doc: /* Compare two substrings of two buffers; return result as number.
2595 the value is -N if first string is less after N-1 chars,
2596 +N if first string is greater after N-1 chars, or 0 if strings match.
2597 Each substring is represented as three arguments: BUFFER, START and END.
2598 That makes six args in all, three for each substring.
2600 The value of `case-fold-search' in the current buffer
2601 determines whether case is significant or ignored. */)
2602 (Lisp_Object buffer1, Lisp_Object start1, Lisp_Object end1, Lisp_Object buffer2, Lisp_Object start2, Lisp_Object end2)
2604 register EMACS_INT begp1, endp1, begp2, endp2, temp;
2605 register struct buffer *bp1, *bp2;
2606 register Lisp_Object trt
2607 = (!NILP (BVAR (current_buffer, case_fold_search))
2608 ? BVAR (current_buffer, case_canon_table) : Qnil);
2609 EMACS_INT chars = 0;
2610 EMACS_INT i1, i2, i1_byte, i2_byte;
2612 /* Find the first buffer and its substring. */
2614 if (NILP (buffer1))
2615 bp1 = current_buffer;
2616 else
2618 Lisp_Object buf1;
2619 buf1 = Fget_buffer (buffer1);
2620 if (NILP (buf1))
2621 nsberror (buffer1);
2622 bp1 = XBUFFER (buf1);
2623 if (NILP (BVAR (bp1, name)))
2624 error ("Selecting deleted buffer");
2627 if (NILP (start1))
2628 begp1 = BUF_BEGV (bp1);
2629 else
2631 CHECK_NUMBER_COERCE_MARKER (start1);
2632 begp1 = XINT (start1);
2634 if (NILP (end1))
2635 endp1 = BUF_ZV (bp1);
2636 else
2638 CHECK_NUMBER_COERCE_MARKER (end1);
2639 endp1 = XINT (end1);
2642 if (begp1 > endp1)
2643 temp = begp1, begp1 = endp1, endp1 = temp;
2645 if (!(BUF_BEGV (bp1) <= begp1
2646 && begp1 <= endp1
2647 && endp1 <= BUF_ZV (bp1)))
2648 args_out_of_range (start1, end1);
2650 /* Likewise for second substring. */
2652 if (NILP (buffer2))
2653 bp2 = current_buffer;
2654 else
2656 Lisp_Object buf2;
2657 buf2 = Fget_buffer (buffer2);
2658 if (NILP (buf2))
2659 nsberror (buffer2);
2660 bp2 = XBUFFER (buf2);
2661 if (NILP (BVAR (bp2, name)))
2662 error ("Selecting deleted buffer");
2665 if (NILP (start2))
2666 begp2 = BUF_BEGV (bp2);
2667 else
2669 CHECK_NUMBER_COERCE_MARKER (start2);
2670 begp2 = XINT (start2);
2672 if (NILP (end2))
2673 endp2 = BUF_ZV (bp2);
2674 else
2676 CHECK_NUMBER_COERCE_MARKER (end2);
2677 endp2 = XINT (end2);
2680 if (begp2 > endp2)
2681 temp = begp2, begp2 = endp2, endp2 = temp;
2683 if (!(BUF_BEGV (bp2) <= begp2
2684 && begp2 <= endp2
2685 && endp2 <= BUF_ZV (bp2)))
2686 args_out_of_range (start2, end2);
2688 i1 = begp1;
2689 i2 = begp2;
2690 i1_byte = buf_charpos_to_bytepos (bp1, i1);
2691 i2_byte = buf_charpos_to_bytepos (bp2, i2);
2693 while (i1 < endp1 && i2 < endp2)
2695 /* When we find a mismatch, we must compare the
2696 characters, not just the bytes. */
2697 int c1, c2;
2699 QUIT;
2701 if (! NILP (BVAR (bp1, enable_multibyte_characters)))
2703 c1 = BUF_FETCH_MULTIBYTE_CHAR (bp1, i1_byte);
2704 BUF_INC_POS (bp1, i1_byte);
2705 i1++;
2707 else
2709 c1 = BUF_FETCH_BYTE (bp1, i1);
2710 MAKE_CHAR_MULTIBYTE (c1);
2711 i1++;
2714 if (! NILP (BVAR (bp2, enable_multibyte_characters)))
2716 c2 = BUF_FETCH_MULTIBYTE_CHAR (bp2, i2_byte);
2717 BUF_INC_POS (bp2, i2_byte);
2718 i2++;
2720 else
2722 c2 = BUF_FETCH_BYTE (bp2, i2);
2723 MAKE_CHAR_MULTIBYTE (c2);
2724 i2++;
2727 if (!NILP (trt))
2729 c1 = CHAR_TABLE_TRANSLATE (trt, c1);
2730 c2 = CHAR_TABLE_TRANSLATE (trt, c2);
2732 if (c1 < c2)
2733 return make_number (- 1 - chars);
2734 if (c1 > c2)
2735 return make_number (chars + 1);
2737 chars++;
2740 /* The strings match as far as they go.
2741 If one is shorter, that one is less. */
2742 if (chars < endp1 - begp1)
2743 return make_number (chars + 1);
2744 else if (chars < endp2 - begp2)
2745 return make_number (- chars - 1);
2747 /* Same length too => they are equal. */
2748 return make_number (0);
2751 static Lisp_Object
2752 subst_char_in_region_unwind (Lisp_Object arg)
2754 return BVAR (current_buffer, undo_list) = arg;
2757 static Lisp_Object
2758 subst_char_in_region_unwind_1 (Lisp_Object arg)
2760 return BVAR (current_buffer, filename) = arg;
2763 DEFUN ("subst-char-in-region", Fsubst_char_in_region,
2764 Ssubst_char_in_region, 4, 5, 0,
2765 doc: /* From START to END, replace FROMCHAR with TOCHAR each time it occurs.
2766 If optional arg NOUNDO is non-nil, don't record this change for undo
2767 and don't mark the buffer as really changed.
2768 Both characters must have the same length of multi-byte form. */)
2769 (Lisp_Object start, Lisp_Object end, Lisp_Object fromchar, Lisp_Object tochar, Lisp_Object noundo)
2771 register EMACS_INT pos, pos_byte, stop, i, len, end_byte;
2772 /* Keep track of the first change in the buffer:
2773 if 0 we haven't found it yet.
2774 if < 0 we've found it and we've run the before-change-function.
2775 if > 0 we've actually performed it and the value is its position. */
2776 EMACS_INT changed = 0;
2777 unsigned char fromstr[MAX_MULTIBYTE_LENGTH], tostr[MAX_MULTIBYTE_LENGTH];
2778 unsigned char *p;
2779 int count = SPECPDL_INDEX ();
2780 #define COMBINING_NO 0
2781 #define COMBINING_BEFORE 1
2782 #define COMBINING_AFTER 2
2783 #define COMBINING_BOTH (COMBINING_BEFORE | COMBINING_AFTER)
2784 int maybe_byte_combining = COMBINING_NO;
2785 EMACS_INT last_changed = 0;
2786 int multibyte_p = !NILP (BVAR (current_buffer, enable_multibyte_characters));
2788 restart:
2790 validate_region (&start, &end);
2791 CHECK_NUMBER (fromchar);
2792 CHECK_NUMBER (tochar);
2794 if (multibyte_p)
2796 len = CHAR_STRING (XFASTINT (fromchar), fromstr);
2797 if (CHAR_STRING (XFASTINT (tochar), tostr) != len)
2798 error ("Characters in `subst-char-in-region' have different byte-lengths");
2799 if (!ASCII_BYTE_P (*tostr))
2801 /* If *TOSTR is in the range 0x80..0x9F and TOCHAR is not a
2802 complete multibyte character, it may be combined with the
2803 after bytes. If it is in the range 0xA0..0xFF, it may be
2804 combined with the before and after bytes. */
2805 if (!CHAR_HEAD_P (*tostr))
2806 maybe_byte_combining = COMBINING_BOTH;
2807 else if (BYTES_BY_CHAR_HEAD (*tostr) > len)
2808 maybe_byte_combining = COMBINING_AFTER;
2811 else
2813 len = 1;
2814 fromstr[0] = XFASTINT (fromchar);
2815 tostr[0] = XFASTINT (tochar);
2818 pos = XINT (start);
2819 pos_byte = CHAR_TO_BYTE (pos);
2820 stop = CHAR_TO_BYTE (XINT (end));
2821 end_byte = stop;
2823 /* If we don't want undo, turn off putting stuff on the list.
2824 That's faster than getting rid of things,
2825 and it prevents even the entry for a first change.
2826 Also inhibit locking the file. */
2827 if (!changed && !NILP (noundo))
2829 record_unwind_protect (subst_char_in_region_unwind,
2830 BVAR (current_buffer, undo_list));
2831 BVAR (current_buffer, undo_list) = Qt;
2832 /* Don't do file-locking. */
2833 record_unwind_protect (subst_char_in_region_unwind_1,
2834 BVAR (current_buffer, filename));
2835 BVAR (current_buffer, filename) = Qnil;
2838 if (pos_byte < GPT_BYTE)
2839 stop = min (stop, GPT_BYTE);
2840 while (1)
2842 EMACS_INT pos_byte_next = pos_byte;
2844 if (pos_byte >= stop)
2846 if (pos_byte >= end_byte) break;
2847 stop = end_byte;
2849 p = BYTE_POS_ADDR (pos_byte);
2850 if (multibyte_p)
2851 INC_POS (pos_byte_next);
2852 else
2853 ++pos_byte_next;
2854 if (pos_byte_next - pos_byte == len
2855 && p[0] == fromstr[0]
2856 && (len == 1
2857 || (p[1] == fromstr[1]
2858 && (len == 2 || (p[2] == fromstr[2]
2859 && (len == 3 || p[3] == fromstr[3]))))))
2861 if (changed < 0)
2862 /* We've already seen this and run the before-change-function;
2863 this time we only need to record the actual position. */
2864 changed = pos;
2865 else if (!changed)
2867 changed = -1;
2868 modify_region (current_buffer, pos, XINT (end), 0);
2870 if (! NILP (noundo))
2872 if (MODIFF - 1 == SAVE_MODIFF)
2873 SAVE_MODIFF++;
2874 if (MODIFF - 1 == BUF_AUTOSAVE_MODIFF (current_buffer))
2875 BUF_AUTOSAVE_MODIFF (current_buffer)++;
2878 /* The before-change-function may have moved the gap
2879 or even modified the buffer so we should start over. */
2880 goto restart;
2883 /* Take care of the case where the new character
2884 combines with neighboring bytes. */
2885 if (maybe_byte_combining
2886 && (maybe_byte_combining == COMBINING_AFTER
2887 ? (pos_byte_next < Z_BYTE
2888 && ! CHAR_HEAD_P (FETCH_BYTE (pos_byte_next)))
2889 : ((pos_byte_next < Z_BYTE
2890 && ! CHAR_HEAD_P (FETCH_BYTE (pos_byte_next)))
2891 || (pos_byte > BEG_BYTE
2892 && ! ASCII_BYTE_P (FETCH_BYTE (pos_byte - 1))))))
2894 Lisp_Object tem, string;
2896 struct gcpro gcpro1;
2898 tem = BVAR (current_buffer, undo_list);
2899 GCPRO1 (tem);
2901 /* Make a multibyte string containing this single character. */
2902 string = make_multibyte_string ((char *) tostr, 1, len);
2903 /* replace_range is less efficient, because it moves the gap,
2904 but it handles combining correctly. */
2905 replace_range (pos, pos + 1, string,
2906 0, 0, 1);
2907 pos_byte_next = CHAR_TO_BYTE (pos);
2908 if (pos_byte_next > pos_byte)
2909 /* Before combining happened. We should not increment
2910 POS. So, to cancel the later increment of POS,
2911 decrease it now. */
2912 pos--;
2913 else
2914 INC_POS (pos_byte_next);
2916 if (! NILP (noundo))
2917 BVAR (current_buffer, undo_list) = tem;
2919 UNGCPRO;
2921 else
2923 if (NILP (noundo))
2924 record_change (pos, 1);
2925 for (i = 0; i < len; i++) *p++ = tostr[i];
2927 last_changed = pos + 1;
2929 pos_byte = pos_byte_next;
2930 pos++;
2933 if (changed > 0)
2935 signal_after_change (changed,
2936 last_changed - changed, last_changed - changed);
2937 update_compositions (changed, last_changed, CHECK_ALL);
2940 unbind_to (count, Qnil);
2941 return Qnil;
2945 static Lisp_Object check_translation (EMACS_INT, EMACS_INT, EMACS_INT,
2946 Lisp_Object);
2948 /* Helper function for Ftranslate_region_internal.
2950 Check if a character sequence at POS (POS_BYTE) matches an element
2951 of VAL. VAL is a list (([FROM-CHAR ...] . TO) ...). If a matching
2952 element is found, return it. Otherwise return Qnil. */
2954 static Lisp_Object
2955 check_translation (EMACS_INT pos, EMACS_INT pos_byte, EMACS_INT end,
2956 Lisp_Object val)
2958 int buf_size = 16, buf_used = 0;
2959 int *buf = alloca (sizeof (int) * buf_size);
2961 for (; CONSP (val); val = XCDR (val))
2963 Lisp_Object elt;
2964 EMACS_INT len, i;
2966 elt = XCAR (val);
2967 if (! CONSP (elt))
2968 continue;
2969 elt = XCAR (elt);
2970 if (! VECTORP (elt))
2971 continue;
2972 len = ASIZE (elt);
2973 if (len <= end - pos)
2975 for (i = 0; i < len; i++)
2977 if (buf_used <= i)
2979 unsigned char *p = BYTE_POS_ADDR (pos_byte);
2980 int len1;
2982 if (buf_used == buf_size)
2984 int *newbuf;
2986 buf_size += 16;
2987 newbuf = alloca (sizeof (int) * buf_size);
2988 memcpy (newbuf, buf, sizeof (int) * buf_used);
2989 buf = newbuf;
2991 buf[buf_used++] = STRING_CHAR_AND_LENGTH (p, len1);
2992 pos_byte += len1;
2994 if (XINT (AREF (elt, i)) != buf[i])
2995 break;
2997 if (i == len)
2998 return XCAR (val);
3001 return Qnil;
3005 DEFUN ("translate-region-internal", Ftranslate_region_internal,
3006 Stranslate_region_internal, 3, 3, 0,
3007 doc: /* Internal use only.
3008 From START to END, translate characters according to TABLE.
3009 TABLE is a string or a char-table; the Nth character in it is the
3010 mapping for the character with code N.
3011 It returns the number of characters changed. */)
3012 (Lisp_Object start, Lisp_Object end, register Lisp_Object table)
3014 register unsigned char *tt; /* Trans table. */
3015 register int nc; /* New character. */
3016 int cnt; /* Number of changes made. */
3017 EMACS_INT size; /* Size of translate table. */
3018 EMACS_INT pos, pos_byte, end_pos;
3019 int multibyte = !NILP (BVAR (current_buffer, enable_multibyte_characters));
3020 int string_multibyte IF_LINT (= 0);
3022 validate_region (&start, &end);
3023 if (CHAR_TABLE_P (table))
3025 if (! EQ (XCHAR_TABLE (table)->purpose, Qtranslation_table))
3026 error ("Not a translation table");
3027 size = MAX_CHAR;
3028 tt = NULL;
3030 else
3032 CHECK_STRING (table);
3034 if (! multibyte && (SCHARS (table) < SBYTES (table)))
3035 table = string_make_unibyte (table);
3036 string_multibyte = SCHARS (table) < SBYTES (table);
3037 size = SBYTES (table);
3038 tt = SDATA (table);
3041 pos = XINT (start);
3042 pos_byte = CHAR_TO_BYTE (pos);
3043 end_pos = XINT (end);
3044 modify_region (current_buffer, pos, end_pos, 0);
3046 cnt = 0;
3047 for (; pos < end_pos; )
3049 register unsigned char *p = BYTE_POS_ADDR (pos_byte);
3050 unsigned char *str, buf[MAX_MULTIBYTE_LENGTH];
3051 int len, str_len;
3052 int oc;
3053 Lisp_Object val;
3055 if (multibyte)
3056 oc = STRING_CHAR_AND_LENGTH (p, len);
3057 else
3058 oc = *p, len = 1;
3059 if (oc < size)
3061 if (tt)
3063 /* Reload as signal_after_change in last iteration may GC. */
3064 tt = SDATA (table);
3065 if (string_multibyte)
3067 str = tt + string_char_to_byte (table, oc);
3068 nc = STRING_CHAR_AND_LENGTH (str, str_len);
3070 else
3072 nc = tt[oc];
3073 if (! ASCII_BYTE_P (nc) && multibyte)
3075 str_len = BYTE8_STRING (nc, buf);
3076 str = buf;
3078 else
3080 str_len = 1;
3081 str = tt + oc;
3085 else
3087 EMACS_INT c;
3089 nc = oc;
3090 val = CHAR_TABLE_REF (table, oc);
3091 if (CHARACTERP (val)
3092 && (c = XINT (val), CHAR_VALID_P (c, 0)))
3094 nc = c;
3095 str_len = CHAR_STRING (nc, buf);
3096 str = buf;
3098 else if (VECTORP (val) || (CONSP (val)))
3100 /* VAL is [TO_CHAR ...] or (([FROM-CHAR ...] . TO) ...)
3101 where TO is TO-CHAR or [TO-CHAR ...]. */
3102 nc = -1;
3106 if (nc != oc && nc >= 0)
3108 /* Simple one char to one char translation. */
3109 if (len != str_len)
3111 Lisp_Object string;
3113 /* This is less efficient, because it moves the gap,
3114 but it should handle multibyte characters correctly. */
3115 string = make_multibyte_string ((char *) str, 1, str_len);
3116 replace_range (pos, pos + 1, string, 1, 0, 1);
3117 len = str_len;
3119 else
3121 record_change (pos, 1);
3122 while (str_len-- > 0)
3123 *p++ = *str++;
3124 signal_after_change (pos, 1, 1);
3125 update_compositions (pos, pos + 1, CHECK_BORDER);
3127 ++cnt;
3129 else if (nc < 0)
3131 Lisp_Object string;
3133 if (CONSP (val))
3135 val = check_translation (pos, pos_byte, end_pos, val);
3136 if (NILP (val))
3138 pos_byte += len;
3139 pos++;
3140 continue;
3142 /* VAL is ([FROM-CHAR ...] . TO). */
3143 len = ASIZE (XCAR (val));
3144 val = XCDR (val);
3146 else
3147 len = 1;
3149 if (VECTORP (val))
3151 string = Fconcat (1, &val);
3153 else
3155 string = Fmake_string (make_number (1), val);
3157 replace_range (pos, pos + len, string, 1, 0, 1);
3158 pos_byte += SBYTES (string);
3159 pos += SCHARS (string);
3160 cnt += SCHARS (string);
3161 end_pos += SCHARS (string) - len;
3162 continue;
3165 pos_byte += len;
3166 pos++;
3169 return make_number (cnt);
3172 DEFUN ("delete-region", Fdelete_region, Sdelete_region, 2, 2, "r",
3173 doc: /* Delete the text between point and mark.
3175 When called from a program, expects two arguments,
3176 positions (integers or markers) specifying the stretch to be deleted. */)
3177 (Lisp_Object start, Lisp_Object end)
3179 validate_region (&start, &end);
3180 del_range (XINT (start), XINT (end));
3181 return Qnil;
3184 DEFUN ("delete-and-extract-region", Fdelete_and_extract_region,
3185 Sdelete_and_extract_region, 2, 2, 0,
3186 doc: /* Delete the text between START and END and return it. */)
3187 (Lisp_Object start, Lisp_Object end)
3189 validate_region (&start, &end);
3190 if (XINT (start) == XINT (end))
3191 return empty_unibyte_string;
3192 return del_range_1 (XINT (start), XINT (end), 1, 1);
3195 DEFUN ("widen", Fwiden, Swiden, 0, 0, "",
3196 doc: /* Remove restrictions (narrowing) from current buffer.
3197 This allows the buffer's full text to be seen and edited. */)
3198 (void)
3200 if (BEG != BEGV || Z != ZV)
3201 current_buffer->clip_changed = 1;
3202 BEGV = BEG;
3203 BEGV_BYTE = BEG_BYTE;
3204 SET_BUF_ZV_BOTH (current_buffer, Z, Z_BYTE);
3205 /* Changing the buffer bounds invalidates any recorded current column. */
3206 invalidate_current_column ();
3207 return Qnil;
3210 DEFUN ("narrow-to-region", Fnarrow_to_region, Snarrow_to_region, 2, 2, "r",
3211 doc: /* Restrict editing in this buffer to the current region.
3212 The rest of the text becomes temporarily invisible and untouchable
3213 but is not deleted; if you save the buffer in a file, the invisible
3214 text is included in the file. \\[widen] makes all visible again.
3215 See also `save-restriction'.
3217 When calling from a program, pass two arguments; positions (integers
3218 or markers) bounding the text that should remain visible. */)
3219 (register Lisp_Object start, Lisp_Object end)
3221 CHECK_NUMBER_COERCE_MARKER (start);
3222 CHECK_NUMBER_COERCE_MARKER (end);
3224 if (XINT (start) > XINT (end))
3226 Lisp_Object tem;
3227 tem = start; start = end; end = tem;
3230 if (!(BEG <= XINT (start) && XINT (start) <= XINT (end) && XINT (end) <= Z))
3231 args_out_of_range (start, end);
3233 if (BEGV != XFASTINT (start) || ZV != XFASTINT (end))
3234 current_buffer->clip_changed = 1;
3236 SET_BUF_BEGV (current_buffer, XFASTINT (start));
3237 SET_BUF_ZV (current_buffer, XFASTINT (end));
3238 if (PT < XFASTINT (start))
3239 SET_PT (XFASTINT (start));
3240 if (PT > XFASTINT (end))
3241 SET_PT (XFASTINT (end));
3242 /* Changing the buffer bounds invalidates any recorded current column. */
3243 invalidate_current_column ();
3244 return Qnil;
3247 Lisp_Object
3248 save_restriction_save (void)
3250 if (BEGV == BEG && ZV == Z)
3251 /* The common case that the buffer isn't narrowed.
3252 We return just the buffer object, which save_restriction_restore
3253 recognizes as meaning `no restriction'. */
3254 return Fcurrent_buffer ();
3255 else
3256 /* We have to save a restriction, so return a pair of markers, one
3257 for the beginning and one for the end. */
3259 Lisp_Object beg, end;
3261 beg = buildmark (BEGV, BEGV_BYTE);
3262 end = buildmark (ZV, ZV_BYTE);
3264 /* END must move forward if text is inserted at its exact location. */
3265 XMARKER(end)->insertion_type = 1;
3267 return Fcons (beg, end);
3271 Lisp_Object
3272 save_restriction_restore (Lisp_Object data)
3274 struct buffer *cur = NULL;
3275 struct buffer *buf = (CONSP (data)
3276 ? XMARKER (XCAR (data))->buffer
3277 : XBUFFER (data));
3279 if (buf && buf != current_buffer && !NILP (BVAR (buf, pt_marker)))
3280 { /* If `buf' uses markers to keep track of PT, BEGV, and ZV (as
3281 is the case if it is or has an indirect buffer), then make
3282 sure it is current before we update BEGV, so
3283 set_buffer_internal takes care of managing those markers. */
3284 cur = current_buffer;
3285 set_buffer_internal (buf);
3288 if (CONSP (data))
3289 /* A pair of marks bounding a saved restriction. */
3291 struct Lisp_Marker *beg = XMARKER (XCAR (data));
3292 struct Lisp_Marker *end = XMARKER (XCDR (data));
3293 eassert (buf == end->buffer);
3295 if (buf /* Verify marker still points to a buffer. */
3296 && (beg->charpos != BUF_BEGV (buf) || end->charpos != BUF_ZV (buf)))
3297 /* The restriction has changed from the saved one, so restore
3298 the saved restriction. */
3300 EMACS_INT pt = BUF_PT (buf);
3302 SET_BUF_BEGV_BOTH (buf, beg->charpos, beg->bytepos);
3303 SET_BUF_ZV_BOTH (buf, end->charpos, end->bytepos);
3305 if (pt < beg->charpos || pt > end->charpos)
3306 /* The point is outside the new visible range, move it inside. */
3307 SET_BUF_PT_BOTH (buf,
3308 clip_to_bounds (beg->charpos, pt, end->charpos),
3309 clip_to_bounds (beg->bytepos, BUF_PT_BYTE (buf),
3310 end->bytepos));
3312 buf->clip_changed = 1; /* Remember that the narrowing changed. */
3315 else
3316 /* A buffer, which means that there was no old restriction. */
3318 if (buf /* Verify marker still points to a buffer. */
3319 && (BUF_BEGV (buf) != BUF_BEG (buf) || BUF_ZV (buf) != BUF_Z (buf)))
3320 /* The buffer has been narrowed, get rid of the narrowing. */
3322 SET_BUF_BEGV_BOTH (buf, BUF_BEG (buf), BUF_BEG_BYTE (buf));
3323 SET_BUF_ZV_BOTH (buf, BUF_Z (buf), BUF_Z_BYTE (buf));
3325 buf->clip_changed = 1; /* Remember that the narrowing changed. */
3329 /* Changing the buffer bounds invalidates any recorded current column. */
3330 invalidate_current_column ();
3332 if (cur)
3333 set_buffer_internal (cur);
3335 return Qnil;
3338 DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0,
3339 doc: /* Execute BODY, saving and restoring current buffer's restrictions.
3340 The buffer's restrictions make parts of the beginning and end invisible.
3341 \(They are set up with `narrow-to-region' and eliminated with `widen'.)
3342 This special form, `save-restriction', saves the current buffer's restrictions
3343 when it is entered, and restores them when it is exited.
3344 So any `narrow-to-region' within BODY lasts only until the end of the form.
3345 The old restrictions settings are restored
3346 even in case of abnormal exit (throw or error).
3348 The value returned is the value of the last form in BODY.
3350 Note: if you are using both `save-excursion' and `save-restriction',
3351 use `save-excursion' outermost:
3352 (save-excursion (save-restriction ...))
3354 usage: (save-restriction &rest BODY) */)
3355 (Lisp_Object body)
3357 register Lisp_Object val;
3358 int count = SPECPDL_INDEX ();
3360 record_unwind_protect (save_restriction_restore, save_restriction_save ());
3361 val = Fprogn (body);
3362 return unbind_to (count, val);
3365 /* Buffer for the most recent text displayed by Fmessage_box. */
3366 static char *message_text;
3368 /* Allocated length of that buffer. */
3369 static int message_length;
3371 DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
3372 doc: /* Display a message at the bottom of the screen.
3373 The message also goes into the `*Messages*' buffer.
3374 \(In keyboard macros, that's all it does.)
3375 Return the message.
3377 The first argument is a format control string, and the rest are data
3378 to be formatted under control of the string. See `format' for details.
3380 Note: Use (message "%s" VALUE) to print the value of expressions and
3381 variables to avoid accidentally interpreting `%' as format specifiers.
3383 If the first argument is nil or the empty string, the function clears
3384 any existing message; this lets the minibuffer contents show. See
3385 also `current-message'.
3387 usage: (message FORMAT-STRING &rest ARGS) */)
3388 (size_t nargs, Lisp_Object *args)
3390 if (NILP (args[0])
3391 || (STRINGP (args[0])
3392 && SBYTES (args[0]) == 0))
3394 message (0);
3395 return args[0];
3397 else
3399 register Lisp_Object val;
3400 val = Fformat (nargs, args);
3401 message3 (val, SBYTES (val), STRING_MULTIBYTE (val));
3402 return val;
3406 DEFUN ("message-box", Fmessage_box, Smessage_box, 1, MANY, 0,
3407 doc: /* Display a message, in a dialog box if possible.
3408 If a dialog box is not available, use the echo area.
3409 The first argument is a format control string, and the rest are data
3410 to be formatted under control of the string. See `format' for details.
3412 If the first argument is nil or the empty string, clear any existing
3413 message; let the minibuffer contents show.
3415 usage: (message-box FORMAT-STRING &rest ARGS) */)
3416 (size_t nargs, Lisp_Object *args)
3418 if (NILP (args[0]))
3420 message (0);
3421 return Qnil;
3423 else
3425 register Lisp_Object val;
3426 val = Fformat (nargs, args);
3427 #ifdef HAVE_MENUS
3428 /* The MS-DOS frames support popup menus even though they are
3429 not FRAME_WINDOW_P. */
3430 if (FRAME_WINDOW_P (XFRAME (selected_frame))
3431 || FRAME_MSDOS_P (XFRAME (selected_frame)))
3433 Lisp_Object pane, menu;
3434 struct gcpro gcpro1;
3435 pane = Fcons (Fcons (build_string ("OK"), Qt), Qnil);
3436 GCPRO1 (pane);
3437 menu = Fcons (val, pane);
3438 Fx_popup_dialog (Qt, menu, Qt);
3439 UNGCPRO;
3440 return val;
3442 #endif /* HAVE_MENUS */
3443 /* Copy the data so that it won't move when we GC. */
3444 if (! message_text)
3446 message_text = (char *)xmalloc (80);
3447 message_length = 80;
3449 if (SBYTES (val) > message_length)
3451 message_length = SBYTES (val);
3452 message_text = (char *)xrealloc (message_text, message_length);
3454 memcpy (message_text, SDATA (val), SBYTES (val));
3455 message2 (message_text, SBYTES (val),
3456 STRING_MULTIBYTE (val));
3457 return val;
3461 DEFUN ("message-or-box", Fmessage_or_box, Smessage_or_box, 1, MANY, 0,
3462 doc: /* Display a message in a dialog box or in the echo area.
3463 If this command was invoked with the mouse, use a dialog box if
3464 `use-dialog-box' is non-nil.
3465 Otherwise, use the echo area.
3466 The first argument is a format control string, and the rest are data
3467 to be formatted under control of the string. See `format' for details.
3469 If the first argument is nil or the empty string, clear any existing
3470 message; let the minibuffer contents show.
3472 usage: (message-or-box FORMAT-STRING &rest ARGS) */)
3473 (size_t nargs, Lisp_Object *args)
3475 #ifdef HAVE_MENUS
3476 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
3477 && use_dialog_box)
3478 return Fmessage_box (nargs, args);
3479 #endif
3480 return Fmessage (nargs, args);
3483 DEFUN ("current-message", Fcurrent_message, Scurrent_message, 0, 0, 0,
3484 doc: /* Return the string currently displayed in the echo area, or nil if none. */)
3485 (void)
3487 return current_message ();
3491 DEFUN ("propertize", Fpropertize, Spropertize, 1, MANY, 0,
3492 doc: /* Return a copy of STRING with text properties added.
3493 First argument is the string to copy.
3494 Remaining arguments form a sequence of PROPERTY VALUE pairs for text
3495 properties to add to the result.
3496 usage: (propertize STRING &rest PROPERTIES) */)
3497 (size_t nargs, Lisp_Object *args)
3499 Lisp_Object properties, string;
3500 struct gcpro gcpro1, gcpro2;
3501 size_t i;
3503 /* Number of args must be odd. */
3504 if ((nargs & 1) == 0)
3505 error ("Wrong number of arguments");
3507 properties = string = Qnil;
3508 GCPRO2 (properties, string);
3510 /* First argument must be a string. */
3511 CHECK_STRING (args[0]);
3512 string = Fcopy_sequence (args[0]);
3514 for (i = 1; i < nargs; i += 2)
3515 properties = Fcons (args[i], Fcons (args[i + 1], properties));
3517 Fadd_text_properties (make_number (0),
3518 make_number (SCHARS (string)),
3519 properties, string);
3520 RETURN_UNGCPRO (string);
3523 /* pWIDE is a conversion for printing large decimal integers (possibly with a
3524 trailing "d" that is ignored). pWIDElen is its length. signed_wide and
3525 unsigned_wide are signed and unsigned types for printing them. Use widest
3526 integers if available so that more floating point values can be converted. */
3527 #ifdef PRIdMAX
3528 # define pWIDE PRIdMAX
3529 enum { pWIDElen = sizeof PRIdMAX - 2 }; /* Don't count trailing "d". */
3530 typedef intmax_t signed_wide;
3531 typedef uintmax_t unsigned_wide;
3532 #else
3533 # define pWIDE pI
3534 enum { pWIDElen = sizeof pI - 1 };
3535 typedef EMACS_INT signed_wide;
3536 typedef EMACS_UINT unsigned_wide;
3537 #endif
3539 DEFUN ("format", Fformat, Sformat, 1, MANY, 0,
3540 doc: /* Format a string out of a format-string and arguments.
3541 The first argument is a format control string.
3542 The other arguments are substituted into it to make the result, a string.
3544 The format control string may contain %-sequences meaning to substitute
3545 the next available argument:
3547 %s means print a string argument. Actually, prints any object, with `princ'.
3548 %d means print as number in decimal (%o octal, %x hex).
3549 %X is like %x, but uses upper case.
3550 %e means print a number in exponential notation.
3551 %f means print a number in decimal-point notation.
3552 %g means print a number in exponential notation
3553 or decimal-point notation, whichever uses fewer characters.
3554 %c means print a number as a single character.
3555 %S means print any object as an s-expression (using `prin1').
3557 The argument used for %d, %o, %x, %e, %f, %g or %c must be a number.
3558 Use %% to put a single % into the output.
3560 A %-sequence may contain optional flag, width, and precision
3561 specifiers, as follows:
3563 %<flags><width><precision>character
3565 where flags is [+ #-0]+, width is [0-9]+, and precision is .[0-9]+
3567 The + flag character inserts a + before any positive number, while a
3568 space inserts a space before any positive number; these flags only
3569 affect %d, %e, %f, and %g sequences, and the + flag takes precedence.
3570 The # flag means to use an alternate display form for %o, %x, %X, %e,
3571 %f, and %g sequences. The - and 0 flags affect the width specifier,
3572 as described below.
3574 The width specifier supplies a lower limit for the length of the
3575 printed representation. The padding, if any, normally goes on the
3576 left, but it goes on the right if the - flag is present. The padding
3577 character is normally a space, but it is 0 if the 0 flag is present.
3578 The - flag takes precedence over the 0 flag.
3580 For %e, %f, and %g sequences, the number after the "." in the
3581 precision specifier says how many decimal places to show; if zero, the
3582 decimal point itself is omitted. For %s and %S, the precision
3583 specifier truncates the string to the given width.
3585 usage: (format STRING &rest OBJECTS) */)
3586 (size_t nargs, register Lisp_Object *args)
3588 EMACS_INT n; /* The number of the next arg to substitute */
3589 char initial_buffer[4000];
3590 char *buf = initial_buffer;
3591 EMACS_INT bufsize = sizeof initial_buffer;
3592 EMACS_INT max_bufsize = min (MOST_POSITIVE_FIXNUM + 1, SIZE_MAX);
3593 char *p;
3594 Lisp_Object buf_save_value IF_LINT (= {0});
3595 register char *format, *end, *format_start;
3596 EMACS_INT formatlen, nchars;
3597 /* Nonzero if the format is multibyte. */
3598 int multibyte_format = 0;
3599 /* Nonzero if the output should be a multibyte string,
3600 which is true if any of the inputs is one. */
3601 int multibyte = 0;
3602 /* When we make a multibyte string, we must pay attention to the
3603 byte combining problem, i.e., a byte may be combined with a
3604 multibyte character of the previous string. This flag tells if we
3605 must consider such a situation or not. */
3606 int maybe_combine_byte;
3607 Lisp_Object val;
3608 int arg_intervals = 0;
3609 USE_SAFE_ALLOCA;
3611 /* discarded[I] is 1 if byte I of the format
3612 string was not copied into the output.
3613 It is 2 if byte I was not the first byte of its character. */
3614 char *discarded;
3616 /* Each element records, for one argument,
3617 the start and end bytepos in the output string,
3618 whether the argument has been converted to string (e.g., due to "%S"),
3619 and whether the argument is a string with intervals.
3620 info[0] is unused. Unused elements have -1 for start. */
3621 struct info
3623 EMACS_INT start, end;
3624 int converted_to_string;
3625 int intervals;
3626 } *info = 0;
3628 /* It should not be necessary to GCPRO ARGS, because
3629 the caller in the interpreter should take care of that. */
3631 CHECK_STRING (args[0]);
3632 format_start = SSDATA (args[0]);
3633 formatlen = SBYTES (args[0]);
3635 /* Allocate the info and discarded tables. */
3637 EMACS_INT i;
3638 if ((SIZE_MAX - formatlen) / sizeof (struct info) <= nargs)
3639 memory_full ();
3640 SAFE_ALLOCA (info, struct info *, (nargs + 1) * sizeof *info + formatlen);
3641 discarded = (char *) &info[nargs + 1];
3642 for (i = 0; i < nargs + 1; i++)
3644 info[i].start = -1;
3645 info[i].intervals = info[i].converted_to_string = 0;
3647 memset (discarded, 0, formatlen);
3650 /* Try to determine whether the result should be multibyte.
3651 This is not always right; sometimes the result needs to be multibyte
3652 because of an object that we will pass through prin1,
3653 and in that case, we won't know it here. */
3654 multibyte_format = STRING_MULTIBYTE (args[0]);
3655 multibyte = multibyte_format;
3656 for (n = 1; !multibyte && n < nargs; n++)
3657 if (STRINGP (args[n]) && STRING_MULTIBYTE (args[n]))
3658 multibyte = 1;
3660 /* If we start out planning a unibyte result,
3661 then discover it has to be multibyte, we jump back to retry. */
3662 retry:
3664 p = buf;
3665 nchars = 0;
3666 n = 0;
3668 /* Scan the format and store result in BUF. */
3669 format = format_start;
3670 end = format + formatlen;
3671 maybe_combine_byte = 0;
3673 while (format != end)
3675 /* The values of N and FORMAT when the loop body is entered. */
3676 EMACS_INT n0 = n;
3677 char *format0 = format;
3679 /* Bytes needed to represent the output of this conversion. */
3680 EMACS_INT convbytes;
3682 if (*format == '%')
3684 /* General format specifications look like
3686 '%' [flags] [field-width] [precision] format
3688 where
3690 flags ::= [-+0# ]+
3691 field-width ::= [0-9]+
3692 precision ::= '.' [0-9]*
3694 If a field-width is specified, it specifies to which width
3695 the output should be padded with blanks, if the output
3696 string is shorter than field-width.
3698 If precision is specified, it specifies the number of
3699 digits to print after the '.' for floats, or the max.
3700 number of chars to print from a string. */
3702 int minus_flag = 0;
3703 int plus_flag = 0;
3704 int space_flag = 0;
3705 int sharp_flag = 0;
3706 int zero_flag = 0;
3707 EMACS_INT field_width;
3708 int precision_given;
3709 uintmax_t precision = UINTMAX_MAX;
3710 char *num_end;
3711 char conversion;
3713 while (1)
3715 switch (*++format)
3717 case '-': minus_flag = 1; continue;
3718 case '+': plus_flag = 1; continue;
3719 case ' ': space_flag = 1; continue;
3720 case '#': sharp_flag = 1; continue;
3721 case '0': zero_flag = 1; continue;
3723 break;
3726 /* Ignore flags when sprintf ignores them. */
3727 space_flag &= ~ plus_flag;
3728 zero_flag &= ~ minus_flag;
3731 uintmax_t w = strtoumax (format, &num_end, 10);
3732 if (max_bufsize <= w)
3733 string_overflow ();
3734 field_width = w;
3736 precision_given = *num_end == '.';
3737 if (precision_given)
3738 precision = strtoumax (num_end + 1, &num_end, 10);
3739 format = num_end;
3741 if (format == end)
3742 error ("Format string ends in middle of format specifier");
3744 memset (&discarded[format0 - format_start], 1, format - format0);
3745 conversion = *format;
3746 if (conversion == '%')
3747 goto copy_char;
3748 discarded[format - format_start] = 1;
3749 format++;
3751 ++n;
3752 if (! (n < nargs))
3753 error ("Not enough arguments for format string");
3755 /* For 'S', prin1 the argument, and then treat like 's'.
3756 For 's', princ any argument that is not a string or
3757 symbol. But don't do this conversion twice, which might
3758 happen after retrying. */
3759 if ((conversion == 'S'
3760 || (conversion == 's'
3761 && ! STRINGP (args[n]) && ! SYMBOLP (args[n]))))
3763 if (! info[n].converted_to_string)
3765 Lisp_Object noescape = conversion == 'S' ? Qnil : Qt;
3766 args[n] = Fprin1_to_string (args[n], noescape);
3767 info[n].converted_to_string = 1;
3768 if (STRING_MULTIBYTE (args[n]) && ! multibyte)
3770 multibyte = 1;
3771 goto retry;
3774 conversion = 's';
3776 else if (conversion == 'c')
3778 if (FLOATP (args[n]))
3780 double d = XFLOAT_DATA (args[n]);
3781 args[n] = make_number (FIXNUM_OVERFLOW_P (d) ? -1 : d);
3784 if (INTEGERP (args[n]) && ! ASCII_CHAR_P (XINT (args[n])))
3786 if (!multibyte)
3788 multibyte = 1;
3789 goto retry;
3791 args[n] = Fchar_to_string (args[n]);
3792 info[n].converted_to_string = 1;
3795 if (info[n].converted_to_string)
3796 conversion = 's';
3797 zero_flag = 0;
3800 if (SYMBOLP (args[n]))
3802 args[n] = SYMBOL_NAME (args[n]);
3803 if (STRING_MULTIBYTE (args[n]) && ! multibyte)
3805 multibyte = 1;
3806 goto retry;
3810 if (conversion == 's')
3812 /* handle case (precision[n] >= 0) */
3814 EMACS_INT width, padding, nbytes;
3815 EMACS_INT nchars_string;
3817 EMACS_INT prec = -1;
3818 if (precision_given && precision <= TYPE_MAXIMUM (EMACS_INT))
3819 prec = precision;
3821 /* lisp_string_width ignores a precision of 0, but GNU
3822 libc functions print 0 characters when the precision
3823 is 0. Imitate libc behavior here. Changing
3824 lisp_string_width is the right thing, and will be
3825 done, but meanwhile we work with it. */
3827 if (prec == 0)
3828 width = nchars_string = nbytes = 0;
3829 else
3831 EMACS_INT nch, nby;
3832 width = lisp_string_width (args[n], prec, &nch, &nby);
3833 if (prec < 0)
3835 nchars_string = SCHARS (args[n]);
3836 nbytes = SBYTES (args[n]);
3838 else
3840 nchars_string = nch;
3841 nbytes = nby;
3845 convbytes = nbytes;
3846 if (convbytes && multibyte && ! STRING_MULTIBYTE (args[n]))
3847 convbytes = count_size_as_multibyte (SDATA (args[n]), nbytes);
3849 padding = width < field_width ? field_width - width : 0;
3851 if (max_bufsize - padding <= convbytes)
3852 string_overflow ();
3853 convbytes += padding;
3854 if (convbytes <= buf + bufsize - p)
3856 if (! minus_flag)
3858 memset (p, ' ', padding);
3859 p += padding;
3860 nchars += padding;
3863 if (p > buf
3864 && multibyte
3865 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
3866 && STRING_MULTIBYTE (args[n])
3867 && !CHAR_HEAD_P (SREF (args[n], 0)))
3868 maybe_combine_byte = 1;
3870 p += copy_text (SDATA (args[n]), (unsigned char *) p,
3871 nbytes,
3872 STRING_MULTIBYTE (args[n]), multibyte);
3874 info[n].start = nchars;
3875 nchars += nchars_string;
3876 info[n].end = nchars;
3878 if (minus_flag)
3880 memset (p, ' ', padding);
3881 p += padding;
3882 nchars += padding;
3885 /* If this argument has text properties, record where
3886 in the result string it appears. */
3887 if (STRING_INTERVALS (args[n]))
3888 info[n].intervals = arg_intervals = 1;
3890 continue;
3893 else if (! (conversion == 'c' || conversion == 'd'
3894 || conversion == 'e' || conversion == 'f'
3895 || conversion == 'g' || conversion == 'i'
3896 || conversion == 'o' || conversion == 'x'
3897 || conversion == 'X'))
3898 error ("Invalid format operation %%%c",
3899 STRING_CHAR ((unsigned char *) format - 1));
3900 else if (! (INTEGERP (args[n]) || FLOATP (args[n])))
3901 error ("Format specifier doesn't match argument type");
3902 else
3904 enum
3906 /* Maximum precision for a %f conversion such that the
3907 trailing output digit might be nonzero. Any precisions
3908 larger than this will not yield useful information. */
3909 USEFUL_PRECISION_MAX =
3910 ((1 - DBL_MIN_EXP)
3911 * (FLT_RADIX == 2 || FLT_RADIX == 10 ? 1
3912 : FLT_RADIX == 16 ? 4
3913 : -1)),
3915 /* Maximum number of bytes generated by any format, if
3916 precision is no more than DBL_USEFUL_PRECISION_MAX.
3917 On all practical hosts, %f is the worst case. */
3918 SPRINTF_BUFSIZE =
3919 sizeof "-." + (DBL_MAX_10_EXP + 1) + USEFUL_PRECISION_MAX
3921 verify (0 < USEFUL_PRECISION_MAX);
3923 int prec;
3924 EMACS_INT padding, sprintf_bytes;
3925 uintmax_t excess_precision, numwidth;
3926 uintmax_t leading_zeros = 0, trailing_zeros = 0;
3928 char sprintf_buf[SPRINTF_BUFSIZE];
3930 /* Copy of conversion specification, modified somewhat.
3931 At most three flags F can be specified at once. */
3932 char convspec[sizeof "%FFF.*d" + pWIDElen];
3934 /* Avoid undefined behavior in underlying sprintf. */
3935 if (conversion == 'd' || conversion == 'i')
3936 sharp_flag = 0;
3938 /* Create the copy of the conversion specification, with
3939 any width and precision removed, with ".*" inserted,
3940 and with pWIDE inserted for integer formats. */
3942 char *f = convspec;
3943 *f++ = '%';
3944 *f = '-'; f += minus_flag;
3945 *f = '+'; f += plus_flag;
3946 *f = ' '; f += space_flag;
3947 *f = '#'; f += sharp_flag;
3948 *f = '0'; f += zero_flag;
3949 *f++ = '.';
3950 *f++ = '*';
3951 if (conversion == 'd' || conversion == 'i'
3952 || conversion == 'o' || conversion == 'x'
3953 || conversion == 'X')
3955 memcpy (f, pWIDE, pWIDElen);
3956 f += pWIDElen;
3957 zero_flag &= ~ precision_given;
3959 *f++ = conversion;
3960 *f = '\0';
3963 prec = -1;
3964 if (precision_given)
3965 prec = min (precision, USEFUL_PRECISION_MAX);
3967 /* Use sprintf to format this number into sprintf_buf. Omit
3968 padding and excess precision, though, because sprintf limits
3969 output length to INT_MAX.
3971 There are four types of conversion: double, unsigned
3972 char (passed as int), wide signed int, and wide
3973 unsigned int. Treat them separately because the
3974 sprintf ABI is sensitive to which type is passed. Be
3975 careful about integer overflow, NaNs, infinities, and
3976 conversions; for example, the min and max macros are
3977 not suitable here. */
3978 if (conversion == 'e' || conversion == 'f' || conversion == 'g')
3980 double x = (INTEGERP (args[n])
3981 ? XINT (args[n])
3982 : XFLOAT_DATA (args[n]));
3983 sprintf_bytes = sprintf (sprintf_buf, convspec, prec, x);
3985 else if (conversion == 'c')
3987 /* Don't use sprintf here, as it might mishandle prec. */
3988 sprintf_buf[0] = XINT (args[n]);
3989 sprintf_bytes = prec != 0;
3991 else if (conversion == 'd')
3993 /* For float, maybe we should use "%1.0f"
3994 instead so it also works for values outside
3995 the integer range. */
3996 signed_wide x;
3997 if (INTEGERP (args[n]))
3998 x = XINT (args[n]);
3999 else
4001 double d = XFLOAT_DATA (args[n]);
4002 if (d < 0)
4004 x = TYPE_MINIMUM (signed_wide);
4005 if (x < d)
4006 x = d;
4008 else
4010 x = TYPE_MAXIMUM (signed_wide);
4011 if (d < x)
4012 x = d;
4015 sprintf_bytes = sprintf (sprintf_buf, convspec, prec, x);
4017 else
4019 /* Don't sign-extend for octal or hex printing. */
4020 unsigned_wide x;
4021 if (INTEGERP (args[n]))
4022 x = XUINT (args[n]);
4023 else
4025 double d = XFLOAT_DATA (args[n]);
4026 if (d < 0)
4027 x = 0;
4028 else
4030 x = TYPE_MAXIMUM (unsigned_wide);
4031 if (d < x)
4032 x = d;
4035 sprintf_bytes = sprintf (sprintf_buf, convspec, prec, x);
4038 /* Now the length of the formatted item is known, except it omits
4039 padding and excess precision. Deal with excess precision
4040 first. This happens only when the format specifies
4041 ridiculously large precision. */
4042 excess_precision = precision - prec;
4043 if (excess_precision)
4045 if (conversion == 'e' || conversion == 'f'
4046 || conversion == 'g')
4048 if ((conversion == 'g' && ! sharp_flag)
4049 || ! ('0' <= sprintf_buf[sprintf_bytes - 1]
4050 && sprintf_buf[sprintf_bytes - 1] <= '9'))
4051 excess_precision = 0;
4052 else
4054 if (conversion == 'g')
4056 char *dot = strchr (sprintf_buf, '.');
4057 if (!dot)
4058 excess_precision = 0;
4061 trailing_zeros = excess_precision;
4063 else
4064 leading_zeros = excess_precision;
4067 /* Compute the total bytes needed for this item, including
4068 excess precision and padding. */
4069 numwidth = sprintf_bytes + excess_precision;
4070 padding = numwidth < field_width ? field_width - numwidth : 0;
4071 if (max_bufsize - sprintf_bytes <= excess_precision
4072 || max_bufsize - padding <= numwidth)
4073 string_overflow ();
4074 convbytes = numwidth + padding;
4076 if (convbytes <= buf + bufsize - p)
4078 /* Copy the formatted item from sprintf_buf into buf,
4079 inserting padding and excess-precision zeros. */
4081 char *src = sprintf_buf;
4082 char src0 = src[0];
4083 int exponent_bytes = 0;
4084 int signedp = src0 == '-' || src0 == '+' || src0 == ' ';
4085 int significand_bytes;
4086 if (zero_flag && '0' <= src[signedp] && src[signedp] <= '9')
4088 leading_zeros += padding;
4089 padding = 0;
4092 if (excess_precision
4093 && (conversion == 'e' || conversion == 'g'))
4095 char *e = strchr (src, 'e');
4096 if (e)
4097 exponent_bytes = src + sprintf_bytes - e;
4100 if (! minus_flag)
4102 memset (p, ' ', padding);
4103 p += padding;
4104 nchars += padding;
4107 *p = src0;
4108 src += signedp;
4109 p += signedp;
4110 memset (p, '0', leading_zeros);
4111 p += leading_zeros;
4112 significand_bytes = sprintf_bytes - signedp - exponent_bytes;
4113 memcpy (p, src, significand_bytes);
4114 p += significand_bytes;
4115 src += significand_bytes;
4116 memset (p, '0', trailing_zeros);
4117 p += trailing_zeros;
4118 memcpy (p, src, exponent_bytes);
4119 p += exponent_bytes;
4121 info[n].start = nchars;
4122 nchars += leading_zeros + sprintf_bytes + trailing_zeros;
4123 info[n].end = nchars;
4125 if (minus_flag)
4127 memset (p, ' ', padding);
4128 p += padding;
4129 nchars += padding;
4132 continue;
4136 else
4137 copy_char:
4139 /* Copy a single character from format to buf. */
4141 char *src = format;
4142 unsigned char str[MAX_MULTIBYTE_LENGTH];
4144 if (multibyte_format)
4146 /* Copy a whole multibyte character. */
4147 if (p > buf
4148 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
4149 && !CHAR_HEAD_P (*format))
4150 maybe_combine_byte = 1;
4153 format++;
4154 while (! CHAR_HEAD_P (*format));
4156 convbytes = format - format0;
4157 memset (&discarded[format0 + 1 - format_start], 2, convbytes - 1);
4159 else
4161 unsigned char uc = *format++;
4162 if (! multibyte || ASCII_BYTE_P (uc))
4163 convbytes = 1;
4164 else
4166 int c = BYTE8_TO_CHAR (uc);
4167 convbytes = CHAR_STRING (c, str);
4168 src = (char *) str;
4172 if (convbytes <= buf + bufsize - p)
4174 memcpy (p, src, convbytes);
4175 p += convbytes;
4176 nchars++;
4177 continue;
4181 /* There wasn't enough room to store this conversion or single
4182 character. CONVBYTES says how much room is needed. Allocate
4183 enough room (and then some) and do it again. */
4185 EMACS_INT used = p - buf;
4187 if (max_bufsize - used < convbytes)
4188 string_overflow ();
4189 bufsize = used + convbytes;
4190 bufsize = bufsize < max_bufsize / 2 ? bufsize * 2 : max_bufsize;
4192 if (buf == initial_buffer)
4194 buf = xmalloc (bufsize);
4195 sa_must_free = 1;
4196 buf_save_value = make_save_value (buf, 0);
4197 record_unwind_protect (safe_alloca_unwind, buf_save_value);
4198 memcpy (buf, initial_buffer, used);
4200 else
4201 XSAVE_VALUE (buf_save_value)->pointer = buf = xrealloc (buf, bufsize);
4203 p = buf + used;
4206 format = format0;
4207 n = n0;
4210 if (bufsize < p - buf)
4211 abort ();
4213 if (maybe_combine_byte)
4214 nchars = multibyte_chars_in_text ((unsigned char *) buf, p - buf);
4215 val = make_specified_string (buf, nchars, p - buf, multibyte);
4217 /* If we allocated BUF with malloc, free it too. */
4218 SAFE_FREE ();
4220 /* If the format string has text properties, or any of the string
4221 arguments has text properties, set up text properties of the
4222 result string. */
4224 if (STRING_INTERVALS (args[0]) || arg_intervals)
4226 Lisp_Object len, new_len, props;
4227 struct gcpro gcpro1;
4229 /* Add text properties from the format string. */
4230 len = make_number (SCHARS (args[0]));
4231 props = text_property_list (args[0], make_number (0), len, Qnil);
4232 GCPRO1 (props);
4234 if (CONSP (props))
4236 EMACS_INT bytepos = 0, position = 0, translated = 0;
4237 EMACS_INT argn = 1;
4238 Lisp_Object list;
4240 /* Adjust the bounds of each text property
4241 to the proper start and end in the output string. */
4243 /* Put the positions in PROPS in increasing order, so that
4244 we can do (effectively) one scan through the position
4245 space of the format string. */
4246 props = Fnreverse (props);
4248 /* BYTEPOS is the byte position in the format string,
4249 POSITION is the untranslated char position in it,
4250 TRANSLATED is the translated char position in BUF,
4251 and ARGN is the number of the next arg we will come to. */
4252 for (list = props; CONSP (list); list = XCDR (list))
4254 Lisp_Object item;
4255 EMACS_INT pos;
4257 item = XCAR (list);
4259 /* First adjust the property start position. */
4260 pos = XINT (XCAR (item));
4262 /* Advance BYTEPOS, POSITION, TRANSLATED and ARGN
4263 up to this position. */
4264 for (; position < pos; bytepos++)
4266 if (! discarded[bytepos])
4267 position++, translated++;
4268 else if (discarded[bytepos] == 1)
4270 position++;
4271 if (translated == info[argn].start)
4273 translated += info[argn].end - info[argn].start;
4274 argn++;
4279 XSETCAR (item, make_number (translated));
4281 /* Likewise adjust the property end position. */
4282 pos = XINT (XCAR (XCDR (item)));
4284 for (; position < pos; bytepos++)
4286 if (! discarded[bytepos])
4287 position++, translated++;
4288 else if (discarded[bytepos] == 1)
4290 position++;
4291 if (translated == info[argn].start)
4293 translated += info[argn].end - info[argn].start;
4294 argn++;
4299 XSETCAR (XCDR (item), make_number (translated));
4302 add_text_properties_from_list (val, props, make_number (0));
4305 /* Add text properties from arguments. */
4306 if (arg_intervals)
4307 for (n = 1; n < nargs; ++n)
4308 if (info[n].intervals)
4310 len = make_number (SCHARS (args[n]));
4311 new_len = make_number (info[n].end - info[n].start);
4312 props = text_property_list (args[n], make_number (0), len, Qnil);
4313 props = extend_property_ranges (props, new_len);
4314 /* If successive arguments have properties, be sure that
4315 the value of `composition' property be the copy. */
4316 if (n > 1 && info[n - 1].end)
4317 make_composition_value_copy (props);
4318 add_text_properties_from_list (val, props,
4319 make_number (info[n].start));
4322 UNGCPRO;
4325 return val;
4328 Lisp_Object
4329 format2 (const char *string1, Lisp_Object arg0, Lisp_Object arg1)
4331 Lisp_Object args[3];
4332 args[0] = build_string (string1);
4333 args[1] = arg0;
4334 args[2] = arg1;
4335 return Fformat (3, args);
4338 DEFUN ("char-equal", Fchar_equal, Schar_equal, 2, 2, 0,
4339 doc: /* Return t if two characters match, optionally ignoring case.
4340 Both arguments must be characters (i.e. integers).
4341 Case is ignored if `case-fold-search' is non-nil in the current buffer. */)
4342 (register Lisp_Object c1, Lisp_Object c2)
4344 int i1, i2;
4345 /* Check they're chars, not just integers, otherwise we could get array
4346 bounds violations in downcase. */
4347 CHECK_CHARACTER (c1);
4348 CHECK_CHARACTER (c2);
4350 if (XINT (c1) == XINT (c2))
4351 return Qt;
4352 if (NILP (BVAR (current_buffer, case_fold_search)))
4353 return Qnil;
4355 i1 = XFASTINT (c1);
4356 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
4357 && ! ASCII_CHAR_P (i1))
4359 MAKE_CHAR_MULTIBYTE (i1);
4361 i2 = XFASTINT (c2);
4362 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
4363 && ! ASCII_CHAR_P (i2))
4365 MAKE_CHAR_MULTIBYTE (i2);
4367 return (downcase (i1) == downcase (i2) ? Qt : Qnil);
4370 /* Transpose the markers in two regions of the current buffer, and
4371 adjust the ones between them if necessary (i.e.: if the regions
4372 differ in size).
4374 START1, END1 are the character positions of the first region.
4375 START1_BYTE, END1_BYTE are the byte positions.
4376 START2, END2 are the character positions of the second region.
4377 START2_BYTE, END2_BYTE are the byte positions.
4379 Traverses the entire marker list of the buffer to do so, adding an
4380 appropriate amount to some, subtracting from some, and leaving the
4381 rest untouched. Most of this is copied from adjust_markers in insdel.c.
4383 It's the caller's job to ensure that START1 <= END1 <= START2 <= END2. */
4385 static void
4386 transpose_markers (EMACS_INT start1, EMACS_INT end1,
4387 EMACS_INT start2, EMACS_INT end2,
4388 EMACS_INT start1_byte, EMACS_INT end1_byte,
4389 EMACS_INT start2_byte, EMACS_INT end2_byte)
4391 register EMACS_INT amt1, amt1_byte, amt2, amt2_byte, diff, diff_byte, mpos;
4392 register struct Lisp_Marker *marker;
4394 /* Update point as if it were a marker. */
4395 if (PT < start1)
4397 else if (PT < end1)
4398 TEMP_SET_PT_BOTH (PT + (end2 - end1),
4399 PT_BYTE + (end2_byte - end1_byte));
4400 else if (PT < start2)
4401 TEMP_SET_PT_BOTH (PT + (end2 - start2) - (end1 - start1),
4402 (PT_BYTE + (end2_byte - start2_byte)
4403 - (end1_byte - start1_byte)));
4404 else if (PT < end2)
4405 TEMP_SET_PT_BOTH (PT - (start2 - start1),
4406 PT_BYTE - (start2_byte - start1_byte));
4408 /* We used to adjust the endpoints here to account for the gap, but that
4409 isn't good enough. Even if we assume the caller has tried to move the
4410 gap out of our way, it might still be at start1 exactly, for example;
4411 and that places it `inside' the interval, for our purposes. The amount
4412 of adjustment is nontrivial if there's a `denormalized' marker whose
4413 position is between GPT and GPT + GAP_SIZE, so it's simpler to leave
4414 the dirty work to Fmarker_position, below. */
4416 /* The difference between the region's lengths */
4417 diff = (end2 - start2) - (end1 - start1);
4418 diff_byte = (end2_byte - start2_byte) - (end1_byte - start1_byte);
4420 /* For shifting each marker in a region by the length of the other
4421 region plus the distance between the regions. */
4422 amt1 = (end2 - start2) + (start2 - end1);
4423 amt2 = (end1 - start1) + (start2 - end1);
4424 amt1_byte = (end2_byte - start2_byte) + (start2_byte - end1_byte);
4425 amt2_byte = (end1_byte - start1_byte) + (start2_byte - end1_byte);
4427 for (marker = BUF_MARKERS (current_buffer); marker; marker = marker->next)
4429 mpos = marker->bytepos;
4430 if (mpos >= start1_byte && mpos < end2_byte)
4432 if (mpos < end1_byte)
4433 mpos += amt1_byte;
4434 else if (mpos < start2_byte)
4435 mpos += diff_byte;
4436 else
4437 mpos -= amt2_byte;
4438 marker->bytepos = mpos;
4440 mpos = marker->charpos;
4441 if (mpos >= start1 && mpos < end2)
4443 if (mpos < end1)
4444 mpos += amt1;
4445 else if (mpos < start2)
4446 mpos += diff;
4447 else
4448 mpos -= amt2;
4450 marker->charpos = mpos;
4454 DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0,
4455 doc: /* Transpose region STARTR1 to ENDR1 with STARTR2 to ENDR2.
4456 The regions should not be overlapping, because the size of the buffer is
4457 never changed in a transposition.
4459 Optional fifth arg LEAVE-MARKERS, if non-nil, means don't update
4460 any markers that happen to be located in the regions.
4462 Transposing beyond buffer boundaries is an error. */)
4463 (Lisp_Object startr1, Lisp_Object endr1, Lisp_Object startr2, Lisp_Object endr2, Lisp_Object leave_markers)
4465 register EMACS_INT start1, end1, start2, end2;
4466 EMACS_INT start1_byte, start2_byte, len1_byte, len2_byte;
4467 EMACS_INT gap, len1, len_mid, len2;
4468 unsigned char *start1_addr, *start2_addr, *temp;
4470 INTERVAL cur_intv, tmp_interval1, tmp_interval_mid, tmp_interval2, tmp_interval3;
4471 Lisp_Object buf;
4473 XSETBUFFER (buf, current_buffer);
4474 cur_intv = BUF_INTERVALS (current_buffer);
4476 validate_region (&startr1, &endr1);
4477 validate_region (&startr2, &endr2);
4479 start1 = XFASTINT (startr1);
4480 end1 = XFASTINT (endr1);
4481 start2 = XFASTINT (startr2);
4482 end2 = XFASTINT (endr2);
4483 gap = GPT;
4485 /* Swap the regions if they're reversed. */
4486 if (start2 < end1)
4488 register EMACS_INT glumph = start1;
4489 start1 = start2;
4490 start2 = glumph;
4491 glumph = end1;
4492 end1 = end2;
4493 end2 = glumph;
4496 len1 = end1 - start1;
4497 len2 = end2 - start2;
4499 if (start2 < end1)
4500 error ("Transposed regions overlap");
4501 /* Nothing to change for adjacent regions with one being empty */
4502 else if ((start1 == end1 || start2 == end2) && end1 == start2)
4503 return Qnil;
4505 /* The possibilities are:
4506 1. Adjacent (contiguous) regions, or separate but equal regions
4507 (no, really equal, in this case!), or
4508 2. Separate regions of unequal size.
4510 The worst case is usually No. 2. It means that (aside from
4511 potential need for getting the gap out of the way), there also
4512 needs to be a shifting of the text between the two regions. So
4513 if they are spread far apart, we are that much slower... sigh. */
4515 /* It must be pointed out that the really studly thing to do would
4516 be not to move the gap at all, but to leave it in place and work
4517 around it if necessary. This would be extremely efficient,
4518 especially considering that people are likely to do
4519 transpositions near where they are working interactively, which
4520 is exactly where the gap would be found. However, such code
4521 would be much harder to write and to read. So, if you are
4522 reading this comment and are feeling squirrely, by all means have
4523 a go! I just didn't feel like doing it, so I will simply move
4524 the gap the minimum distance to get it out of the way, and then
4525 deal with an unbroken array. */
4527 /* Make sure the gap won't interfere, by moving it out of the text
4528 we will operate on. */
4529 if (start1 < gap && gap < end2)
4531 if (gap - start1 < end2 - gap)
4532 move_gap (start1);
4533 else
4534 move_gap (end2);
4537 start1_byte = CHAR_TO_BYTE (start1);
4538 start2_byte = CHAR_TO_BYTE (start2);
4539 len1_byte = CHAR_TO_BYTE (end1) - start1_byte;
4540 len2_byte = CHAR_TO_BYTE (end2) - start2_byte;
4542 #ifdef BYTE_COMBINING_DEBUG
4543 if (end1 == start2)
4545 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
4546 len2_byte, start1, start1_byte)
4547 || count_combining_before (BYTE_POS_ADDR (start1_byte),
4548 len1_byte, end2, start2_byte + len2_byte)
4549 || count_combining_after (BYTE_POS_ADDR (start1_byte),
4550 len1_byte, end2, start2_byte + len2_byte))
4551 abort ();
4553 else
4555 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
4556 len2_byte, start1, start1_byte)
4557 || count_combining_before (BYTE_POS_ADDR (start1_byte),
4558 len1_byte, start2, start2_byte)
4559 || count_combining_after (BYTE_POS_ADDR (start2_byte),
4560 len2_byte, end1, start1_byte + len1_byte)
4561 || count_combining_after (BYTE_POS_ADDR (start1_byte),
4562 len1_byte, end2, start2_byte + len2_byte))
4563 abort ();
4565 #endif
4567 /* Hmmm... how about checking to see if the gap is large
4568 enough to use as the temporary storage? That would avoid an
4569 allocation... interesting. Later, don't fool with it now. */
4571 /* Working without memmove, for portability (sigh), so must be
4572 careful of overlapping subsections of the array... */
4574 if (end1 == start2) /* adjacent regions */
4576 modify_region (current_buffer, start1, end2, 0);
4577 record_change (start1, len1 + len2);
4579 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4580 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4581 /* Don't use Fset_text_properties: that can cause GC, which can
4582 clobber objects stored in the tmp_intervals. */
4583 tmp_interval3 = validate_interval_range (buf, &startr1, &endr2, 0);
4584 if (!NULL_INTERVAL_P (tmp_interval3))
4585 set_text_properties_1 (startr1, endr2, Qnil, buf, tmp_interval3);
4587 /* First region smaller than second. */
4588 if (len1_byte < len2_byte)
4590 USE_SAFE_ALLOCA;
4592 SAFE_ALLOCA (temp, unsigned char *, len2_byte);
4594 /* Don't precompute these addresses. We have to compute them
4595 at the last minute, because the relocating allocator might
4596 have moved the buffer around during the xmalloc. */
4597 start1_addr = BYTE_POS_ADDR (start1_byte);
4598 start2_addr = BYTE_POS_ADDR (start2_byte);
4600 memcpy (temp, start2_addr, len2_byte);
4601 memcpy (start1_addr + len2_byte, start1_addr, len1_byte);
4602 memcpy (start1_addr, temp, len2_byte);
4603 SAFE_FREE ();
4605 else
4606 /* First region not smaller than second. */
4608 USE_SAFE_ALLOCA;
4610 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4611 start1_addr = BYTE_POS_ADDR (start1_byte);
4612 start2_addr = BYTE_POS_ADDR (start2_byte);
4613 memcpy (temp, start1_addr, len1_byte);
4614 memcpy (start1_addr, start2_addr, len2_byte);
4615 memcpy (start1_addr + len2_byte, temp, len1_byte);
4616 SAFE_FREE ();
4618 graft_intervals_into_buffer (tmp_interval1, start1 + len2,
4619 len1, current_buffer, 0);
4620 graft_intervals_into_buffer (tmp_interval2, start1,
4621 len2, current_buffer, 0);
4622 update_compositions (start1, start1 + len2, CHECK_BORDER);
4623 update_compositions (start1 + len2, end2, CHECK_TAIL);
4625 /* Non-adjacent regions, because end1 != start2, bleagh... */
4626 else
4628 len_mid = start2_byte - (start1_byte + len1_byte);
4630 if (len1_byte == len2_byte)
4631 /* Regions are same size, though, how nice. */
4633 USE_SAFE_ALLOCA;
4635 modify_region (current_buffer, start1, end1, 0);
4636 modify_region (current_buffer, start2, end2, 0);
4637 record_change (start1, len1);
4638 record_change (start2, len2);
4639 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4640 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4642 tmp_interval3 = validate_interval_range (buf, &startr1, &endr1, 0);
4643 if (!NULL_INTERVAL_P (tmp_interval3))
4644 set_text_properties_1 (startr1, endr1, Qnil, buf, tmp_interval3);
4646 tmp_interval3 = validate_interval_range (buf, &startr2, &endr2, 0);
4647 if (!NULL_INTERVAL_P (tmp_interval3))
4648 set_text_properties_1 (startr2, endr2, Qnil, buf, tmp_interval3);
4650 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4651 start1_addr = BYTE_POS_ADDR (start1_byte);
4652 start2_addr = BYTE_POS_ADDR (start2_byte);
4653 memcpy (temp, start1_addr, len1_byte);
4654 memcpy (start1_addr, start2_addr, len2_byte);
4655 memcpy (start2_addr, temp, len1_byte);
4656 SAFE_FREE ();
4658 graft_intervals_into_buffer (tmp_interval1, start2,
4659 len1, current_buffer, 0);
4660 graft_intervals_into_buffer (tmp_interval2, start1,
4661 len2, current_buffer, 0);
4664 else if (len1_byte < len2_byte) /* Second region larger than first */
4665 /* Non-adjacent & unequal size, area between must also be shifted. */
4667 USE_SAFE_ALLOCA;
4669 modify_region (current_buffer, start1, end2, 0);
4670 record_change (start1, (end2 - start1));
4671 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4672 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
4673 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4675 tmp_interval3 = validate_interval_range (buf, &startr1, &endr2, 0);
4676 if (!NULL_INTERVAL_P (tmp_interval3))
4677 set_text_properties_1 (startr1, endr2, Qnil, buf, tmp_interval3);
4679 /* holds region 2 */
4680 SAFE_ALLOCA (temp, unsigned char *, len2_byte);
4681 start1_addr = BYTE_POS_ADDR (start1_byte);
4682 start2_addr = BYTE_POS_ADDR (start2_byte);
4683 memcpy (temp, start2_addr, len2_byte);
4684 memcpy (start1_addr + len_mid + len2_byte, start1_addr, len1_byte);
4685 memmove (start1_addr + len2_byte, start1_addr + len1_byte, len_mid);
4686 memcpy (start1_addr, temp, len2_byte);
4687 SAFE_FREE ();
4689 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4690 len1, current_buffer, 0);
4691 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4692 len_mid, current_buffer, 0);
4693 graft_intervals_into_buffer (tmp_interval2, start1,
4694 len2, current_buffer, 0);
4696 else
4697 /* Second region smaller than first. */
4699 USE_SAFE_ALLOCA;
4701 record_change (start1, (end2 - start1));
4702 modify_region (current_buffer, start1, end2, 0);
4704 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4705 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
4706 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4708 tmp_interval3 = validate_interval_range (buf, &startr1, &endr2, 0);
4709 if (!NULL_INTERVAL_P (tmp_interval3))
4710 set_text_properties_1 (startr1, endr2, Qnil, buf, tmp_interval3);
4712 /* holds region 1 */
4713 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4714 start1_addr = BYTE_POS_ADDR (start1_byte);
4715 start2_addr = BYTE_POS_ADDR (start2_byte);
4716 memcpy (temp, start1_addr, len1_byte);
4717 memcpy (start1_addr, start2_addr, len2_byte);
4718 memcpy (start1_addr + len2_byte, start1_addr + len1_byte, len_mid);
4719 memcpy (start1_addr + len2_byte + len_mid, temp, len1_byte);
4720 SAFE_FREE ();
4722 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4723 len1, current_buffer, 0);
4724 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4725 len_mid, current_buffer, 0);
4726 graft_intervals_into_buffer (tmp_interval2, start1,
4727 len2, current_buffer, 0);
4730 update_compositions (start1, start1 + len2, CHECK_BORDER);
4731 update_compositions (end2 - len1, end2, CHECK_BORDER);
4734 /* When doing multiple transpositions, it might be nice
4735 to optimize this. Perhaps the markers in any one buffer
4736 should be organized in some sorted data tree. */
4737 if (NILP (leave_markers))
4739 transpose_markers (start1, end1, start2, end2,
4740 start1_byte, start1_byte + len1_byte,
4741 start2_byte, start2_byte + len2_byte);
4742 fix_start_end_in_overlays (start1, end2);
4745 signal_after_change (start1, end2 - start1, end2 - start1);
4746 return Qnil;
4750 void
4751 syms_of_editfns (void)
4753 environbuf = 0;
4754 initial_tz = 0;
4756 Qbuffer_access_fontify_functions
4757 = intern_c_string ("buffer-access-fontify-functions");
4758 staticpro (&Qbuffer_access_fontify_functions);
4760 DEFVAR_LISP ("inhibit-field-text-motion", Vinhibit_field_text_motion,
4761 doc: /* Non-nil means text motion commands don't notice fields. */);
4762 Vinhibit_field_text_motion = Qnil;
4764 DEFVAR_LISP ("buffer-access-fontify-functions",
4765 Vbuffer_access_fontify_functions,
4766 doc: /* List of functions called by `buffer-substring' to fontify if necessary.
4767 Each function is called with two arguments which specify the range
4768 of the buffer being accessed. */);
4769 Vbuffer_access_fontify_functions = Qnil;
4772 Lisp_Object obuf;
4773 obuf = Fcurrent_buffer ();
4774 /* Do this here, because init_buffer_once is too early--it won't work. */
4775 Fset_buffer (Vprin1_to_string_buffer);
4776 /* Make sure buffer-access-fontify-functions is nil in this buffer. */
4777 Fset (Fmake_local_variable (intern_c_string ("buffer-access-fontify-functions")),
4778 Qnil);
4779 Fset_buffer (obuf);
4782 DEFVAR_LISP ("buffer-access-fontified-property",
4783 Vbuffer_access_fontified_property,
4784 doc: /* Property which (if non-nil) indicates text has been fontified.
4785 `buffer-substring' need not call the `buffer-access-fontify-functions'
4786 functions if all the text being accessed has this property. */);
4787 Vbuffer_access_fontified_property = Qnil;
4789 DEFVAR_LISP ("system-name", Vsystem_name,
4790 doc: /* The host name of the machine Emacs is running on. */);
4792 DEFVAR_LISP ("user-full-name", Vuser_full_name,
4793 doc: /* The full name of the user logged in. */);
4795 DEFVAR_LISP ("user-login-name", Vuser_login_name,
4796 doc: /* The user's name, taken from environment variables if possible. */);
4798 DEFVAR_LISP ("user-real-login-name", Vuser_real_login_name,
4799 doc: /* The user's name, based upon the real uid only. */);
4801 DEFVAR_LISP ("operating-system-release", Voperating_system_release,
4802 doc: /* The release of the operating system Emacs is running on. */);
4804 defsubr (&Spropertize);
4805 defsubr (&Schar_equal);
4806 defsubr (&Sgoto_char);
4807 defsubr (&Sstring_to_char);
4808 defsubr (&Schar_to_string);
4809 defsubr (&Sbyte_to_string);
4810 defsubr (&Sbuffer_substring);
4811 defsubr (&Sbuffer_substring_no_properties);
4812 defsubr (&Sbuffer_string);
4814 defsubr (&Spoint_marker);
4815 defsubr (&Smark_marker);
4816 defsubr (&Spoint);
4817 defsubr (&Sregion_beginning);
4818 defsubr (&Sregion_end);
4820 staticpro (&Qfield);
4821 Qfield = intern_c_string ("field");
4822 staticpro (&Qboundary);
4823 Qboundary = intern_c_string ("boundary");
4824 defsubr (&Sfield_beginning);
4825 defsubr (&Sfield_end);
4826 defsubr (&Sfield_string);
4827 defsubr (&Sfield_string_no_properties);
4828 defsubr (&Sdelete_field);
4829 defsubr (&Sconstrain_to_field);
4831 defsubr (&Sline_beginning_position);
4832 defsubr (&Sline_end_position);
4834 /* defsubr (&Smark); */
4835 /* defsubr (&Sset_mark); */
4836 defsubr (&Ssave_excursion);
4837 defsubr (&Ssave_current_buffer);
4839 defsubr (&Sbufsize);
4840 defsubr (&Spoint_max);
4841 defsubr (&Spoint_min);
4842 defsubr (&Spoint_min_marker);
4843 defsubr (&Spoint_max_marker);
4844 defsubr (&Sgap_position);
4845 defsubr (&Sgap_size);
4846 defsubr (&Sposition_bytes);
4847 defsubr (&Sbyte_to_position);
4849 defsubr (&Sbobp);
4850 defsubr (&Seobp);
4851 defsubr (&Sbolp);
4852 defsubr (&Seolp);
4853 defsubr (&Sfollowing_char);
4854 defsubr (&Sprevious_char);
4855 defsubr (&Schar_after);
4856 defsubr (&Schar_before);
4857 defsubr (&Sinsert);
4858 defsubr (&Sinsert_before_markers);
4859 defsubr (&Sinsert_and_inherit);
4860 defsubr (&Sinsert_and_inherit_before_markers);
4861 defsubr (&Sinsert_char);
4862 defsubr (&Sinsert_byte);
4864 defsubr (&Suser_login_name);
4865 defsubr (&Suser_real_login_name);
4866 defsubr (&Suser_uid);
4867 defsubr (&Suser_real_uid);
4868 defsubr (&Suser_full_name);
4869 defsubr (&Semacs_pid);
4870 defsubr (&Scurrent_time);
4871 defsubr (&Sget_internal_run_time);
4872 defsubr (&Sformat_time_string);
4873 defsubr (&Sfloat_time);
4874 defsubr (&Sdecode_time);
4875 defsubr (&Sencode_time);
4876 defsubr (&Scurrent_time_string);
4877 defsubr (&Scurrent_time_zone);
4878 defsubr (&Sset_time_zone_rule);
4879 defsubr (&Ssystem_name);
4880 defsubr (&Smessage);
4881 defsubr (&Smessage_box);
4882 defsubr (&Smessage_or_box);
4883 defsubr (&Scurrent_message);
4884 defsubr (&Sformat);
4886 defsubr (&Sinsert_buffer_substring);
4887 defsubr (&Scompare_buffer_substrings);
4888 defsubr (&Ssubst_char_in_region);
4889 defsubr (&Stranslate_region_internal);
4890 defsubr (&Sdelete_region);
4891 defsubr (&Sdelete_and_extract_region);
4892 defsubr (&Swiden);
4893 defsubr (&Snarrow_to_region);
4894 defsubr (&Ssave_restriction);
4895 defsubr (&Stranspose_regions);