(calendar-location-name, calendar-latitude)
[emacs.git] / src / editfns.c
blob264097ffe5966b0ea6dfe7c3a027aa2aebfadfb5
1 /* Lisp functions pertaining to editing.
2 Copyright (C) 1985, 1986, 1987, 1989, 1993, 1994, 1995, 1996,
3 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
24 #include <config.h>
25 #include <sys/types.h>
26 #include <stdio.h>
28 #ifdef HAVE_PWD_H
29 #include <pwd.h>
30 #endif
32 #ifdef HAVE_UNISTD_H
33 #include <unistd.h>
34 #endif
36 #ifdef HAVE_SYS_UTSNAME_H
37 #include <sys/utsname.h>
38 #endif
40 #include "lisp.h"
42 /* systime.h includes <sys/time.h> which, on some systems, is required
43 for <sys/resource.h>; thus systime.h must be included before
44 <sys/resource.h> */
45 #include "systime.h"
47 #if defined HAVE_SYS_RESOURCE_H
48 #include <sys/resource.h>
49 #endif
51 #include <ctype.h>
53 #include "intervals.h"
54 #include "buffer.h"
55 #include "character.h"
56 #include "coding.h"
57 #include "frame.h"
58 #include "window.h"
59 #include "blockinput.h"
61 #ifdef STDC_HEADERS
62 #include <float.h>
63 #define MAX_10_EXP DBL_MAX_10_EXP
64 #else
65 #define MAX_10_EXP 310
66 #endif
68 #ifndef NULL
69 #define NULL 0
70 #endif
72 #ifndef USE_CRT_DLL
73 extern char **environ;
74 #endif
76 #define TM_YEAR_BASE 1900
78 /* Nonzero if TM_YEAR is a struct tm's tm_year value that causes
79 asctime to have well-defined behavior. */
80 #ifndef TM_YEAR_IN_ASCTIME_RANGE
81 # define TM_YEAR_IN_ASCTIME_RANGE(tm_year) \
82 (1000 - TM_YEAR_BASE <= (tm_year) && (tm_year) <= 9999 - TM_YEAR_BASE)
83 #endif
85 extern size_t emacs_strftimeu P_ ((char *, size_t, const char *,
86 const struct tm *, int));
88 #ifdef WINDOWSNT
89 extern Lisp_Object w32_get_internal_run_time ();
90 #endif
92 static int tm_diff P_ ((struct tm *, struct tm *));
93 static void find_field P_ ((Lisp_Object, Lisp_Object, Lisp_Object, int *, Lisp_Object, int *));
94 static void update_buffer_properties P_ ((int, int));
95 static Lisp_Object region_limit P_ ((int));
96 int lisp_time_argument P_ ((Lisp_Object, time_t *, int *));
97 static size_t emacs_memftimeu P_ ((char *, size_t, const char *,
98 size_t, const struct tm *, int));
99 static void general_insert_function P_ ((void (*) (const unsigned char *, int),
100 void (*) (Lisp_Object, int, int, int,
101 int, int),
102 int, int, Lisp_Object *));
103 static Lisp_Object subst_char_in_region_unwind P_ ((Lisp_Object));
104 static Lisp_Object subst_char_in_region_unwind_1 P_ ((Lisp_Object));
105 static void transpose_markers P_ ((int, int, int, int, int, int, int, int));
107 #ifdef HAVE_INDEX
108 extern char *index P_ ((const char *, int));
109 #endif
111 Lisp_Object Vbuffer_access_fontify_functions;
112 Lisp_Object Qbuffer_access_fontify_functions;
113 Lisp_Object Vbuffer_access_fontified_property;
115 Lisp_Object Fuser_full_name P_ ((Lisp_Object));
117 /* Non-nil means don't stop at field boundary in text motion commands. */
119 Lisp_Object Vinhibit_field_text_motion;
121 /* Some static data, and a function to initialize it for each run */
123 Lisp_Object Vsystem_name;
124 Lisp_Object Vuser_real_login_name; /* login name of current user ID */
125 Lisp_Object Vuser_full_name; /* full name of current user */
126 Lisp_Object Vuser_login_name; /* user name from LOGNAME or USER */
127 Lisp_Object Voperating_system_release; /* Operating System Release */
129 /* Symbol for the text property used to mark fields. */
131 Lisp_Object Qfield;
133 /* A special value for Qfield properties. */
135 Lisp_Object Qboundary;
138 void
139 init_editfns ()
141 char *user_name;
142 register unsigned char *p;
143 struct passwd *pw; /* password entry for the current user */
144 Lisp_Object tem;
146 /* Set up system_name even when dumping. */
147 init_system_name ();
149 #ifndef CANNOT_DUMP
150 /* Don't bother with this on initial start when just dumping out */
151 if (!initialized)
152 return;
153 #endif /* not CANNOT_DUMP */
155 pw = (struct passwd *) getpwuid (getuid ());
156 #ifdef MSDOS
157 /* We let the real user name default to "root" because that's quite
158 accurate on MSDOG and because it lets Emacs find the init file.
159 (The DVX libraries override the Djgpp libraries here.) */
160 Vuser_real_login_name = build_string (pw ? pw->pw_name : "root");
161 #else
162 Vuser_real_login_name = build_string (pw ? pw->pw_name : "unknown");
163 #endif
165 /* Get the effective user name, by consulting environment variables,
166 or the effective uid if those are unset. */
167 user_name = (char *) getenv ("LOGNAME");
168 if (!user_name)
169 #ifdef WINDOWSNT
170 user_name = (char *) getenv ("USERNAME"); /* it's USERNAME on NT */
171 #else /* WINDOWSNT */
172 user_name = (char *) getenv ("USER");
173 #endif /* WINDOWSNT */
174 if (!user_name)
176 pw = (struct passwd *) getpwuid (geteuid ());
177 user_name = (char *) (pw ? pw->pw_name : "unknown");
179 Vuser_login_name = build_string (user_name);
181 /* If the user name claimed in the environment vars differs from
182 the real uid, use the claimed name to find the full name. */
183 tem = Fstring_equal (Vuser_login_name, Vuser_real_login_name);
184 Vuser_full_name = Fuser_full_name (NILP (tem)? make_number (geteuid())
185 : Vuser_login_name);
187 p = (unsigned char *) getenv ("NAME");
188 if (p)
189 Vuser_full_name = build_string (p);
190 else if (NILP (Vuser_full_name))
191 Vuser_full_name = build_string ("unknown");
193 #ifdef HAVE_SYS_UTSNAME_H
195 struct utsname uts;
196 uname (&uts);
197 Voperating_system_release = build_string (uts.release);
199 #else
200 Voperating_system_release = Qnil;
201 #endif
204 DEFUN ("char-to-string", Fchar_to_string, Schar_to_string, 1, 1, 0,
205 doc: /* Convert arg CHAR to a string containing that character.
206 usage: (char-to-string CHAR) */)
207 (character)
208 Lisp_Object character;
210 int len;
211 unsigned char str[MAX_MULTIBYTE_LENGTH];
213 CHECK_CHARACTER (character);
215 len = CHAR_STRING (XFASTINT (character), str);
216 return make_string_from_bytes (str, 1, len);
219 DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0,
220 doc: /* Convert arg STRING to a character, the first character of that string.
221 A multibyte character is handled correctly. */)
222 (string)
223 register Lisp_Object string;
225 register Lisp_Object val;
226 CHECK_STRING (string);
227 if (SCHARS (string))
229 if (STRING_MULTIBYTE (string))
230 XSETFASTINT (val, STRING_CHAR (SDATA (string), SBYTES (string)));
231 else
232 XSETFASTINT (val, SREF (string, 0));
234 else
235 XSETFASTINT (val, 0);
236 return val;
239 static Lisp_Object
240 buildmark (charpos, bytepos)
241 int charpos, bytepos;
243 register Lisp_Object mark;
244 mark = Fmake_marker ();
245 set_marker_both (mark, Qnil, charpos, bytepos);
246 return mark;
249 DEFUN ("point", Fpoint, Spoint, 0, 0, 0,
250 doc: /* Return value of point, as an integer.
251 Beginning of buffer is position (point-min). */)
254 Lisp_Object temp;
255 XSETFASTINT (temp, PT);
256 return temp;
259 DEFUN ("point-marker", Fpoint_marker, Spoint_marker, 0, 0, 0,
260 doc: /* Return value of point, as a marker object. */)
263 return buildmark (PT, PT_BYTE);
267 clip_to_bounds (lower, num, upper)
268 int lower, num, upper;
270 if (num < lower)
271 return lower;
272 else if (num > upper)
273 return upper;
274 else
275 return num;
278 DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ",
279 doc: /* Set point to POSITION, a number or marker.
280 Beginning of buffer is position (point-min), end is (point-max).
282 The return value is POSITION. */)
283 (position)
284 register Lisp_Object position;
286 int pos;
288 if (MARKERP (position)
289 && current_buffer == XMARKER (position)->buffer)
291 pos = marker_position (position);
292 if (pos < BEGV)
293 SET_PT_BOTH (BEGV, BEGV_BYTE);
294 else if (pos > ZV)
295 SET_PT_BOTH (ZV, ZV_BYTE);
296 else
297 SET_PT_BOTH (pos, marker_byte_position (position));
299 return position;
302 CHECK_NUMBER_COERCE_MARKER (position);
304 pos = clip_to_bounds (BEGV, XINT (position), ZV);
305 SET_PT (pos);
306 return position;
310 /* Return the start or end position of the region.
311 BEGINNINGP non-zero means return the start.
312 If there is no region active, signal an error. */
314 static Lisp_Object
315 region_limit (beginningp)
316 int beginningp;
318 extern Lisp_Object Vmark_even_if_inactive; /* Defined in callint.c. */
319 Lisp_Object m;
321 if (!NILP (Vtransient_mark_mode)
322 && NILP (Vmark_even_if_inactive)
323 && NILP (current_buffer->mark_active))
324 xsignal0 (Qmark_inactive);
326 m = Fmarker_position (current_buffer->mark);
327 if (NILP (m))
328 error ("The mark is not set now, so there is no region");
330 if ((PT < XFASTINT (m)) == (beginningp != 0))
331 m = make_number (PT);
332 return m;
335 DEFUN ("region-beginning", Fregion_beginning, Sregion_beginning, 0, 0, 0,
336 doc: /* Return position of beginning of region, as an integer. */)
339 return region_limit (1);
342 DEFUN ("region-end", Fregion_end, Sregion_end, 0, 0, 0,
343 doc: /* Return position of end of region, as an integer. */)
346 return region_limit (0);
349 DEFUN ("mark-marker", Fmark_marker, Smark_marker, 0, 0, 0,
350 doc: /* Return this buffer's mark, as a marker object.
351 Watch out! Moving this marker changes the mark position.
352 If you set the marker not to point anywhere, the buffer will have no mark. */)
355 return current_buffer->mark;
359 /* Find all the overlays in the current buffer that touch position POS.
360 Return the number found, and store them in a vector in VEC
361 of length LEN. */
363 static int
364 overlays_around (pos, vec, len)
365 int pos;
366 Lisp_Object *vec;
367 int len;
369 Lisp_Object overlay, start, end;
370 struct Lisp_Overlay *tail;
371 int startpos, endpos;
372 int idx = 0;
374 for (tail = current_buffer->overlays_before; tail; tail = tail->next)
376 XSETMISC (overlay, tail);
378 end = OVERLAY_END (overlay);
379 endpos = OVERLAY_POSITION (end);
380 if (endpos < pos)
381 break;
382 start = OVERLAY_START (overlay);
383 startpos = OVERLAY_POSITION (start);
384 if (startpos <= pos)
386 if (idx < len)
387 vec[idx] = overlay;
388 /* Keep counting overlays even if we can't return them all. */
389 idx++;
393 for (tail = current_buffer->overlays_after; tail; tail = tail->next)
395 XSETMISC (overlay, tail);
397 start = OVERLAY_START (overlay);
398 startpos = OVERLAY_POSITION (start);
399 if (pos < startpos)
400 break;
401 end = OVERLAY_END (overlay);
402 endpos = OVERLAY_POSITION (end);
403 if (pos <= endpos)
405 if (idx < len)
406 vec[idx] = overlay;
407 idx++;
411 return idx;
414 /* Return the value of property PROP, in OBJECT at POSITION.
415 It's the value of PROP that a char inserted at POSITION would get.
416 OBJECT is optional and defaults to the current buffer.
417 If OBJECT is a buffer, then overlay properties are considered as well as
418 text properties.
419 If OBJECT is a window, then that window's buffer is used, but
420 window-specific overlays are considered only if they are associated
421 with OBJECT. */
422 Lisp_Object
423 get_pos_property (position, prop, object)
424 Lisp_Object position, object;
425 register Lisp_Object prop;
427 CHECK_NUMBER_COERCE_MARKER (position);
429 if (NILP (object))
430 XSETBUFFER (object, current_buffer);
431 else if (WINDOWP (object))
432 object = XWINDOW (object)->buffer;
434 if (!BUFFERP (object))
435 /* pos-property only makes sense in buffers right now, since strings
436 have no overlays and no notion of insertion for which stickiness
437 could be obeyed. */
438 return Fget_text_property (position, prop, object);
439 else
441 int posn = XINT (position);
442 int noverlays;
443 Lisp_Object *overlay_vec, tem;
444 struct buffer *obuf = current_buffer;
446 set_buffer_temp (XBUFFER (object));
448 /* First try with room for 40 overlays. */
449 noverlays = 40;
450 overlay_vec = (Lisp_Object *) alloca (noverlays * sizeof (Lisp_Object));
451 noverlays = overlays_around (posn, overlay_vec, noverlays);
453 /* If there are more than 40,
454 make enough space for all, and try again. */
455 if (noverlays > 40)
457 overlay_vec = (Lisp_Object *) alloca (noverlays * sizeof (Lisp_Object));
458 noverlays = overlays_around (posn, overlay_vec, noverlays);
460 noverlays = sort_overlays (overlay_vec, noverlays, NULL);
462 set_buffer_temp (obuf);
464 /* Now check the overlays in order of decreasing priority. */
465 while (--noverlays >= 0)
467 Lisp_Object ol = overlay_vec[noverlays];
468 tem = Foverlay_get (ol, prop);
469 if (!NILP (tem))
471 /* Check the overlay is indeed active at point. */
472 Lisp_Object start = OVERLAY_START (ol), finish = OVERLAY_END (ol);
473 if ((OVERLAY_POSITION (start) == posn
474 && XMARKER (start)->insertion_type == 1)
475 || (OVERLAY_POSITION (finish) == posn
476 && XMARKER (finish)->insertion_type == 0))
477 ; /* The overlay will not cover a char inserted at point. */
478 else
480 return tem;
485 { /* Now check the text-properties. */
486 int stickiness = text_property_stickiness (prop, position, object);
487 if (stickiness > 0)
488 return Fget_text_property (position, prop, object);
489 else if (stickiness < 0
490 && XINT (position) > BUF_BEGV (XBUFFER (object)))
491 return Fget_text_property (make_number (XINT (position) - 1),
492 prop, object);
493 else
494 return Qnil;
499 /* Find the field surrounding POS in *BEG and *END. If POS is nil,
500 the value of point is used instead. If BEG or END is null,
501 means don't store the beginning or end of the field.
503 BEG_LIMIT and END_LIMIT serve to limit the ranged of the returned
504 results; they do not effect boundary behavior.
506 If MERGE_AT_BOUNDARY is nonzero, then if POS is at the very first
507 position of a field, then the beginning of the previous field is
508 returned instead of the beginning of POS's field (since the end of a
509 field is actually also the beginning of the next input field, this
510 behavior is sometimes useful). Additionally in the MERGE_AT_BOUNDARY
511 true case, if two fields are separated by a field with the special
512 value `boundary', and POS lies within it, then the two separated
513 fields are considered to be adjacent, and POS between them, when
514 finding the beginning and ending of the "merged" field.
516 Either BEG or END may be 0, in which case the corresponding value
517 is not stored. */
519 static void
520 find_field (pos, merge_at_boundary, beg_limit, beg, end_limit, end)
521 Lisp_Object pos;
522 Lisp_Object merge_at_boundary;
523 Lisp_Object beg_limit, end_limit;
524 int *beg, *end;
526 /* Fields right before and after the point. */
527 Lisp_Object before_field, after_field;
528 /* 1 if POS counts as the start of a field. */
529 int at_field_start = 0;
530 /* 1 if POS counts as the end of a field. */
531 int at_field_end = 0;
533 if (NILP (pos))
534 XSETFASTINT (pos, PT);
535 else
536 CHECK_NUMBER_COERCE_MARKER (pos);
538 after_field
539 = get_char_property_and_overlay (pos, Qfield, Qnil, NULL);
540 before_field
541 = (XFASTINT (pos) > BEGV
542 ? get_char_property_and_overlay (make_number (XINT (pos) - 1),
543 Qfield, Qnil, NULL)
544 /* Using nil here would be a more obvious choice, but it would
545 fail when the buffer starts with a non-sticky field. */
546 : after_field);
548 /* See if we need to handle the case where MERGE_AT_BOUNDARY is nil
549 and POS is at beginning of a field, which can also be interpreted
550 as the end of the previous field. Note that the case where if
551 MERGE_AT_BOUNDARY is non-nil (see function comment) is actually the
552 more natural one; then we avoid treating the beginning of a field
553 specially. */
554 if (NILP (merge_at_boundary))
556 Lisp_Object field = get_pos_property (pos, Qfield, Qnil);
557 if (!EQ (field, after_field))
558 at_field_end = 1;
559 if (!EQ (field, before_field))
560 at_field_start = 1;
561 if (NILP (field) && at_field_start && at_field_end)
562 /* If an inserted char would have a nil field while the surrounding
563 text is non-nil, we're probably not looking at a
564 zero-length field, but instead at a non-nil field that's
565 not intended for editing (such as comint's prompts). */
566 at_field_end = at_field_start = 0;
569 /* Note about special `boundary' fields:
571 Consider the case where the point (`.') is between the fields `x' and `y':
573 xxxx.yyyy
575 In this situation, if merge_at_boundary is true, we consider the
576 `x' and `y' fields as forming one big merged field, and so the end
577 of the field is the end of `y'.
579 However, if `x' and `y' are separated by a special `boundary' field
580 (a field with a `field' char-property of 'boundary), then we ignore
581 this special field when merging adjacent fields. Here's the same
582 situation, but with a `boundary' field between the `x' and `y' fields:
584 xxx.BBBByyyy
586 Here, if point is at the end of `x', the beginning of `y', or
587 anywhere in-between (within the `boundary' field), we merge all
588 three fields and consider the beginning as being the beginning of
589 the `x' field, and the end as being the end of the `y' field. */
591 if (beg)
593 if (at_field_start)
594 /* POS is at the edge of a field, and we should consider it as
595 the beginning of the following field. */
596 *beg = XFASTINT (pos);
597 else
598 /* Find the previous field boundary. */
600 Lisp_Object p = pos;
601 if (!NILP (merge_at_boundary) && EQ (before_field, Qboundary))
602 /* Skip a `boundary' field. */
603 p = Fprevious_single_char_property_change (p, Qfield, Qnil,
604 beg_limit);
606 p = Fprevious_single_char_property_change (p, Qfield, Qnil,
607 beg_limit);
608 *beg = NILP (p) ? BEGV : XFASTINT (p);
612 if (end)
614 if (at_field_end)
615 /* POS is at the edge of a field, and we should consider it as
616 the end of the previous field. */
617 *end = XFASTINT (pos);
618 else
619 /* Find the next field boundary. */
621 if (!NILP (merge_at_boundary) && EQ (after_field, Qboundary))
622 /* Skip a `boundary' field. */
623 pos = Fnext_single_char_property_change (pos, Qfield, Qnil,
624 end_limit);
626 pos = Fnext_single_char_property_change (pos, Qfield, Qnil,
627 end_limit);
628 *end = NILP (pos) ? ZV : XFASTINT (pos);
634 DEFUN ("delete-field", Fdelete_field, Sdelete_field, 0, 1, 0,
635 doc: /* Delete the field surrounding POS.
636 A field is a region of text with the same `field' property.
637 If POS is nil, the value of point is used for POS. */)
638 (pos)
639 Lisp_Object pos;
641 int beg, end;
642 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
643 if (beg != end)
644 del_range (beg, end);
645 return Qnil;
648 DEFUN ("field-string", Ffield_string, Sfield_string, 0, 1, 0,
649 doc: /* Return the contents of the field surrounding POS as a string.
650 A field is a region of text with the same `field' property.
651 If POS is nil, the value of point is used for POS. */)
652 (pos)
653 Lisp_Object pos;
655 int beg, end;
656 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
657 return make_buffer_string (beg, end, 1);
660 DEFUN ("field-string-no-properties", Ffield_string_no_properties, Sfield_string_no_properties, 0, 1, 0,
661 doc: /* Return the contents of the field around POS, without text-properties.
662 A field is a region of text with the same `field' property.
663 If POS is nil, the value of point is used for POS. */)
664 (pos)
665 Lisp_Object pos;
667 int beg, end;
668 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
669 return make_buffer_string (beg, end, 0);
672 DEFUN ("field-beginning", Ffield_beginning, Sfield_beginning, 0, 3, 0,
673 doc: /* Return the beginning of the field surrounding POS.
674 A field is a region of text with the same `field' property.
675 If POS is nil, the value of point is used for POS.
676 If ESCAPE-FROM-EDGE is non-nil and POS is at the beginning of its
677 field, then the beginning of the *previous* field is returned.
678 If LIMIT is non-nil, it is a buffer position; if the beginning of the field
679 is before LIMIT, then LIMIT will be returned instead. */)
680 (pos, escape_from_edge, limit)
681 Lisp_Object pos, escape_from_edge, limit;
683 int beg;
684 find_field (pos, escape_from_edge, limit, &beg, Qnil, 0);
685 return make_number (beg);
688 DEFUN ("field-end", Ffield_end, Sfield_end, 0, 3, 0,
689 doc: /* Return the end of the field surrounding POS.
690 A field is a region of text with the same `field' property.
691 If POS is nil, the value of point is used for POS.
692 If ESCAPE-FROM-EDGE is non-nil and POS is at the end of its field,
693 then the end of the *following* field is returned.
694 If LIMIT is non-nil, it is a buffer position; if the end of the field
695 is after LIMIT, then LIMIT will be returned instead. */)
696 (pos, escape_from_edge, limit)
697 Lisp_Object pos, escape_from_edge, limit;
699 int end;
700 find_field (pos, escape_from_edge, Qnil, 0, limit, &end);
701 return make_number (end);
704 DEFUN ("constrain-to-field", Fconstrain_to_field, Sconstrain_to_field, 2, 5, 0,
705 doc: /* Return the position closest to NEW-POS that is in the same field as OLD-POS.
707 A field is a region of text with the same `field' property.
708 If NEW-POS is nil, then the current point is used instead, and set to the
709 constrained position if that is different.
711 If OLD-POS is at the boundary of two fields, then the allowable
712 positions for NEW-POS depends on the value of the optional argument
713 ESCAPE-FROM-EDGE: If ESCAPE-FROM-EDGE is nil, then NEW-POS is
714 constrained to the field that has the same `field' char-property
715 as any new characters inserted at OLD-POS, whereas if ESCAPE-FROM-EDGE
716 is non-nil, NEW-POS is constrained to the union of the two adjacent
717 fields. Additionally, if two fields are separated by another field with
718 the special value `boundary', then any point within this special field is
719 also considered to be `on the boundary'.
721 If the optional argument ONLY-IN-LINE is non-nil and constraining
722 NEW-POS would move it to a different line, NEW-POS is returned
723 unconstrained. This useful for commands that move by line, like
724 \\[next-line] or \\[beginning-of-line], which should generally respect field boundaries
725 only in the case where they can still move to the right line.
727 If the optional argument INHIBIT-CAPTURE-PROPERTY is non-nil, and OLD-POS has
728 a non-nil property of that name, then any field boundaries are ignored.
730 Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil. */)
731 (new_pos, old_pos, escape_from_edge, only_in_line, inhibit_capture_property)
732 Lisp_Object new_pos, old_pos;
733 Lisp_Object escape_from_edge, only_in_line, inhibit_capture_property;
735 /* If non-zero, then the original point, before re-positioning. */
736 int orig_point = 0;
737 int fwd;
738 Lisp_Object prev_old, prev_new;
740 if (NILP (new_pos))
741 /* Use the current point, and afterwards, set it. */
743 orig_point = PT;
744 XSETFASTINT (new_pos, PT);
747 CHECK_NUMBER_COERCE_MARKER (new_pos);
748 CHECK_NUMBER_COERCE_MARKER (old_pos);
750 fwd = (XFASTINT (new_pos) > XFASTINT (old_pos));
752 prev_old = make_number (XFASTINT (old_pos) - 1);
753 prev_new = make_number (XFASTINT (new_pos) - 1);
755 if (NILP (Vinhibit_field_text_motion)
756 && !EQ (new_pos, old_pos)
757 && (!NILP (Fget_char_property (new_pos, Qfield, Qnil))
758 || !NILP (Fget_char_property (old_pos, Qfield, Qnil))
759 /* To recognize field boundaries, we must also look at the
760 previous positions; we could use `get_pos_property'
761 instead, but in itself that would fail inside non-sticky
762 fields (like comint prompts). */
763 || (XFASTINT (new_pos) > BEGV
764 && !NILP (Fget_char_property (prev_new, Qfield, Qnil)))
765 || (XFASTINT (old_pos) > BEGV
766 && !NILP (Fget_char_property (prev_old, Qfield, Qnil))))
767 && (NILP (inhibit_capture_property)
768 /* Field boundaries are again a problem; but now we must
769 decide the case exactly, so we need to call
770 `get_pos_property' as well. */
771 || (NILP (get_pos_property (old_pos, inhibit_capture_property, Qnil))
772 && (XFASTINT (old_pos) <= BEGV
773 || NILP (Fget_char_property (old_pos, inhibit_capture_property, Qnil))
774 || NILP (Fget_char_property (prev_old, inhibit_capture_property, Qnil))))))
775 /* It is possible that NEW_POS is not within the same field as
776 OLD_POS; try to move NEW_POS so that it is. */
778 int shortage;
779 Lisp_Object field_bound;
781 if (fwd)
782 field_bound = Ffield_end (old_pos, escape_from_edge, new_pos);
783 else
784 field_bound = Ffield_beginning (old_pos, escape_from_edge, new_pos);
786 if (/* See if ESCAPE_FROM_EDGE caused FIELD_BOUND to jump to the
787 other side of NEW_POS, which would mean that NEW_POS is
788 already acceptable, and it's not necessary to constrain it
789 to FIELD_BOUND. */
790 ((XFASTINT (field_bound) < XFASTINT (new_pos)) ? fwd : !fwd)
791 /* NEW_POS should be constrained, but only if either
792 ONLY_IN_LINE is nil (in which case any constraint is OK),
793 or NEW_POS and FIELD_BOUND are on the same line (in which
794 case the constraint is OK even if ONLY_IN_LINE is non-nil). */
795 && (NILP (only_in_line)
796 /* This is the ONLY_IN_LINE case, check that NEW_POS and
797 FIELD_BOUND are on the same line by seeing whether
798 there's an intervening newline or not. */
799 || (scan_buffer ('\n',
800 XFASTINT (new_pos), XFASTINT (field_bound),
801 fwd ? -1 : 1, &shortage, 1),
802 shortage != 0)))
803 /* Constrain NEW_POS to FIELD_BOUND. */
804 new_pos = field_bound;
806 if (orig_point && XFASTINT (new_pos) != orig_point)
807 /* The NEW_POS argument was originally nil, so automatically set PT. */
808 SET_PT (XFASTINT (new_pos));
811 return new_pos;
815 DEFUN ("line-beginning-position",
816 Fline_beginning_position, Sline_beginning_position, 0, 1, 0,
817 doc: /* Return the character position of the first character on the current line.
818 With argument N not nil or 1, move forward N - 1 lines first.
819 If scan reaches end of buffer, return that position.
821 This function constrains the returned position to the current field
822 unless that would be on a different line than the original,
823 unconstrained result. If N is nil or 1, and a front-sticky field
824 starts at point, the scan stops as soon as it starts. To ignore field
825 boundaries bind `inhibit-field-text-motion' to t.
827 This function does not move point. */)
829 Lisp_Object n;
831 int orig, orig_byte, end;
832 int count = SPECPDL_INDEX ();
833 specbind (Qinhibit_point_motion_hooks, Qt);
835 if (NILP (n))
836 XSETFASTINT (n, 1);
837 else
838 CHECK_NUMBER (n);
840 orig = PT;
841 orig_byte = PT_BYTE;
842 Fforward_line (make_number (XINT (n) - 1));
843 end = PT;
845 SET_PT_BOTH (orig, orig_byte);
847 unbind_to (count, Qnil);
849 /* Return END constrained to the current input field. */
850 return Fconstrain_to_field (make_number (end), make_number (orig),
851 XINT (n) != 1 ? Qt : Qnil,
852 Qt, Qnil);
855 DEFUN ("line-end-position", Fline_end_position, Sline_end_position, 0, 1, 0,
856 doc: /* Return the character position of the last character on the current line.
857 With argument N not nil or 1, move forward N - 1 lines first.
858 If scan reaches end of buffer, return that position.
860 This function constrains the returned position to the current field
861 unless that would be on a different line than the original,
862 unconstrained result. If N is nil or 1, and a rear-sticky field ends
863 at point, the scan stops as soon as it starts. To ignore field
864 boundaries bind `inhibit-field-text-motion' to t.
866 This function does not move point. */)
868 Lisp_Object n;
870 int end_pos;
871 int orig = PT;
873 if (NILP (n))
874 XSETFASTINT (n, 1);
875 else
876 CHECK_NUMBER (n);
878 end_pos = find_before_next_newline (orig, 0, XINT (n) - (XINT (n) <= 0));
880 /* Return END_POS constrained to the current input field. */
881 return Fconstrain_to_field (make_number (end_pos), make_number (orig),
882 Qnil, Qt, Qnil);
886 Lisp_Object
887 save_excursion_save ()
889 int visible = (XBUFFER (XWINDOW (selected_window)->buffer)
890 == current_buffer);
892 return Fcons (Fpoint_marker (),
893 Fcons (Fcopy_marker (current_buffer->mark, Qnil),
894 Fcons (visible ? Qt : Qnil,
895 Fcons (current_buffer->mark_active,
896 selected_window))));
899 Lisp_Object
900 save_excursion_restore (info)
901 Lisp_Object info;
903 Lisp_Object tem, tem1, omark, nmark;
904 struct gcpro gcpro1, gcpro2, gcpro3;
905 int visible_p;
907 tem = Fmarker_buffer (XCAR (info));
908 /* If buffer being returned to is now deleted, avoid error */
909 /* Otherwise could get error here while unwinding to top level
910 and crash */
911 /* In that case, Fmarker_buffer returns nil now. */
912 if (NILP (tem))
913 return Qnil;
915 omark = nmark = Qnil;
916 GCPRO3 (info, omark, nmark);
918 Fset_buffer (tem);
920 /* Point marker. */
921 tem = XCAR (info);
922 Fgoto_char (tem);
923 unchain_marker (XMARKER (tem));
925 /* Mark marker. */
926 info = XCDR (info);
927 tem = XCAR (info);
928 omark = Fmarker_position (current_buffer->mark);
929 Fset_marker (current_buffer->mark, tem, Fcurrent_buffer ());
930 nmark = Fmarker_position (tem);
931 unchain_marker (XMARKER (tem));
933 /* visible */
934 info = XCDR (info);
935 visible_p = !NILP (XCAR (info));
937 #if 0 /* We used to make the current buffer visible in the selected window
938 if that was true previously. That avoids some anomalies.
939 But it creates others, and it wasn't documented, and it is simpler
940 and cleaner never to alter the window/buffer connections. */
941 tem1 = Fcar (tem);
942 if (!NILP (tem1)
943 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
944 Fswitch_to_buffer (Fcurrent_buffer (), Qnil);
945 #endif /* 0 */
947 /* Mark active */
948 info = XCDR (info);
949 tem = XCAR (info);
950 tem1 = current_buffer->mark_active;
951 current_buffer->mark_active = tem;
953 if (!NILP (Vrun_hooks))
955 /* If mark is active now, and either was not active
956 or was at a different place, run the activate hook. */
957 if (! NILP (current_buffer->mark_active))
959 if (! EQ (omark, nmark))
960 call1 (Vrun_hooks, intern ("activate-mark-hook"));
962 /* If mark has ceased to be active, run deactivate hook. */
963 else if (! NILP (tem1))
964 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
967 /* If buffer was visible in a window, and a different window was
968 selected, and the old selected window is still showing this
969 buffer, restore point in that window. */
970 tem = XCDR (info);
971 if (visible_p
972 && !EQ (tem, selected_window)
973 && (tem1 = XWINDOW (tem)->buffer,
974 (/* Window is live... */
975 BUFFERP (tem1)
976 /* ...and it shows the current buffer. */
977 && XBUFFER (tem1) == current_buffer)))
978 Fset_window_point (tem, make_number (PT));
980 UNGCPRO;
981 return Qnil;
984 DEFUN ("save-excursion", Fsave_excursion, Ssave_excursion, 0, UNEVALLED, 0,
985 doc: /* Save point, mark, and current buffer; execute BODY; restore those things.
986 Executes BODY just like `progn'.
987 The values of point, mark and the current buffer are restored
988 even in case of abnormal exit (throw or error).
989 The state of activation of the mark is also restored.
991 This construct does not save `deactivate-mark', and therefore
992 functions that change the buffer will still cause deactivation
993 of the mark at the end of the command. To prevent that, bind
994 `deactivate-mark' with `let'.
996 usage: (save-excursion &rest BODY) */)
997 (args)
998 Lisp_Object args;
1000 register Lisp_Object val;
1001 int count = SPECPDL_INDEX ();
1003 record_unwind_protect (save_excursion_restore, save_excursion_save ());
1005 val = Fprogn (args);
1006 return unbind_to (count, val);
1009 DEFUN ("save-current-buffer", Fsave_current_buffer, Ssave_current_buffer, 0, UNEVALLED, 0,
1010 doc: /* Save the current buffer; execute BODY; restore the current buffer.
1011 Executes BODY just like `progn'.
1012 usage: (save-current-buffer &rest BODY) */)
1013 (args)
1014 Lisp_Object args;
1016 Lisp_Object val;
1017 int count = SPECPDL_INDEX ();
1019 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
1021 val = Fprogn (args);
1022 return unbind_to (count, val);
1025 DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 1, 0,
1026 doc: /* Return the number of characters in the current buffer.
1027 If BUFFER, return the number of characters in that buffer instead. */)
1028 (buffer)
1029 Lisp_Object buffer;
1031 if (NILP (buffer))
1032 return make_number (Z - BEG);
1033 else
1035 CHECK_BUFFER (buffer);
1036 return make_number (BUF_Z (XBUFFER (buffer))
1037 - BUF_BEG (XBUFFER (buffer)));
1041 DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0,
1042 doc: /* Return the minimum permissible value of point in the current buffer.
1043 This is 1, unless narrowing (a buffer restriction) is in effect. */)
1046 Lisp_Object temp;
1047 XSETFASTINT (temp, BEGV);
1048 return temp;
1051 DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0,
1052 doc: /* Return a marker to the minimum permissible value of point in this buffer.
1053 This is the beginning, unless narrowing (a buffer restriction) is in effect. */)
1056 return buildmark (BEGV, BEGV_BYTE);
1059 DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0,
1060 doc: /* Return the maximum permissible value of point in the current buffer.
1061 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
1062 is in effect, in which case it is less. */)
1065 Lisp_Object temp;
1066 XSETFASTINT (temp, ZV);
1067 return temp;
1070 DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0,
1071 doc: /* Return a marker to the maximum permissible value of point in this buffer.
1072 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
1073 is in effect, in which case it is less. */)
1076 return buildmark (ZV, ZV_BYTE);
1079 DEFUN ("gap-position", Fgap_position, Sgap_position, 0, 0, 0,
1080 doc: /* Return the position of the gap, in the current buffer.
1081 See also `gap-size'. */)
1084 Lisp_Object temp;
1085 XSETFASTINT (temp, GPT);
1086 return temp;
1089 DEFUN ("gap-size", Fgap_size, Sgap_size, 0, 0, 0,
1090 doc: /* Return the size of the current buffer's gap.
1091 See also `gap-position'. */)
1094 Lisp_Object temp;
1095 XSETFASTINT (temp, GAP_SIZE);
1096 return temp;
1099 DEFUN ("position-bytes", Fposition_bytes, Sposition_bytes, 1, 1, 0,
1100 doc: /* Return the byte position for character position POSITION.
1101 If POSITION is out of range, the value is nil. */)
1102 (position)
1103 Lisp_Object position;
1105 CHECK_NUMBER_COERCE_MARKER (position);
1106 if (XINT (position) < BEG || XINT (position) > Z)
1107 return Qnil;
1108 return make_number (CHAR_TO_BYTE (XINT (position)));
1111 DEFUN ("byte-to-position", Fbyte_to_position, Sbyte_to_position, 1, 1, 0,
1112 doc: /* Return the character position for byte position BYTEPOS.
1113 If BYTEPOS is out of range, the value is nil. */)
1114 (bytepos)
1115 Lisp_Object bytepos;
1117 CHECK_NUMBER (bytepos);
1118 if (XINT (bytepos) < BEG_BYTE || XINT (bytepos) > Z_BYTE)
1119 return Qnil;
1120 return make_number (BYTE_TO_CHAR (XINT (bytepos)));
1123 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
1124 doc: /* Return the character following point, as a number.
1125 At the end of the buffer or accessible region, return 0. */)
1128 Lisp_Object temp;
1129 if (PT >= ZV)
1130 XSETFASTINT (temp, 0);
1131 else
1132 XSETFASTINT (temp, FETCH_CHAR (PT_BYTE));
1133 return temp;
1136 DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
1137 doc: /* Return the character preceding point, as a number.
1138 At the beginning of the buffer or accessible region, return 0. */)
1141 Lisp_Object temp;
1142 if (PT <= BEGV)
1143 XSETFASTINT (temp, 0);
1144 else if (!NILP (current_buffer->enable_multibyte_characters))
1146 int pos = PT_BYTE;
1147 DEC_POS (pos);
1148 XSETFASTINT (temp, FETCH_CHAR (pos));
1150 else
1151 XSETFASTINT (temp, FETCH_BYTE (PT_BYTE - 1));
1152 return temp;
1155 DEFUN ("bobp", Fbobp, Sbobp, 0, 0, 0,
1156 doc: /* Return t if point is at the beginning of the buffer.
1157 If the buffer is narrowed, this means the beginning of the narrowed part. */)
1160 if (PT == BEGV)
1161 return Qt;
1162 return Qnil;
1165 DEFUN ("eobp", Feobp, Seobp, 0, 0, 0,
1166 doc: /* Return t if point is at the end of the buffer.
1167 If the buffer is narrowed, this means the end of the narrowed part. */)
1170 if (PT == ZV)
1171 return Qt;
1172 return Qnil;
1175 DEFUN ("bolp", Fbolp, Sbolp, 0, 0, 0,
1176 doc: /* Return t if point is at the beginning of a line. */)
1179 if (PT == BEGV || FETCH_BYTE (PT_BYTE - 1) == '\n')
1180 return Qt;
1181 return Qnil;
1184 DEFUN ("eolp", Feolp, Seolp, 0, 0, 0,
1185 doc: /* Return t if point is at the end of a line.
1186 `End of a line' includes point being at the end of the buffer. */)
1189 if (PT == ZV || FETCH_BYTE (PT_BYTE) == '\n')
1190 return Qt;
1191 return Qnil;
1194 DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0,
1195 doc: /* Return character in current buffer at position POS.
1196 POS is an integer or a marker and defaults to point.
1197 If POS is out of range, the value is nil. */)
1198 (pos)
1199 Lisp_Object pos;
1201 register int pos_byte;
1203 if (NILP (pos))
1205 pos_byte = PT_BYTE;
1206 XSETFASTINT (pos, PT);
1209 if (MARKERP (pos))
1211 pos_byte = marker_byte_position (pos);
1212 if (pos_byte < BEGV_BYTE || pos_byte >= ZV_BYTE)
1213 return Qnil;
1215 else
1217 CHECK_NUMBER_COERCE_MARKER (pos);
1218 if (XINT (pos) < BEGV || XINT (pos) >= ZV)
1219 return Qnil;
1221 pos_byte = CHAR_TO_BYTE (XINT (pos));
1224 return make_number (FETCH_CHAR (pos_byte));
1227 DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0,
1228 doc: /* Return character in current buffer preceding position POS.
1229 POS is an integer or a marker and defaults to point.
1230 If POS is out of range, the value is nil. */)
1231 (pos)
1232 Lisp_Object pos;
1234 register Lisp_Object val;
1235 register int pos_byte;
1237 if (NILP (pos))
1239 pos_byte = PT_BYTE;
1240 XSETFASTINT (pos, PT);
1243 if (MARKERP (pos))
1245 pos_byte = marker_byte_position (pos);
1247 if (pos_byte <= BEGV_BYTE || pos_byte > ZV_BYTE)
1248 return Qnil;
1250 else
1252 CHECK_NUMBER_COERCE_MARKER (pos);
1254 if (XINT (pos) <= BEGV || XINT (pos) > ZV)
1255 return Qnil;
1257 pos_byte = CHAR_TO_BYTE (XINT (pos));
1260 if (!NILP (current_buffer->enable_multibyte_characters))
1262 DEC_POS (pos_byte);
1263 XSETFASTINT (val, FETCH_CHAR (pos_byte));
1265 else
1267 pos_byte--;
1268 XSETFASTINT (val, FETCH_BYTE (pos_byte));
1270 return val;
1273 DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 1, 0,
1274 doc: /* Return the name under which the user logged in, as a string.
1275 This is based on the effective uid, not the real uid.
1276 Also, if the environment variables LOGNAME or USER are set,
1277 that determines the value of this function.
1279 If optional argument UID is an integer, return the login name of the user
1280 with that uid, or nil if there is no such user. */)
1281 (uid)
1282 Lisp_Object uid;
1284 struct passwd *pw;
1286 /* Set up the user name info if we didn't do it before.
1287 (That can happen if Emacs is dumpable
1288 but you decide to run `temacs -l loadup' and not dump. */
1289 if (INTEGERP (Vuser_login_name))
1290 init_editfns ();
1292 if (NILP (uid))
1293 return Vuser_login_name;
1295 CHECK_NUMBER (uid);
1296 BLOCK_INPUT;
1297 pw = (struct passwd *) getpwuid (XINT (uid));
1298 UNBLOCK_INPUT;
1299 return (pw ? build_string (pw->pw_name) : Qnil);
1302 DEFUN ("user-real-login-name", Fuser_real_login_name, Suser_real_login_name,
1303 0, 0, 0,
1304 doc: /* Return the name of the user's real uid, as a string.
1305 This ignores the environment variables LOGNAME and USER, so it differs from
1306 `user-login-name' when running under `su'. */)
1309 /* Set up the user name info if we didn't do it before.
1310 (That can happen if Emacs is dumpable
1311 but you decide to run `temacs -l loadup' and not dump. */
1312 if (INTEGERP (Vuser_login_name))
1313 init_editfns ();
1314 return Vuser_real_login_name;
1317 DEFUN ("user-uid", Fuser_uid, Suser_uid, 0, 0, 0,
1318 doc: /* Return the effective uid of Emacs.
1319 Value is an integer or float, depending on the value. */)
1322 /* Assignment to EMACS_INT stops GCC whining about limited range of
1323 data type. */
1324 EMACS_INT euid = geteuid ();
1325 return make_fixnum_or_float (euid);
1328 DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0,
1329 doc: /* Return the real uid of Emacs.
1330 Value is an integer or float, depending on the value. */)
1333 /* Assignment to EMACS_INT stops GCC whining about limited range of
1334 data type. */
1335 EMACS_INT uid = getuid ();
1336 return make_fixnum_or_float (uid);
1339 DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 1, 0,
1340 doc: /* Return the full name of the user logged in, as a string.
1341 If the full name corresponding to Emacs's userid is not known,
1342 return "unknown".
1344 If optional argument UID is an integer or float, return the full name
1345 of the user with that uid, or nil if there is no such user.
1346 If UID is a string, return the full name of the user with that login
1347 name, or nil if there is no such user. */)
1348 (uid)
1349 Lisp_Object uid;
1351 struct passwd *pw;
1352 register unsigned char *p, *q;
1353 Lisp_Object full;
1355 if (NILP (uid))
1356 return Vuser_full_name;
1357 else if (NUMBERP (uid))
1359 BLOCK_INPUT;
1360 pw = (struct passwd *) getpwuid ((uid_t) XFLOATINT (uid));
1361 UNBLOCK_INPUT;
1363 else if (STRINGP (uid))
1365 BLOCK_INPUT;
1366 pw = (struct passwd *) getpwnam (SDATA (uid));
1367 UNBLOCK_INPUT;
1369 else
1370 error ("Invalid UID specification");
1372 if (!pw)
1373 return Qnil;
1375 p = (unsigned char *) USER_FULL_NAME;
1376 /* Chop off everything after the first comma. */
1377 q = (unsigned char *) index (p, ',');
1378 full = make_string (p, q ? q - p : strlen (p));
1380 #ifdef AMPERSAND_FULL_NAME
1381 p = SDATA (full);
1382 q = (unsigned char *) index (p, '&');
1383 /* Substitute the login name for the &, upcasing the first character. */
1384 if (q)
1386 register unsigned char *r;
1387 Lisp_Object login;
1389 login = Fuser_login_name (make_number (pw->pw_uid));
1390 r = (unsigned char *) alloca (strlen (p) + SCHARS (login) + 1);
1391 bcopy (p, r, q - p);
1392 r[q - p] = 0;
1393 strcat (r, SDATA (login));
1394 r[q - p] = UPCASE (r[q - p]);
1395 strcat (r, q + 1);
1396 full = build_string (r);
1398 #endif /* AMPERSAND_FULL_NAME */
1400 return full;
1403 DEFUN ("system-name", Fsystem_name, Ssystem_name, 0, 0, 0,
1404 doc: /* Return the host name of the machine you are running on, as a string. */)
1407 return Vsystem_name;
1410 /* For the benefit of callers who don't want to include lisp.h */
1412 char *
1413 get_system_name ()
1415 if (STRINGP (Vsystem_name))
1416 return (char *) SDATA (Vsystem_name);
1417 else
1418 return "";
1421 char *
1422 get_operating_system_release()
1424 if (STRINGP (Voperating_system_release))
1425 return (char *) SDATA (Voperating_system_release);
1426 else
1427 return "";
1430 DEFUN ("emacs-pid", Femacs_pid, Semacs_pid, 0, 0, 0,
1431 doc: /* Return the process ID of Emacs, as an integer. */)
1434 return make_number (getpid ());
1437 DEFUN ("current-time", Fcurrent_time, Scurrent_time, 0, 0, 0,
1438 doc: /* Return the current time, as the number of seconds since 1970-01-01 00:00:00.
1439 The time is returned as a list of three integers. The first has the
1440 most significant 16 bits of the seconds, while the second has the
1441 least significant 16 bits. The third integer gives the microsecond
1442 count.
1444 The microsecond count is zero on systems that do not provide
1445 resolution finer than a second. */)
1448 EMACS_TIME t;
1450 EMACS_GET_TIME (t);
1451 return list3 (make_number ((EMACS_SECS (t) >> 16) & 0xffff),
1452 make_number ((EMACS_SECS (t) >> 0) & 0xffff),
1453 make_number (EMACS_USECS (t)));
1456 DEFUN ("get-internal-run-time", Fget_internal_run_time, Sget_internal_run_time,
1457 0, 0, 0,
1458 doc: /* Return the current run time used by Emacs.
1459 The time is returned as a list of three integers. The first has the
1460 most significant 16 bits of the seconds, while the second has the
1461 least significant 16 bits. The third integer gives the microsecond
1462 count.
1464 On systems that can't determine the run time, `get-internal-run-time'
1465 does the same thing as `current-time'. The microsecond count is zero
1466 on systems that do not provide resolution finer than a second. */)
1469 #ifdef HAVE_GETRUSAGE
1470 struct rusage usage;
1471 int secs, usecs;
1473 if (getrusage (RUSAGE_SELF, &usage) < 0)
1474 /* This shouldn't happen. What action is appropriate? */
1475 xsignal0 (Qerror);
1477 /* Sum up user time and system time. */
1478 secs = usage.ru_utime.tv_sec + usage.ru_stime.tv_sec;
1479 usecs = usage.ru_utime.tv_usec + usage.ru_stime.tv_usec;
1480 if (usecs >= 1000000)
1482 usecs -= 1000000;
1483 secs++;
1486 return list3 (make_number ((secs >> 16) & 0xffff),
1487 make_number ((secs >> 0) & 0xffff),
1488 make_number (usecs));
1489 #else /* ! HAVE_GETRUSAGE */
1490 #if WINDOWSNT
1491 return w32_get_internal_run_time ();
1492 #else /* ! WINDOWSNT */
1493 return Fcurrent_time ();
1494 #endif /* WINDOWSNT */
1495 #endif /* HAVE_GETRUSAGE */
1500 lisp_time_argument (specified_time, result, usec)
1501 Lisp_Object specified_time;
1502 time_t *result;
1503 int *usec;
1505 if (NILP (specified_time))
1507 if (usec)
1509 EMACS_TIME t;
1511 EMACS_GET_TIME (t);
1512 *usec = EMACS_USECS (t);
1513 *result = EMACS_SECS (t);
1514 return 1;
1516 else
1517 return time (result) != -1;
1519 else
1521 Lisp_Object high, low;
1522 high = Fcar (specified_time);
1523 CHECK_NUMBER (high);
1524 low = Fcdr (specified_time);
1525 if (CONSP (low))
1527 if (usec)
1529 Lisp_Object usec_l = Fcdr (low);
1530 if (CONSP (usec_l))
1531 usec_l = Fcar (usec_l);
1532 if (NILP (usec_l))
1533 *usec = 0;
1534 else
1536 CHECK_NUMBER (usec_l);
1537 *usec = XINT (usec_l);
1540 low = Fcar (low);
1542 else if (usec)
1543 *usec = 0;
1544 CHECK_NUMBER (low);
1545 *result = (XINT (high) << 16) + (XINT (low) & 0xffff);
1546 return *result >> 16 == XINT (high);
1550 DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0,
1551 doc: /* Return the current time, as a float number of seconds since the epoch.
1552 If SPECIFIED-TIME is given, it is the time to convert to float
1553 instead of the current time. The argument should have the form
1554 (HIGH LOW . IGNORED). Thus, you can use times obtained from
1555 `current-time' and from `file-attributes'. SPECIFIED-TIME can also
1556 have the form (HIGH . LOW), but this is considered obsolete.
1558 WARNING: Since the result is floating point, it may not be exact.
1559 Do not use this function if precise time stamps are required. */)
1560 (specified_time)
1561 Lisp_Object specified_time;
1563 time_t sec;
1564 int usec;
1566 if (! lisp_time_argument (specified_time, &sec, &usec))
1567 error ("Invalid time specification");
1569 return make_float ((sec * 1e6 + usec) / 1e6);
1572 /* Write information into buffer S of size MAXSIZE, according to the
1573 FORMAT of length FORMAT_LEN, using time information taken from *TP.
1574 Default to Universal Time if UT is nonzero, local time otherwise.
1575 Return the number of bytes written, not including the terminating
1576 '\0'. If S is NULL, nothing will be written anywhere; so to
1577 determine how many bytes would be written, use NULL for S and
1578 ((size_t) -1) for MAXSIZE.
1580 This function behaves like emacs_strftimeu, except it allows null
1581 bytes in FORMAT. */
1582 static size_t
1583 emacs_memftimeu (s, maxsize, format, format_len, tp, ut)
1584 char *s;
1585 size_t maxsize;
1586 const char *format;
1587 size_t format_len;
1588 const struct tm *tp;
1589 int ut;
1591 size_t total = 0;
1593 /* Loop through all the null-terminated strings in the format
1594 argument. Normally there's just one null-terminated string, but
1595 there can be arbitrarily many, concatenated together, if the
1596 format contains '\0' bytes. emacs_strftimeu stops at the first
1597 '\0' byte so we must invoke it separately for each such string. */
1598 for (;;)
1600 size_t len;
1601 size_t result;
1603 if (s)
1604 s[0] = '\1';
1606 result = emacs_strftimeu (s, maxsize, format, tp, ut);
1608 if (s)
1610 if (result == 0 && s[0] != '\0')
1611 return 0;
1612 s += result + 1;
1615 maxsize -= result + 1;
1616 total += result;
1617 len = strlen (format);
1618 if (len == format_len)
1619 return total;
1620 total++;
1621 format += len + 1;
1622 format_len -= len + 1;
1626 DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string, 1, 3, 0,
1627 doc: /* Use FORMAT-STRING to format the time TIME, or now if omitted.
1628 TIME is specified as (HIGH LOW . IGNORED), as returned by
1629 `current-time' or `file-attributes'. The obsolete form (HIGH . LOW)
1630 is also still accepted.
1631 The third, optional, argument UNIVERSAL, if non-nil, means describe TIME
1632 as Universal Time; nil means describe TIME in the local time zone.
1633 The value is a copy of FORMAT-STRING, but with certain constructs replaced
1634 by text that describes the specified date and time in TIME:
1636 %Y is the year, %y within the century, %C the century.
1637 %G is the year corresponding to the ISO week, %g within the century.
1638 %m is the numeric month.
1639 %b and %h are the locale's abbreviated month name, %B the full name.
1640 %d is the day of the month, zero-padded, %e is blank-padded.
1641 %u is the numeric day of week from 1 (Monday) to 7, %w from 0 (Sunday) to 6.
1642 %a is the locale's abbreviated name of the day of week, %A the full name.
1643 %U is the week number starting on Sunday, %W starting on Monday,
1644 %V according to ISO 8601.
1645 %j is the day of the year.
1647 %H is the hour on a 24-hour clock, %I is on a 12-hour clock, %k is like %H
1648 only blank-padded, %l is like %I blank-padded.
1649 %p is the locale's equivalent of either AM or PM.
1650 %M is the minute.
1651 %S is the second.
1652 %Z is the time zone name, %z is the numeric form.
1653 %s is the number of seconds since 1970-01-01 00:00:00 +0000.
1655 %c is the locale's date and time format.
1656 %x is the locale's "preferred" date format.
1657 %D is like "%m/%d/%y".
1659 %R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p".
1660 %X is the locale's "preferred" time format.
1662 Finally, %n is a newline, %t is a tab, %% is a literal %.
1664 Certain flags and modifiers are available with some format controls.
1665 The flags are `_', `-', `^' and `#'. For certain characters X,
1666 %_X is like %X, but padded with blanks; %-X is like %X,
1667 but without padding. %^X is like %X, but with all textual
1668 characters up-cased; %#X is like %X, but with letter-case of
1669 all textual characters reversed.
1670 %NX (where N stands for an integer) is like %X,
1671 but takes up at least N (a number) positions.
1672 The modifiers are `E' and `O'. For certain characters X,
1673 %EX is a locale's alternative version of %X;
1674 %OX is like %X, but uses the locale's number symbols.
1676 For example, to produce full ISO 8601 format, use "%Y-%m-%dT%T%z". */)
1677 (format_string, time, universal)
1678 Lisp_Object format_string, time, universal;
1680 time_t value;
1681 int size;
1682 struct tm *tm;
1683 int ut = ! NILP (universal);
1685 CHECK_STRING (format_string);
1687 if (! lisp_time_argument (time, &value, NULL))
1688 error ("Invalid time specification");
1690 format_string = code_convert_string_norecord (format_string,
1691 Vlocale_coding_system, 1);
1693 /* This is probably enough. */
1694 size = SBYTES (format_string) * 6 + 50;
1696 BLOCK_INPUT;
1697 tm = ut ? gmtime (&value) : localtime (&value);
1698 UNBLOCK_INPUT;
1699 if (! tm)
1700 error ("Specified time is not representable");
1702 synchronize_system_time_locale ();
1704 while (1)
1706 char *buf = (char *) alloca (size + 1);
1707 int result;
1709 buf[0] = '\1';
1710 BLOCK_INPUT;
1711 result = emacs_memftimeu (buf, size, SDATA (format_string),
1712 SBYTES (format_string),
1713 tm, ut);
1714 UNBLOCK_INPUT;
1715 if ((result > 0 && result < size) || (result == 0 && buf[0] == '\0'))
1716 return code_convert_string_norecord (make_unibyte_string (buf, result),
1717 Vlocale_coding_system, 0);
1719 /* If buffer was too small, make it bigger and try again. */
1720 BLOCK_INPUT;
1721 result = emacs_memftimeu (NULL, (size_t) -1,
1722 SDATA (format_string),
1723 SBYTES (format_string),
1724 tm, ut);
1725 UNBLOCK_INPUT;
1726 size = result + 1;
1730 DEFUN ("decode-time", Fdecode_time, Sdecode_time, 0, 1, 0,
1731 doc: /* Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).
1732 The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED),
1733 as from `current-time' and `file-attributes', or nil to use the
1734 current time. The obsolete form (HIGH . LOW) is also still accepted.
1735 The list has the following nine members: SEC is an integer between 0
1736 and 60; SEC is 60 for a leap second, which only some operating systems
1737 support. MINUTE is an integer between 0 and 59. HOUR is an integer
1738 between 0 and 23. DAY is an integer between 1 and 31. MONTH is an
1739 integer between 1 and 12. YEAR is an integer indicating the
1740 four-digit year. DOW is the day of week, an integer between 0 and 6,
1741 where 0 is Sunday. DST is t if daylight saving time is in effect,
1742 otherwise nil. ZONE is an integer indicating the number of seconds
1743 east of Greenwich. (Note that Common Lisp has different meanings for
1744 DOW and ZONE.) */)
1745 (specified_time)
1746 Lisp_Object specified_time;
1748 time_t time_spec;
1749 struct tm save_tm;
1750 struct tm *decoded_time;
1751 Lisp_Object list_args[9];
1753 if (! lisp_time_argument (specified_time, &time_spec, NULL))
1754 error ("Invalid time specification");
1756 BLOCK_INPUT;
1757 decoded_time = localtime (&time_spec);
1758 UNBLOCK_INPUT;
1759 if (! decoded_time)
1760 error ("Specified time is not representable");
1761 XSETFASTINT (list_args[0], decoded_time->tm_sec);
1762 XSETFASTINT (list_args[1], decoded_time->tm_min);
1763 XSETFASTINT (list_args[2], decoded_time->tm_hour);
1764 XSETFASTINT (list_args[3], decoded_time->tm_mday);
1765 XSETFASTINT (list_args[4], decoded_time->tm_mon + 1);
1766 /* On 64-bit machines an int is narrower than EMACS_INT, thus the
1767 cast below avoids overflow in int arithmetics. */
1768 XSETINT (list_args[5], TM_YEAR_BASE + (EMACS_INT) decoded_time->tm_year);
1769 XSETFASTINT (list_args[6], decoded_time->tm_wday);
1770 list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil;
1772 /* Make a copy, in case gmtime modifies the struct. */
1773 save_tm = *decoded_time;
1774 BLOCK_INPUT;
1775 decoded_time = gmtime (&time_spec);
1776 UNBLOCK_INPUT;
1777 if (decoded_time == 0)
1778 list_args[8] = Qnil;
1779 else
1780 XSETINT (list_args[8], tm_diff (&save_tm, decoded_time));
1781 return Flist (9, list_args);
1784 DEFUN ("encode-time", Fencode_time, Sencode_time, 6, MANY, 0,
1785 doc: /* Convert SECOND, MINUTE, HOUR, DAY, MONTH, YEAR and ZONE to internal time.
1786 This is the reverse operation of `decode-time', which see.
1787 ZONE defaults to the current time zone rule. This can
1788 be a string or t (as from `set-time-zone-rule'), or it can be a list
1789 \(as from `current-time-zone') or an integer (as from `decode-time')
1790 applied without consideration for daylight saving time.
1792 You can pass more than 7 arguments; then the first six arguments
1793 are used as SECOND through YEAR, and the *last* argument is used as ZONE.
1794 The intervening arguments are ignored.
1795 This feature lets (apply 'encode-time (decode-time ...)) work.
1797 Out-of-range values for SECOND, MINUTE, HOUR, DAY, or MONTH are allowed;
1798 for example, a DAY of 0 means the day preceding the given month.
1799 Year numbers less than 100 are treated just like other year numbers.
1800 If you want them to stand for years in this century, you must do that yourself.
1802 Years before 1970 are not guaranteed to work. On some systems,
1803 year values as low as 1901 do work.
1805 usage: (encode-time SECOND MINUTE HOUR DAY MONTH YEAR &optional ZONE) */)
1806 (nargs, args)
1807 int nargs;
1808 register Lisp_Object *args;
1810 time_t time;
1811 struct tm tm;
1812 Lisp_Object zone = (nargs > 6 ? args[nargs - 1] : Qnil);
1814 CHECK_NUMBER (args[0]); /* second */
1815 CHECK_NUMBER (args[1]); /* minute */
1816 CHECK_NUMBER (args[2]); /* hour */
1817 CHECK_NUMBER (args[3]); /* day */
1818 CHECK_NUMBER (args[4]); /* month */
1819 CHECK_NUMBER (args[5]); /* year */
1821 tm.tm_sec = XINT (args[0]);
1822 tm.tm_min = XINT (args[1]);
1823 tm.tm_hour = XINT (args[2]);
1824 tm.tm_mday = XINT (args[3]);
1825 tm.tm_mon = XINT (args[4]) - 1;
1826 tm.tm_year = XINT (args[5]) - TM_YEAR_BASE;
1827 tm.tm_isdst = -1;
1829 if (CONSP (zone))
1830 zone = Fcar (zone);
1831 if (NILP (zone))
1833 BLOCK_INPUT;
1834 time = mktime (&tm);
1835 UNBLOCK_INPUT;
1837 else
1839 char tzbuf[100];
1840 char *tzstring;
1841 char **oldenv = environ, **newenv;
1843 if (EQ (zone, Qt))
1844 tzstring = "UTC0";
1845 else if (STRINGP (zone))
1846 tzstring = (char *) SDATA (zone);
1847 else if (INTEGERP (zone))
1849 int abszone = eabs (XINT (zone));
1850 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
1851 abszone / (60*60), (abszone/60) % 60, abszone % 60);
1852 tzstring = tzbuf;
1854 else
1855 error ("Invalid time zone specification");
1857 /* Set TZ before calling mktime; merely adjusting mktime's returned
1858 value doesn't suffice, since that would mishandle leap seconds. */
1859 set_time_zone_rule (tzstring);
1861 BLOCK_INPUT;
1862 time = mktime (&tm);
1863 UNBLOCK_INPUT;
1865 /* Restore TZ to previous value. */
1866 newenv = environ;
1867 environ = oldenv;
1868 xfree (newenv);
1869 #ifdef LOCALTIME_CACHE
1870 tzset ();
1871 #endif
1874 if (time == (time_t) -1)
1875 error ("Specified time is not representable");
1877 return make_time (time);
1880 DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 1, 0,
1881 doc: /* Return the current time, as a human-readable string.
1882 Programs can use this function to decode a time,
1883 since the number of columns in each field is fixed
1884 if the year is in the range 1000-9999.
1885 The format is `Sun Sep 16 01:03:52 1973'.
1886 However, see also the functions `decode-time' and `format-time-string'
1887 which provide a much more powerful and general facility.
1889 If SPECIFIED-TIME is given, it is a time to format instead of the
1890 current time. The argument should have the form (HIGH LOW . IGNORED).
1891 Thus, you can use times obtained from `current-time' and from
1892 `file-attributes'. SPECIFIED-TIME can also have the form (HIGH . LOW),
1893 but this is considered obsolete. */)
1894 (specified_time)
1895 Lisp_Object specified_time;
1897 time_t value;
1898 struct tm *tm;
1899 register char *tem;
1901 if (! lisp_time_argument (specified_time, &value, NULL))
1902 error ("Invalid time specification");
1904 /* Convert to a string, checking for out-of-range time stamps.
1905 Don't use 'ctime', as that might dump core if VALUE is out of
1906 range. */
1907 BLOCK_INPUT;
1908 tm = localtime (&value);
1909 UNBLOCK_INPUT;
1910 if (! (tm && TM_YEAR_IN_ASCTIME_RANGE (tm->tm_year) && (tem = asctime (tm))))
1911 error ("Specified time is not representable");
1913 /* Remove the trailing newline. */
1914 tem[strlen (tem) - 1] = '\0';
1916 return build_string (tem);
1919 /* Yield A - B, measured in seconds.
1920 This function is copied from the GNU C Library. */
1921 static int
1922 tm_diff (a, b)
1923 struct tm *a, *b;
1925 /* Compute intervening leap days correctly even if year is negative.
1926 Take care to avoid int overflow in leap day calculations,
1927 but it's OK to assume that A and B are close to each other. */
1928 int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3);
1929 int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3);
1930 int a100 = a4 / 25 - (a4 % 25 < 0);
1931 int b100 = b4 / 25 - (b4 % 25 < 0);
1932 int a400 = a100 >> 2;
1933 int b400 = b100 >> 2;
1934 int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);
1935 int years = a->tm_year - b->tm_year;
1936 int days = (365 * years + intervening_leap_days
1937 + (a->tm_yday - b->tm_yday));
1938 return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour))
1939 + (a->tm_min - b->tm_min))
1940 + (a->tm_sec - b->tm_sec));
1943 DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 1, 0,
1944 doc: /* Return the offset and name for the local time zone.
1945 This returns a list of the form (OFFSET NAME).
1946 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
1947 A negative value means west of Greenwich.
1948 NAME is a string giving the name of the time zone.
1949 If SPECIFIED-TIME is given, the time zone offset is determined from it
1950 instead of using the current time. The argument should have the form
1951 (HIGH LOW . IGNORED). Thus, you can use times obtained from
1952 `current-time' and from `file-attributes'. SPECIFIED-TIME can also
1953 have the form (HIGH . LOW), but this is considered obsolete.
1955 Some operating systems cannot provide all this information to Emacs;
1956 in this case, `current-time-zone' returns a list containing nil for
1957 the data it can't find. */)
1958 (specified_time)
1959 Lisp_Object specified_time;
1961 time_t value;
1962 struct tm *t;
1963 struct tm gmt;
1965 if (!lisp_time_argument (specified_time, &value, NULL))
1966 t = NULL;
1967 else
1969 BLOCK_INPUT;
1970 t = gmtime (&value);
1971 if (t)
1973 gmt = *t;
1974 t = localtime (&value);
1976 UNBLOCK_INPUT;
1979 if (t)
1981 int offset = tm_diff (t, &gmt);
1982 char *s = 0;
1983 char buf[6];
1985 #ifdef HAVE_TM_ZONE
1986 if (t->tm_zone)
1987 s = (char *)t->tm_zone;
1988 #else /* not HAVE_TM_ZONE */
1989 #ifdef HAVE_TZNAME
1990 if (t->tm_isdst == 0 || t->tm_isdst == 1)
1991 s = tzname[t->tm_isdst];
1992 #endif
1993 #endif /* not HAVE_TM_ZONE */
1995 if (!s)
1997 /* No local time zone name is available; use "+-NNNN" instead. */
1998 int am = (offset < 0 ? -offset : offset) / 60;
1999 sprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60, am%60);
2000 s = buf;
2003 return Fcons (make_number (offset), Fcons (build_string (s), Qnil));
2005 else
2006 return Fmake_list (make_number (2), Qnil);
2009 /* This holds the value of `environ' produced by the previous
2010 call to Fset_time_zone_rule, or 0 if Fset_time_zone_rule
2011 has never been called. */
2012 static char **environbuf;
2014 /* This holds the startup value of the TZ environment variable so it
2015 can be restored if the user calls set-time-zone-rule with a nil
2016 argument. */
2017 static char *initial_tz;
2019 DEFUN ("set-time-zone-rule", Fset_time_zone_rule, Sset_time_zone_rule, 1, 1, 0,
2020 doc: /* Set the local time zone using TZ, a string specifying a time zone rule.
2021 If TZ is nil, use implementation-defined default time zone information.
2022 If TZ is t, use Universal Time. */)
2023 (tz)
2024 Lisp_Object tz;
2026 char *tzstring;
2028 /* When called for the first time, save the original TZ. */
2029 if (!environbuf)
2030 initial_tz = (char *) getenv ("TZ");
2032 if (NILP (tz))
2033 tzstring = initial_tz;
2034 else if (EQ (tz, Qt))
2035 tzstring = "UTC0";
2036 else
2038 CHECK_STRING (tz);
2039 tzstring = (char *) SDATA (tz);
2042 set_time_zone_rule (tzstring);
2043 if (environbuf)
2044 free (environbuf);
2045 environbuf = environ;
2047 return Qnil;
2050 #ifdef LOCALTIME_CACHE
2052 /* These two values are known to load tz files in buggy implementations,
2053 i.e. Solaris 1 executables running under either Solaris 1 or Solaris 2.
2054 Their values shouldn't matter in non-buggy implementations.
2055 We don't use string literals for these strings,
2056 since if a string in the environment is in readonly
2057 storage, it runs afoul of bugs in SVR4 and Solaris 2.3.
2058 See Sun bugs 1113095 and 1114114, ``Timezone routines
2059 improperly modify environment''. */
2061 static char set_time_zone_rule_tz1[] = "TZ=GMT+0";
2062 static char set_time_zone_rule_tz2[] = "TZ=GMT+1";
2064 #endif
2066 /* Set the local time zone rule to TZSTRING.
2067 This allocates memory into `environ', which it is the caller's
2068 responsibility to free. */
2070 void
2071 set_time_zone_rule (tzstring)
2072 char *tzstring;
2074 int envptrs;
2075 char **from, **to, **newenv;
2077 /* Make the ENVIRON vector longer with room for TZSTRING. */
2078 for (from = environ; *from; from++)
2079 continue;
2080 envptrs = from - environ + 2;
2081 newenv = to = (char **) xmalloc (envptrs * sizeof (char *)
2082 + (tzstring ? strlen (tzstring) + 4 : 0));
2084 /* Add TZSTRING to the end of environ, as a value for TZ. */
2085 if (tzstring)
2087 char *t = (char *) (to + envptrs);
2088 strcpy (t, "TZ=");
2089 strcat (t, tzstring);
2090 *to++ = t;
2093 /* Copy the old environ vector elements into NEWENV,
2094 but don't copy the TZ variable.
2095 So we have only one definition of TZ, which came from TZSTRING. */
2096 for (from = environ; *from; from++)
2097 if (strncmp (*from, "TZ=", 3) != 0)
2098 *to++ = *from;
2099 *to = 0;
2101 environ = newenv;
2103 /* If we do have a TZSTRING, NEWENV points to the vector slot where
2104 the TZ variable is stored. If we do not have a TZSTRING,
2105 TO points to the vector slot which has the terminating null. */
2107 #ifdef LOCALTIME_CACHE
2109 /* In SunOS 4.1.3_U1 and 4.1.4, if TZ has a value like
2110 "US/Pacific" that loads a tz file, then changes to a value like
2111 "XXX0" that does not load a tz file, and then changes back to
2112 its original value, the last change is (incorrectly) ignored.
2113 Also, if TZ changes twice in succession to values that do
2114 not load a tz file, tzset can dump core (see Sun bug#1225179).
2115 The following code works around these bugs. */
2117 if (tzstring)
2119 /* Temporarily set TZ to a value that loads a tz file
2120 and that differs from tzstring. */
2121 char *tz = *newenv;
2122 *newenv = (strcmp (tzstring, set_time_zone_rule_tz1 + 3) == 0
2123 ? set_time_zone_rule_tz2 : set_time_zone_rule_tz1);
2124 tzset ();
2125 *newenv = tz;
2127 else
2129 /* The implied tzstring is unknown, so temporarily set TZ to
2130 two different values that each load a tz file. */
2131 *to = set_time_zone_rule_tz1;
2132 to[1] = 0;
2133 tzset ();
2134 *to = set_time_zone_rule_tz2;
2135 tzset ();
2136 *to = 0;
2139 /* Now TZ has the desired value, and tzset can be invoked safely. */
2142 tzset ();
2143 #endif
2146 /* Insert NARGS Lisp objects in the array ARGS by calling INSERT_FUNC
2147 (if a type of object is Lisp_Int) or INSERT_FROM_STRING_FUNC (if a
2148 type of object is Lisp_String). INHERIT is passed to
2149 INSERT_FROM_STRING_FUNC as the last argument. */
2151 static void
2152 general_insert_function (insert_func, insert_from_string_func,
2153 inherit, nargs, args)
2154 void (*insert_func) P_ ((const unsigned char *, int));
2155 void (*insert_from_string_func) P_ ((Lisp_Object, int, int, int, int, int));
2156 int inherit, nargs;
2157 register Lisp_Object *args;
2159 register int argnum;
2160 register Lisp_Object val;
2162 for (argnum = 0; argnum < nargs; argnum++)
2164 val = args[argnum];
2165 if (CHARACTERP (val))
2167 unsigned char str[MAX_MULTIBYTE_LENGTH];
2168 int len;
2170 if (!NILP (current_buffer->enable_multibyte_characters))
2171 len = CHAR_STRING (XFASTINT (val), str);
2172 else
2174 str[0] = (ASCII_CHAR_P (XINT (val))
2175 ? XINT (val)
2176 : multibyte_char_to_unibyte (XINT (val), Qnil));
2177 len = 1;
2179 (*insert_func) (str, len);
2181 else if (STRINGP (val))
2183 (*insert_from_string_func) (val, 0, 0,
2184 SCHARS (val),
2185 SBYTES (val),
2186 inherit);
2188 else
2189 wrong_type_argument (Qchar_or_string_p, val);
2193 void
2194 insert1 (arg)
2195 Lisp_Object arg;
2197 Finsert (1, &arg);
2201 /* Callers passing one argument to Finsert need not gcpro the
2202 argument "array", since the only element of the array will
2203 not be used after calling insert or insert_from_string, so
2204 we don't care if it gets trashed. */
2206 DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0,
2207 doc: /* Insert the arguments, either strings or characters, at point.
2208 Point and before-insertion markers move forward to end up
2209 after the inserted text.
2210 Any other markers at the point of insertion remain before the text.
2212 If the current buffer is multibyte, unibyte strings are converted
2213 to multibyte for insertion (see `string-make-multibyte').
2214 If the current buffer is unibyte, multibyte strings are converted
2215 to unibyte for insertion (see `string-make-unibyte').
2217 When operating on binary data, it may be necessary to preserve the
2218 original bytes of a unibyte string when inserting it into a multibyte
2219 buffer; to accomplish this, apply `string-as-multibyte' to the string
2220 and insert the result.
2222 usage: (insert &rest ARGS) */)
2223 (nargs, args)
2224 int nargs;
2225 register Lisp_Object *args;
2227 general_insert_function (insert, insert_from_string, 0, nargs, args);
2228 return Qnil;
2231 DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit,
2232 0, MANY, 0,
2233 doc: /* Insert the arguments at point, inheriting properties from adjoining text.
2234 Point and before-insertion markers move forward to end up
2235 after the inserted text.
2236 Any other markers at the point of insertion remain before the text.
2238 If the current buffer is multibyte, unibyte strings are converted
2239 to multibyte for insertion (see `unibyte-char-to-multibyte').
2240 If the current buffer is unibyte, multibyte strings are converted
2241 to unibyte for insertion.
2243 usage: (insert-and-inherit &rest ARGS) */)
2244 (nargs, args)
2245 int nargs;
2246 register Lisp_Object *args;
2248 general_insert_function (insert_and_inherit, insert_from_string, 1,
2249 nargs, args);
2250 return Qnil;
2253 DEFUN ("insert-before-markers", Finsert_before_markers, Sinsert_before_markers, 0, MANY, 0,
2254 doc: /* Insert strings or characters at point, relocating markers after the text.
2255 Point and markers move forward to end up after the inserted text.
2257 If the current buffer is multibyte, unibyte strings are converted
2258 to multibyte for insertion (see `unibyte-char-to-multibyte').
2259 If the current buffer is unibyte, multibyte strings are converted
2260 to unibyte for insertion.
2262 usage: (insert-before-markers &rest ARGS) */)
2263 (nargs, args)
2264 int nargs;
2265 register Lisp_Object *args;
2267 general_insert_function (insert_before_markers,
2268 insert_from_string_before_markers, 0,
2269 nargs, args);
2270 return Qnil;
2273 DEFUN ("insert-before-markers-and-inherit", Finsert_and_inherit_before_markers,
2274 Sinsert_and_inherit_before_markers, 0, MANY, 0,
2275 doc: /* Insert text at point, relocating markers and inheriting properties.
2276 Point and markers move forward to end up after the inserted text.
2278 If the current buffer is multibyte, unibyte strings are converted
2279 to multibyte for insertion (see `unibyte-char-to-multibyte').
2280 If the current buffer is unibyte, multibyte strings are converted
2281 to unibyte for insertion.
2283 usage: (insert-before-markers-and-inherit &rest ARGS) */)
2284 (nargs, args)
2285 int nargs;
2286 register Lisp_Object *args;
2288 general_insert_function (insert_before_markers_and_inherit,
2289 insert_from_string_before_markers, 1,
2290 nargs, args);
2291 return Qnil;
2294 DEFUN ("insert-char", Finsert_char, Sinsert_char, 2, 3, 0,
2295 doc: /* Insert COUNT copies of CHARACTER.
2296 Point, and before-insertion markers, are relocated as in the function `insert'.
2297 The optional third arg INHERIT, if non-nil, says to inherit text properties
2298 from adjoining text, if those properties are sticky. */)
2299 (character, count, inherit)
2300 Lisp_Object character, count, inherit;
2302 register unsigned char *string;
2303 register int strlen;
2304 register int i, n;
2305 int len;
2306 unsigned char str[MAX_MULTIBYTE_LENGTH];
2308 CHECK_NUMBER (character);
2309 CHECK_NUMBER (count);
2311 if (!NILP (current_buffer->enable_multibyte_characters))
2312 len = CHAR_STRING (XFASTINT (character), str);
2313 else
2314 str[0] = XFASTINT (character), len = 1;
2315 n = XINT (count) * len;
2316 if (n <= 0)
2317 return Qnil;
2318 strlen = min (n, 256 * len);
2319 string = (unsigned char *) alloca (strlen);
2320 for (i = 0; i < strlen; i++)
2321 string[i] = str[i % len];
2322 while (n >= strlen)
2324 QUIT;
2325 if (!NILP (inherit))
2326 insert_and_inherit (string, strlen);
2327 else
2328 insert (string, strlen);
2329 n -= strlen;
2331 if (n > 0)
2333 if (!NILP (inherit))
2334 insert_and_inherit (string, n);
2335 else
2336 insert (string, n);
2338 return Qnil;
2341 DEFUN ("insert-byte", Finsert_byte, Sinsert_byte, 2, 3, 0,
2342 doc: /* Insert COUNT (second arg) copies of BYTE (first arg).
2343 Both arguments are required.
2344 BYTE is a number of the range 0..255.
2346 If BYTE is 128..255 and the current buffer is multibyte, the
2347 corresponding eight-bit character is inserted.
2349 Point, and before-insertion markers, are relocated as in the function `insert'.
2350 The optional third arg INHERIT, if non-nil, says to inherit text properties
2351 from adjoining text, if those properties are sticky. */)
2352 (byte, count, inherit)
2353 Lisp_Object byte, count, inherit;
2355 CHECK_NUMBER (byte);
2356 if (XINT (byte) < 0 || XINT (byte) > 255)
2357 args_out_of_range_3 (byte, make_number (0), make_number (255));
2358 if (XINT (byte) >= 128
2359 && ! NILP (current_buffer->enable_multibyte_characters))
2360 XSETFASTINT (byte, BYTE8_TO_CHAR (XINT (byte)));
2361 return Finsert_char (byte, count, inherit);
2365 /* Making strings from buffer contents. */
2367 /* Return a Lisp_String containing the text of the current buffer from
2368 START to END. If text properties are in use and the current buffer
2369 has properties in the range specified, the resulting string will also
2370 have them, if PROPS is nonzero.
2372 We don't want to use plain old make_string here, because it calls
2373 make_uninit_string, which can cause the buffer arena to be
2374 compacted. make_string has no way of knowing that the data has
2375 been moved, and thus copies the wrong data into the string. This
2376 doesn't effect most of the other users of make_string, so it should
2377 be left as is. But we should use this function when conjuring
2378 buffer substrings. */
2380 Lisp_Object
2381 make_buffer_string (start, end, props)
2382 int start, end;
2383 int props;
2385 int start_byte = CHAR_TO_BYTE (start);
2386 int end_byte = CHAR_TO_BYTE (end);
2388 return make_buffer_string_both (start, start_byte, end, end_byte, props);
2391 /* Return a Lisp_String containing the text of the current buffer from
2392 START / START_BYTE to END / END_BYTE.
2394 If text properties are in use and the current buffer
2395 has properties in the range specified, the resulting string will also
2396 have them, if PROPS is nonzero.
2398 We don't want to use plain old make_string here, because it calls
2399 make_uninit_string, which can cause the buffer arena to be
2400 compacted. make_string has no way of knowing that the data has
2401 been moved, and thus copies the wrong data into the string. This
2402 doesn't effect most of the other users of make_string, so it should
2403 be left as is. But we should use this function when conjuring
2404 buffer substrings. */
2406 Lisp_Object
2407 make_buffer_string_both (start, start_byte, end, end_byte, props)
2408 int start, start_byte, end, end_byte;
2409 int props;
2411 Lisp_Object result, tem, tem1;
2413 if (start < GPT && GPT < end)
2414 move_gap (start);
2416 if (! NILP (current_buffer->enable_multibyte_characters))
2417 result = make_uninit_multibyte_string (end - start, end_byte - start_byte);
2418 else
2419 result = make_uninit_string (end - start);
2420 bcopy (BYTE_POS_ADDR (start_byte), SDATA (result),
2421 end_byte - start_byte);
2423 /* If desired, update and copy the text properties. */
2424 if (props)
2426 update_buffer_properties (start, end);
2428 tem = Fnext_property_change (make_number (start), Qnil, make_number (end));
2429 tem1 = Ftext_properties_at (make_number (start), Qnil);
2431 if (XINT (tem) != end || !NILP (tem1))
2432 copy_intervals_to_string (result, current_buffer, start,
2433 end - start);
2436 return result;
2439 /* Call Vbuffer_access_fontify_functions for the range START ... END
2440 in the current buffer, if necessary. */
2442 static void
2443 update_buffer_properties (start, end)
2444 int start, end;
2446 /* If this buffer has some access functions,
2447 call them, specifying the range of the buffer being accessed. */
2448 if (!NILP (Vbuffer_access_fontify_functions))
2450 Lisp_Object args[3];
2451 Lisp_Object tem;
2453 args[0] = Qbuffer_access_fontify_functions;
2454 XSETINT (args[1], start);
2455 XSETINT (args[2], end);
2457 /* But don't call them if we can tell that the work
2458 has already been done. */
2459 if (!NILP (Vbuffer_access_fontified_property))
2461 tem = Ftext_property_any (args[1], args[2],
2462 Vbuffer_access_fontified_property,
2463 Qnil, Qnil);
2464 if (! NILP (tem))
2465 Frun_hook_with_args (3, args);
2467 else
2468 Frun_hook_with_args (3, args);
2472 DEFUN ("buffer-substring", Fbuffer_substring, Sbuffer_substring, 2, 2, 0,
2473 doc: /* Return the contents of part of the current buffer as a string.
2474 The two arguments START and END are character positions;
2475 they can be in either order.
2476 The string returned is multibyte if the buffer is multibyte.
2478 This function copies the text properties of that part of the buffer
2479 into the result string; if you don't want the text properties,
2480 use `buffer-substring-no-properties' instead. */)
2481 (start, end)
2482 Lisp_Object start, end;
2484 register int b, e;
2486 validate_region (&start, &end);
2487 b = XINT (start);
2488 e = XINT (end);
2490 return make_buffer_string (b, e, 1);
2493 DEFUN ("buffer-substring-no-properties", Fbuffer_substring_no_properties,
2494 Sbuffer_substring_no_properties, 2, 2, 0,
2495 doc: /* Return the characters of part of the buffer, without the text properties.
2496 The two arguments START and END are character positions;
2497 they can be in either order. */)
2498 (start, end)
2499 Lisp_Object start, end;
2501 register int b, e;
2503 validate_region (&start, &end);
2504 b = XINT (start);
2505 e = XINT (end);
2507 return make_buffer_string (b, e, 0);
2510 DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0,
2511 doc: /* Return the contents of the current buffer as a string.
2512 If narrowing is in effect, this function returns only the visible part
2513 of the buffer. */)
2516 return make_buffer_string (BEGV, ZV, 1);
2519 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, Sinsert_buffer_substring,
2520 1, 3, 0,
2521 doc: /* Insert before point a substring of the contents of BUFFER.
2522 BUFFER may be a buffer or a buffer name.
2523 Arguments START and END are character positions specifying the substring.
2524 They default to the values of (point-min) and (point-max) in BUFFER. */)
2525 (buffer, start, end)
2526 Lisp_Object buffer, start, end;
2528 register int b, e, temp;
2529 register struct buffer *bp, *obuf;
2530 Lisp_Object buf;
2532 buf = Fget_buffer (buffer);
2533 if (NILP (buf))
2534 nsberror (buffer);
2535 bp = XBUFFER (buf);
2536 if (NILP (bp->name))
2537 error ("Selecting deleted buffer");
2539 if (NILP (start))
2540 b = BUF_BEGV (bp);
2541 else
2543 CHECK_NUMBER_COERCE_MARKER (start);
2544 b = XINT (start);
2546 if (NILP (end))
2547 e = BUF_ZV (bp);
2548 else
2550 CHECK_NUMBER_COERCE_MARKER (end);
2551 e = XINT (end);
2554 if (b > e)
2555 temp = b, b = e, e = temp;
2557 if (!(BUF_BEGV (bp) <= b && e <= BUF_ZV (bp)))
2558 args_out_of_range (start, end);
2560 obuf = current_buffer;
2561 set_buffer_internal_1 (bp);
2562 update_buffer_properties (b, e);
2563 set_buffer_internal_1 (obuf);
2565 insert_from_buffer (bp, b, e - b, 0);
2566 return Qnil;
2569 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
2570 6, 6, 0,
2571 doc: /* Compare two substrings of two buffers; return result as number.
2572 the value is -N if first string is less after N-1 chars,
2573 +N if first string is greater after N-1 chars, or 0 if strings match.
2574 Each substring is represented as three arguments: BUFFER, START and END.
2575 That makes six args in all, three for each substring.
2577 The value of `case-fold-search' in the current buffer
2578 determines whether case is significant or ignored. */)
2579 (buffer1, start1, end1, buffer2, start2, end2)
2580 Lisp_Object buffer1, start1, end1, buffer2, start2, end2;
2582 register int begp1, endp1, begp2, endp2, temp;
2583 register struct buffer *bp1, *bp2;
2584 register Lisp_Object trt
2585 = (!NILP (current_buffer->case_fold_search)
2586 ? current_buffer->case_canon_table : Qnil);
2587 int chars = 0;
2588 int i1, i2, i1_byte, i2_byte;
2590 /* Find the first buffer and its substring. */
2592 if (NILP (buffer1))
2593 bp1 = current_buffer;
2594 else
2596 Lisp_Object buf1;
2597 buf1 = Fget_buffer (buffer1);
2598 if (NILP (buf1))
2599 nsberror (buffer1);
2600 bp1 = XBUFFER (buf1);
2601 if (NILP (bp1->name))
2602 error ("Selecting deleted buffer");
2605 if (NILP (start1))
2606 begp1 = BUF_BEGV (bp1);
2607 else
2609 CHECK_NUMBER_COERCE_MARKER (start1);
2610 begp1 = XINT (start1);
2612 if (NILP (end1))
2613 endp1 = BUF_ZV (bp1);
2614 else
2616 CHECK_NUMBER_COERCE_MARKER (end1);
2617 endp1 = XINT (end1);
2620 if (begp1 > endp1)
2621 temp = begp1, begp1 = endp1, endp1 = temp;
2623 if (!(BUF_BEGV (bp1) <= begp1
2624 && begp1 <= endp1
2625 && endp1 <= BUF_ZV (bp1)))
2626 args_out_of_range (start1, end1);
2628 /* Likewise for second substring. */
2630 if (NILP (buffer2))
2631 bp2 = current_buffer;
2632 else
2634 Lisp_Object buf2;
2635 buf2 = Fget_buffer (buffer2);
2636 if (NILP (buf2))
2637 nsberror (buffer2);
2638 bp2 = XBUFFER (buf2);
2639 if (NILP (bp2->name))
2640 error ("Selecting deleted buffer");
2643 if (NILP (start2))
2644 begp2 = BUF_BEGV (bp2);
2645 else
2647 CHECK_NUMBER_COERCE_MARKER (start2);
2648 begp2 = XINT (start2);
2650 if (NILP (end2))
2651 endp2 = BUF_ZV (bp2);
2652 else
2654 CHECK_NUMBER_COERCE_MARKER (end2);
2655 endp2 = XINT (end2);
2658 if (begp2 > endp2)
2659 temp = begp2, begp2 = endp2, endp2 = temp;
2661 if (!(BUF_BEGV (bp2) <= begp2
2662 && begp2 <= endp2
2663 && endp2 <= BUF_ZV (bp2)))
2664 args_out_of_range (start2, end2);
2666 i1 = begp1;
2667 i2 = begp2;
2668 i1_byte = buf_charpos_to_bytepos (bp1, i1);
2669 i2_byte = buf_charpos_to_bytepos (bp2, i2);
2671 while (i1 < endp1 && i2 < endp2)
2673 /* When we find a mismatch, we must compare the
2674 characters, not just the bytes. */
2675 int c1, c2;
2677 QUIT;
2679 if (! NILP (bp1->enable_multibyte_characters))
2681 c1 = BUF_FETCH_MULTIBYTE_CHAR (bp1, i1_byte);
2682 BUF_INC_POS (bp1, i1_byte);
2683 i1++;
2685 else
2687 c1 = BUF_FETCH_BYTE (bp1, i1);
2688 c1 = unibyte_char_to_multibyte (c1);
2689 i1++;
2692 if (! NILP (bp2->enable_multibyte_characters))
2694 c2 = BUF_FETCH_MULTIBYTE_CHAR (bp2, i2_byte);
2695 BUF_INC_POS (bp2, i2_byte);
2696 i2++;
2698 else
2700 c2 = BUF_FETCH_BYTE (bp2, i2);
2701 c2 = unibyte_char_to_multibyte (c2);
2702 i2++;
2705 if (!NILP (trt))
2707 c1 = CHAR_TABLE_TRANSLATE (trt, c1);
2708 c2 = CHAR_TABLE_TRANSLATE (trt, c2);
2710 if (c1 < c2)
2711 return make_number (- 1 - chars);
2712 if (c1 > c2)
2713 return make_number (chars + 1);
2715 chars++;
2718 /* The strings match as far as they go.
2719 If one is shorter, that one is less. */
2720 if (chars < endp1 - begp1)
2721 return make_number (chars + 1);
2722 else if (chars < endp2 - begp2)
2723 return make_number (- chars - 1);
2725 /* Same length too => they are equal. */
2726 return make_number (0);
2729 static Lisp_Object
2730 subst_char_in_region_unwind (arg)
2731 Lisp_Object arg;
2733 return current_buffer->undo_list = arg;
2736 static Lisp_Object
2737 subst_char_in_region_unwind_1 (arg)
2738 Lisp_Object arg;
2740 return current_buffer->filename = arg;
2743 DEFUN ("subst-char-in-region", Fsubst_char_in_region,
2744 Ssubst_char_in_region, 4, 5, 0,
2745 doc: /* From START to END, replace FROMCHAR with TOCHAR each time it occurs.
2746 If optional arg NOUNDO is non-nil, don't record this change for undo
2747 and don't mark the buffer as really changed.
2748 Both characters must have the same length of multi-byte form. */)
2749 (start, end, fromchar, tochar, noundo)
2750 Lisp_Object start, end, fromchar, tochar, noundo;
2752 register int pos, pos_byte, stop, i, len, end_byte;
2753 /* Keep track of the first change in the buffer:
2754 if 0 we haven't found it yet.
2755 if < 0 we've found it and we've run the before-change-function.
2756 if > 0 we've actually performed it and the value is its position. */
2757 int changed = 0;
2758 unsigned char fromstr[MAX_MULTIBYTE_LENGTH], tostr[MAX_MULTIBYTE_LENGTH];
2759 unsigned char *p;
2760 int count = SPECPDL_INDEX ();
2761 #define COMBINING_NO 0
2762 #define COMBINING_BEFORE 1
2763 #define COMBINING_AFTER 2
2764 #define COMBINING_BOTH (COMBINING_BEFORE | COMBINING_AFTER)
2765 int maybe_byte_combining = COMBINING_NO;
2766 int last_changed = 0;
2767 int multibyte_p = !NILP (current_buffer->enable_multibyte_characters);
2769 restart:
2771 validate_region (&start, &end);
2772 CHECK_NUMBER (fromchar);
2773 CHECK_NUMBER (tochar);
2775 if (multibyte_p)
2777 len = CHAR_STRING (XFASTINT (fromchar), fromstr);
2778 if (CHAR_STRING (XFASTINT (tochar), tostr) != len)
2779 error ("Characters in `subst-char-in-region' have different byte-lengths");
2780 if (!ASCII_BYTE_P (*tostr))
2782 /* If *TOSTR is in the range 0x80..0x9F and TOCHAR is not a
2783 complete multibyte character, it may be combined with the
2784 after bytes. If it is in the range 0xA0..0xFF, it may be
2785 combined with the before and after bytes. */
2786 if (!CHAR_HEAD_P (*tostr))
2787 maybe_byte_combining = COMBINING_BOTH;
2788 else if (BYTES_BY_CHAR_HEAD (*tostr) > len)
2789 maybe_byte_combining = COMBINING_AFTER;
2792 else
2794 len = 1;
2795 fromstr[0] = XFASTINT (fromchar);
2796 tostr[0] = XFASTINT (tochar);
2799 pos = XINT (start);
2800 pos_byte = CHAR_TO_BYTE (pos);
2801 stop = CHAR_TO_BYTE (XINT (end));
2802 end_byte = stop;
2804 /* If we don't want undo, turn off putting stuff on the list.
2805 That's faster than getting rid of things,
2806 and it prevents even the entry for a first change.
2807 Also inhibit locking the file. */
2808 if (!changed && !NILP (noundo))
2810 record_unwind_protect (subst_char_in_region_unwind,
2811 current_buffer->undo_list);
2812 current_buffer->undo_list = Qt;
2813 /* Don't do file-locking. */
2814 record_unwind_protect (subst_char_in_region_unwind_1,
2815 current_buffer->filename);
2816 current_buffer->filename = Qnil;
2819 if (pos_byte < GPT_BYTE)
2820 stop = min (stop, GPT_BYTE);
2821 while (1)
2823 int pos_byte_next = pos_byte;
2825 if (pos_byte >= stop)
2827 if (pos_byte >= end_byte) break;
2828 stop = end_byte;
2830 p = BYTE_POS_ADDR (pos_byte);
2831 if (multibyte_p)
2832 INC_POS (pos_byte_next);
2833 else
2834 ++pos_byte_next;
2835 if (pos_byte_next - pos_byte == len
2836 && p[0] == fromstr[0]
2837 && (len == 1
2838 || (p[1] == fromstr[1]
2839 && (len == 2 || (p[2] == fromstr[2]
2840 && (len == 3 || p[3] == fromstr[3]))))))
2842 if (changed < 0)
2843 /* We've already seen this and run the before-change-function;
2844 this time we only need to record the actual position. */
2845 changed = pos;
2846 else if (!changed)
2848 changed = -1;
2849 modify_region (current_buffer, pos, XINT (end), 0);
2851 if (! NILP (noundo))
2853 if (MODIFF - 1 == SAVE_MODIFF)
2854 SAVE_MODIFF++;
2855 if (MODIFF - 1 == current_buffer->auto_save_modified)
2856 current_buffer->auto_save_modified++;
2859 /* The before-change-function may have moved the gap
2860 or even modified the buffer so we should start over. */
2861 goto restart;
2864 /* Take care of the case where the new character
2865 combines with neighboring bytes. */
2866 if (maybe_byte_combining
2867 && (maybe_byte_combining == COMBINING_AFTER
2868 ? (pos_byte_next < Z_BYTE
2869 && ! CHAR_HEAD_P (FETCH_BYTE (pos_byte_next)))
2870 : ((pos_byte_next < Z_BYTE
2871 && ! CHAR_HEAD_P (FETCH_BYTE (pos_byte_next)))
2872 || (pos_byte > BEG_BYTE
2873 && ! ASCII_BYTE_P (FETCH_BYTE (pos_byte - 1))))))
2875 Lisp_Object tem, string;
2877 struct gcpro gcpro1;
2879 tem = current_buffer->undo_list;
2880 GCPRO1 (tem);
2882 /* Make a multibyte string containing this single character. */
2883 string = make_multibyte_string (tostr, 1, len);
2884 /* replace_range is less efficient, because it moves the gap,
2885 but it handles combining correctly. */
2886 replace_range (pos, pos + 1, string,
2887 0, 0, 1);
2888 pos_byte_next = CHAR_TO_BYTE (pos);
2889 if (pos_byte_next > pos_byte)
2890 /* Before combining happened. We should not increment
2891 POS. So, to cancel the later increment of POS,
2892 decrease it now. */
2893 pos--;
2894 else
2895 INC_POS (pos_byte_next);
2897 if (! NILP (noundo))
2898 current_buffer->undo_list = tem;
2900 UNGCPRO;
2902 else
2904 if (NILP (noundo))
2905 record_change (pos, 1);
2906 for (i = 0; i < len; i++) *p++ = tostr[i];
2908 last_changed = pos + 1;
2910 pos_byte = pos_byte_next;
2911 pos++;
2914 if (changed > 0)
2916 signal_after_change (changed,
2917 last_changed - changed, last_changed - changed);
2918 update_compositions (changed, last_changed, CHECK_ALL);
2921 unbind_to (count, Qnil);
2922 return Qnil;
2926 static Lisp_Object check_translation P_ ((int, int, int, Lisp_Object));
2928 /* Helper function for Ftranslate_region_internal.
2930 Check if a character sequence at POS (POS_BYTE) matches an element
2931 of VAL. VAL is a list (([FROM-CHAR ...] . TO) ...). If a matching
2932 element is found, return it. Otherwise return Qnil. */
2934 static Lisp_Object
2935 check_translation (pos, pos_byte, end, val)
2936 int pos, pos_byte, end;
2937 Lisp_Object val;
2939 int buf_size = 16, buf_used = 0;
2940 int *buf = alloca (sizeof (int) * buf_size);
2942 for (; CONSP (val); val = XCDR (val))
2944 Lisp_Object elt;
2945 int len, i;
2947 elt = XCAR (val);
2948 if (! CONSP (elt))
2949 continue;
2950 elt = XCAR (elt);
2951 if (! VECTORP (elt))
2952 continue;
2953 len = ASIZE (elt);
2954 if (len <= end - pos)
2956 for (i = 0; i < len; i++)
2958 if (buf_used <= i)
2960 unsigned char *p = BYTE_POS_ADDR (pos_byte);
2961 int len;
2963 if (buf_used == buf_size)
2965 int *newbuf;
2967 buf_size += 16;
2968 newbuf = alloca (sizeof (int) * buf_size);
2969 memcpy (newbuf, buf, sizeof (int) * buf_used);
2970 buf = newbuf;
2972 buf[buf_used++] = STRING_CHAR_AND_LENGTH (p, 0, len);
2973 pos_byte += len;
2975 if (XINT (AREF (elt, i)) != buf[i])
2976 break;
2978 if (i == len)
2979 return XCAR (val);
2982 return Qnil;
2986 DEFUN ("translate-region-internal", Ftranslate_region_internal,
2987 Stranslate_region_internal, 3, 3, 0,
2988 doc: /* Internal use only.
2989 From START to END, translate characters according to TABLE.
2990 TABLE is a string or a char-table; the Nth character in it is the
2991 mapping for the character with code N.
2992 It returns the number of characters changed. */)
2993 (start, end, table)
2994 Lisp_Object start;
2995 Lisp_Object end;
2996 register Lisp_Object table;
2998 register unsigned char *tt; /* Trans table. */
2999 register int nc; /* New character. */
3000 int cnt; /* Number of changes made. */
3001 int size; /* Size of translate table. */
3002 int pos, pos_byte, end_pos;
3003 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
3004 int string_multibyte;
3005 Lisp_Object val;
3007 validate_region (&start, &end);
3008 if (CHAR_TABLE_P (table))
3010 if (! EQ (XCHAR_TABLE (table)->purpose, Qtranslation_table))
3011 error ("Not a translation table");
3012 size = MAX_CHAR;
3013 tt = NULL;
3015 else
3017 CHECK_STRING (table);
3019 if (! multibyte && (SCHARS (table) < SBYTES (table)))
3020 table = string_make_unibyte (table);
3021 string_multibyte = SCHARS (table) < SBYTES (table);
3022 size = SBYTES (table);
3023 tt = SDATA (table);
3026 pos = XINT (start);
3027 pos_byte = CHAR_TO_BYTE (pos);
3028 end_pos = XINT (end);
3029 modify_region (current_buffer, pos, end_pos, 0);
3031 cnt = 0;
3032 for (; pos < end_pos; )
3034 register unsigned char *p = BYTE_POS_ADDR (pos_byte);
3035 unsigned char *str, buf[MAX_MULTIBYTE_LENGTH];
3036 int len, str_len;
3037 int oc;
3038 Lisp_Object val;
3040 if (multibyte)
3041 oc = STRING_CHAR_AND_LENGTH (p, MAX_MULTIBYTE_LENGTH, len);
3042 else
3043 oc = *p, len = 1;
3044 if (oc < size)
3046 if (tt)
3048 /* Reload as signal_after_change in last iteration may GC. */
3049 tt = SDATA (table);
3050 if (string_multibyte)
3052 str = tt + string_char_to_byte (table, oc);
3053 nc = STRING_CHAR_AND_LENGTH (str, MAX_MULTIBYTE_LENGTH,
3054 str_len);
3056 else
3058 nc = tt[oc];
3059 if (! ASCII_BYTE_P (nc) && multibyte)
3061 str_len = BYTE8_STRING (nc, buf);
3062 str = buf;
3064 else
3066 str_len = 1;
3067 str = tt + oc;
3071 else
3073 int c;
3075 nc = oc;
3076 val = CHAR_TABLE_REF (table, oc);
3077 if (CHARACTERP (val)
3078 && (c = XINT (val), CHAR_VALID_P (c, 0)))
3080 nc = c;
3081 str_len = CHAR_STRING (nc, buf);
3082 str = buf;
3084 else if (VECTORP (val) || (CONSP (val)))
3086 /* VAL is [TO_CHAR ...] or (([FROM-CHAR ...] . TO) ...)
3087 where TO is TO-CHAR or [TO-CHAR ...]. */
3088 nc = -1;
3092 if (nc != oc && nc >= 0)
3094 /* Simple one char to one char translation. */
3095 if (len != str_len)
3097 Lisp_Object string;
3099 /* This is less efficient, because it moves the gap,
3100 but it should handle multibyte characters correctly. */
3101 string = make_multibyte_string (str, 1, str_len);
3102 replace_range (pos, pos + 1, string, 1, 0, 1);
3103 len = str_len;
3105 else
3107 record_change (pos, 1);
3108 while (str_len-- > 0)
3109 *p++ = *str++;
3110 signal_after_change (pos, 1, 1);
3111 update_compositions (pos, pos + 1, CHECK_BORDER);
3113 ++cnt;
3115 else if (nc < 0)
3117 Lisp_Object string;
3119 if (CONSP (val))
3121 val = check_translation (pos, pos_byte, end_pos, val);
3122 if (NILP (val))
3124 pos_byte += len;
3125 pos++;
3126 continue;
3128 /* VAL is ([FROM-CHAR ...] . TO). */
3129 len = ASIZE (XCAR (val));
3130 val = XCDR (val);
3132 else
3133 len = 1;
3135 if (VECTORP (val))
3137 int i;
3139 string = Fmake_string (make_number (ASIZE (val)),
3140 AREF (val, 0));
3141 for (i = 1; i < ASIZE (val); i++)
3142 Faset (string, make_number (i), AREF (val, i));
3144 else
3146 string = Fmake_string (make_number (1), val);
3148 replace_range (pos, pos + len, string, 1, 0, 1);
3149 pos_byte += SBYTES (string);
3150 pos += SCHARS (string);
3151 cnt += SCHARS (string);
3152 end_pos += SCHARS (string) - len;
3153 continue;
3156 pos_byte += len;
3157 pos++;
3160 return make_number (cnt);
3163 DEFUN ("delete-region", Fdelete_region, Sdelete_region, 2, 2, "r",
3164 doc: /* Delete the text between point and mark.
3166 When called from a program, expects two arguments,
3167 positions (integers or markers) specifying the stretch to be deleted. */)
3168 (start, end)
3169 Lisp_Object start, end;
3171 validate_region (&start, &end);
3172 del_range (XINT (start), XINT (end));
3173 return Qnil;
3176 DEFUN ("delete-and-extract-region", Fdelete_and_extract_region,
3177 Sdelete_and_extract_region, 2, 2, 0,
3178 doc: /* Delete the text between START and END and return it. */)
3179 (start, end)
3180 Lisp_Object start, end;
3182 validate_region (&start, &end);
3183 if (XINT (start) == XINT (end))
3184 return empty_unibyte_string;
3185 return del_range_1 (XINT (start), XINT (end), 1, 1);
3188 DEFUN ("widen", Fwiden, Swiden, 0, 0, "",
3189 doc: /* Remove restrictions (narrowing) from current buffer.
3190 This allows the buffer's full text to be seen and edited. */)
3193 if (BEG != BEGV || Z != ZV)
3194 current_buffer->clip_changed = 1;
3195 BEGV = BEG;
3196 BEGV_BYTE = BEG_BYTE;
3197 SET_BUF_ZV_BOTH (current_buffer, Z, Z_BYTE);
3198 /* Changing the buffer bounds invalidates any recorded current column. */
3199 invalidate_current_column ();
3200 return Qnil;
3203 DEFUN ("narrow-to-region", Fnarrow_to_region, Snarrow_to_region, 2, 2, "r",
3204 doc: /* Restrict editing in this buffer to the current region.
3205 The rest of the text becomes temporarily invisible and untouchable
3206 but is not deleted; if you save the buffer in a file, the invisible
3207 text is included in the file. \\[widen] makes all visible again.
3208 See also `save-restriction'.
3210 When calling from a program, pass two arguments; positions (integers
3211 or markers) bounding the text that should remain visible. */)
3212 (start, end)
3213 register Lisp_Object start, end;
3215 CHECK_NUMBER_COERCE_MARKER (start);
3216 CHECK_NUMBER_COERCE_MARKER (end);
3218 if (XINT (start) > XINT (end))
3220 Lisp_Object tem;
3221 tem = start; start = end; end = tem;
3224 if (!(BEG <= XINT (start) && XINT (start) <= XINT (end) && XINT (end) <= Z))
3225 args_out_of_range (start, end);
3227 if (BEGV != XFASTINT (start) || ZV != XFASTINT (end))
3228 current_buffer->clip_changed = 1;
3230 SET_BUF_BEGV (current_buffer, XFASTINT (start));
3231 SET_BUF_ZV (current_buffer, XFASTINT (end));
3232 if (PT < XFASTINT (start))
3233 SET_PT (XFASTINT (start));
3234 if (PT > XFASTINT (end))
3235 SET_PT (XFASTINT (end));
3236 /* Changing the buffer bounds invalidates any recorded current column. */
3237 invalidate_current_column ();
3238 return Qnil;
3241 Lisp_Object
3242 save_restriction_save ()
3244 if (BEGV == BEG && ZV == Z)
3245 /* The common case that the buffer isn't narrowed.
3246 We return just the buffer object, which save_restriction_restore
3247 recognizes as meaning `no restriction'. */
3248 return Fcurrent_buffer ();
3249 else
3250 /* We have to save a restriction, so return a pair of markers, one
3251 for the beginning and one for the end. */
3253 Lisp_Object beg, end;
3255 beg = buildmark (BEGV, BEGV_BYTE);
3256 end = buildmark (ZV, ZV_BYTE);
3258 /* END must move forward if text is inserted at its exact location. */
3259 XMARKER(end)->insertion_type = 1;
3261 return Fcons (beg, end);
3265 Lisp_Object
3266 save_restriction_restore (data)
3267 Lisp_Object data;
3269 if (CONSP (data))
3270 /* A pair of marks bounding a saved restriction. */
3272 struct Lisp_Marker *beg = XMARKER (XCAR (data));
3273 struct Lisp_Marker *end = XMARKER (XCDR (data));
3274 struct buffer *buf = beg->buffer; /* END should have the same buffer. */
3276 if (buf /* Verify marker still points to a buffer. */
3277 && (beg->charpos != BUF_BEGV (buf) || end->charpos != BUF_ZV (buf)))
3278 /* The restriction has changed from the saved one, so restore
3279 the saved restriction. */
3281 int pt = BUF_PT (buf);
3283 SET_BUF_BEGV_BOTH (buf, beg->charpos, beg->bytepos);
3284 SET_BUF_ZV_BOTH (buf, end->charpos, end->bytepos);
3286 if (pt < beg->charpos || pt > end->charpos)
3287 /* The point is outside the new visible range, move it inside. */
3288 SET_BUF_PT_BOTH (buf,
3289 clip_to_bounds (beg->charpos, pt, end->charpos),
3290 clip_to_bounds (beg->bytepos, BUF_PT_BYTE (buf),
3291 end->bytepos));
3293 buf->clip_changed = 1; /* Remember that the narrowing changed. */
3296 else
3297 /* A buffer, which means that there was no old restriction. */
3299 struct buffer *buf = XBUFFER (data);
3301 if (buf /* Verify marker still points to a buffer. */
3302 && (BUF_BEGV (buf) != BUF_BEG (buf) || BUF_ZV (buf) != BUF_Z (buf)))
3303 /* The buffer has been narrowed, get rid of the narrowing. */
3305 SET_BUF_BEGV_BOTH (buf, BUF_BEG (buf), BUF_BEG_BYTE (buf));
3306 SET_BUF_ZV_BOTH (buf, BUF_Z (buf), BUF_Z_BYTE (buf));
3308 buf->clip_changed = 1; /* Remember that the narrowing changed. */
3312 return Qnil;
3315 DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0,
3316 doc: /* Execute BODY, saving and restoring current buffer's restrictions.
3317 The buffer's restrictions make parts of the beginning and end invisible.
3318 \(They are set up with `narrow-to-region' and eliminated with `widen'.)
3319 This special form, `save-restriction', saves the current buffer's restrictions
3320 when it is entered, and restores them when it is exited.
3321 So any `narrow-to-region' within BODY lasts only until the end of the form.
3322 The old restrictions settings are restored
3323 even in case of abnormal exit (throw or error).
3325 The value returned is the value of the last form in BODY.
3327 Note: if you are using both `save-excursion' and `save-restriction',
3328 use `save-excursion' outermost:
3329 (save-excursion (save-restriction ...))
3331 usage: (save-restriction &rest BODY) */)
3332 (body)
3333 Lisp_Object body;
3335 register Lisp_Object val;
3336 int count = SPECPDL_INDEX ();
3338 record_unwind_protect (save_restriction_restore, save_restriction_save ());
3339 val = Fprogn (body);
3340 return unbind_to (count, val);
3343 /* Buffer for the most recent text displayed by Fmessage_box. */
3344 static char *message_text;
3346 /* Allocated length of that buffer. */
3347 static int message_length;
3349 DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
3350 doc: /* Display a message at the bottom of the screen.
3351 The message also goes into the `*Messages*' buffer.
3352 \(In keyboard macros, that's all it does.)
3353 Return the message.
3355 The first argument is a format control string, and the rest are data
3356 to be formatted under control of the string. See `format' for details.
3358 Note: Use (message "%s" VALUE) to print the value of expressions and
3359 variables to avoid accidentally interpreting `%' as format specifiers.
3361 If the first argument is nil or the empty string, the function clears
3362 any existing message; this lets the minibuffer contents show. See
3363 also `current-message'.
3365 usage: (message FORMAT-STRING &rest ARGS) */)
3366 (nargs, args)
3367 int nargs;
3368 Lisp_Object *args;
3370 if (NILP (args[0])
3371 || (STRINGP (args[0])
3372 && SBYTES (args[0]) == 0))
3374 message (0);
3375 return args[0];
3377 else
3379 register Lisp_Object val;
3380 val = Fformat (nargs, args);
3381 message3 (val, SBYTES (val), STRING_MULTIBYTE (val));
3382 return val;
3386 DEFUN ("message-box", Fmessage_box, Smessage_box, 1, MANY, 0,
3387 doc: /* Display a message, in a dialog box if possible.
3388 If a dialog box is not available, use the echo area.
3389 The first argument is a format control string, and the rest are data
3390 to be formatted under control of the string. See `format' for details.
3392 If the first argument is nil or the empty string, clear any existing
3393 message; let the minibuffer contents show.
3395 usage: (message-box FORMAT-STRING &rest ARGS) */)
3396 (nargs, args)
3397 int nargs;
3398 Lisp_Object *args;
3400 if (NILP (args[0]))
3402 message (0);
3403 return Qnil;
3405 else
3407 register Lisp_Object val;
3408 val = Fformat (nargs, args);
3409 #ifdef HAVE_MENUS
3410 /* The MS-DOS frames support popup menus even though they are
3411 not FRAME_WINDOW_P. */
3412 if (FRAME_WINDOW_P (XFRAME (selected_frame))
3413 || FRAME_MSDOS_P (XFRAME (selected_frame)))
3415 Lisp_Object pane, menu, obj;
3416 struct gcpro gcpro1;
3417 pane = Fcons (Fcons (build_string ("OK"), Qt), Qnil);
3418 GCPRO1 (pane);
3419 menu = Fcons (val, pane);
3420 obj = Fx_popup_dialog (Qt, menu, Qt);
3421 UNGCPRO;
3422 return val;
3424 #endif /* HAVE_MENUS */
3425 /* Copy the data so that it won't move when we GC. */
3426 if (! message_text)
3428 message_text = (char *)xmalloc (80);
3429 message_length = 80;
3431 if (SBYTES (val) > message_length)
3433 message_length = SBYTES (val);
3434 message_text = (char *)xrealloc (message_text, message_length);
3436 bcopy (SDATA (val), message_text, SBYTES (val));
3437 message2 (message_text, SBYTES (val),
3438 STRING_MULTIBYTE (val));
3439 return val;
3442 #ifdef HAVE_MENUS
3443 extern Lisp_Object last_nonmenu_event;
3444 #endif
3446 DEFUN ("message-or-box", Fmessage_or_box, Smessage_or_box, 1, MANY, 0,
3447 doc: /* Display a message in a dialog box or in the echo area.
3448 If this command was invoked with the mouse, use a dialog box if
3449 `use-dialog-box' is non-nil.
3450 Otherwise, use the echo area.
3451 The first argument is a format control string, and the rest are data
3452 to be formatted under control of the string. See `format' for details.
3454 If the first argument is nil or the empty string, clear any existing
3455 message; let the minibuffer contents show.
3457 usage: (message-or-box FORMAT-STRING &rest ARGS) */)
3458 (nargs, args)
3459 int nargs;
3460 Lisp_Object *args;
3462 #ifdef HAVE_MENUS
3463 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
3464 && use_dialog_box)
3465 return Fmessage_box (nargs, args);
3466 #endif
3467 return Fmessage (nargs, args);
3470 DEFUN ("current-message", Fcurrent_message, Scurrent_message, 0, 0, 0,
3471 doc: /* Return the string currently displayed in the echo area, or nil if none. */)
3474 return current_message ();
3478 DEFUN ("propertize", Fpropertize, Spropertize, 1, MANY, 0,
3479 doc: /* Return a copy of STRING with text properties added.
3480 First argument is the string to copy.
3481 Remaining arguments form a sequence of PROPERTY VALUE pairs for text
3482 properties to add to the result.
3483 usage: (propertize STRING &rest PROPERTIES) */)
3484 (nargs, args)
3485 int nargs;
3486 Lisp_Object *args;
3488 Lisp_Object properties, string;
3489 struct gcpro gcpro1, gcpro2;
3490 int i;
3492 /* Number of args must be odd. */
3493 if ((nargs & 1) == 0 || nargs < 1)
3494 error ("Wrong number of arguments");
3496 properties = string = Qnil;
3497 GCPRO2 (properties, string);
3499 /* First argument must be a string. */
3500 CHECK_STRING (args[0]);
3501 string = Fcopy_sequence (args[0]);
3503 for (i = 1; i < nargs; i += 2)
3504 properties = Fcons (args[i], Fcons (args[i + 1], properties));
3506 Fadd_text_properties (make_number (0),
3507 make_number (SCHARS (string)),
3508 properties, string);
3509 RETURN_UNGCPRO (string);
3513 /* Number of bytes that STRING will occupy when put into the result.
3514 MULTIBYTE is nonzero if the result should be multibyte. */
3516 #define CONVERTED_BYTE_SIZE(MULTIBYTE, STRING) \
3517 (((MULTIBYTE) && ! STRING_MULTIBYTE (STRING)) \
3518 ? count_size_as_multibyte (SDATA (STRING), SBYTES (STRING)) \
3519 : SBYTES (STRING))
3521 DEFUN ("format", Fformat, Sformat, 1, MANY, 0,
3522 doc: /* Format a string out of a format-string and arguments.
3523 The first argument is a format control string.
3524 The other arguments are substituted into it to make the result, a string.
3526 The format control string may contain %-sequences meaning to substitute
3527 the next available argument:
3529 %s means print a string argument. Actually, prints any object, with `princ'.
3530 %d means print as number in decimal (%o octal, %x hex).
3531 %X is like %x, but uses upper case.
3532 %e means print a number in exponential notation.
3533 %f means print a number in decimal-point notation.
3534 %g means print a number in exponential notation
3535 or decimal-point notation, whichever uses fewer characters.
3536 %c means print a number as a single character.
3537 %S means print any object as an s-expression (using `prin1').
3539 The argument used for %d, %o, %x, %e, %f, %g or %c must be a number.
3540 Use %% to put a single % into the output.
3542 A %-sequence may contain optional flag, width, and precision
3543 specifiers, as follows:
3545 %<flags><width><precision>character
3547 where flags is [+ #-0]+, width is [0-9]+, and precision is .[0-9]+
3549 The + flag character inserts a + before any positive number, while a
3550 space inserts a space before any positive number; these flags only
3551 affect %d, %e, %f, and %g sequences, and the + flag takes precedence.
3552 The # flag means to use an alternate display form for %o, %x, %X, %e,
3553 %f, and %g sequences. The - and 0 flags affect the width specifier,
3554 as described below.
3556 The width specifier supplies a lower limit for the length of the
3557 printed representation. The padding, if any, normally goes on the
3558 left, but it goes on the right if the - flag is present. The padding
3559 character is normally a space, but it is 0 if the 0 flag is present.
3560 The - flag takes precedence over the 0 flag.
3562 For %e, %f, and %g sequences, the number after the "." in the
3563 precision specifier says how many decimal places to show; if zero, the
3564 decimal point itself is omitted. For %s and %S, the precision
3565 specifier truncates the string to the given width.
3567 usage: (format STRING &rest OBJECTS) */)
3568 (nargs, args)
3569 int nargs;
3570 register Lisp_Object *args;
3572 register int n; /* The number of the next arg to substitute */
3573 register int total; /* An estimate of the final length */
3574 char *buf, *p;
3575 register unsigned char *format, *end, *format_start;
3576 int nchars;
3577 /* Nonzero if the output should be a multibyte string,
3578 which is true if any of the inputs is one. */
3579 int multibyte = 0;
3580 /* When we make a multibyte string, we must pay attention to the
3581 byte combining problem, i.e., a byte may be combined with a
3582 multibyte charcter of the previous string. This flag tells if we
3583 must consider such a situation or not. */
3584 int maybe_combine_byte;
3585 unsigned char *this_format;
3586 /* Precision for each spec, or -1, a flag value meaning no precision
3587 was given in that spec. Element 0, corresonding to the format
3588 string itself, will not be used. Element NARGS, corresponding to
3589 no argument, *will* be assigned to in the case that a `%' and `.'
3590 occur after the final format specifier. */
3591 int *precision = (int *) (alloca((nargs + 1) * sizeof (int)));
3592 int longest_format;
3593 Lisp_Object val;
3594 int arg_intervals = 0;
3595 USE_SAFE_ALLOCA;
3597 /* discarded[I] is 1 if byte I of the format
3598 string was not copied into the output.
3599 It is 2 if byte I was not the first byte of its character. */
3600 char *discarded = 0;
3602 /* Each element records, for one argument,
3603 the start and end bytepos in the output string,
3604 and whether the argument is a string with intervals.
3605 info[0] is unused. Unused elements have -1 for start. */
3606 struct info
3608 int start, end, intervals;
3609 } *info = 0;
3611 /* It should not be necessary to GCPRO ARGS, because
3612 the caller in the interpreter should take care of that. */
3614 /* Try to determine whether the result should be multibyte.
3615 This is not always right; sometimes the result needs to be multibyte
3616 because of an object that we will pass through prin1,
3617 and in that case, we won't know it here. */
3618 for (n = 0; n < nargs; n++)
3620 if (STRINGP (args[n]) && STRING_MULTIBYTE (args[n]))
3621 multibyte = 1;
3622 /* Piggyback on this loop to initialize precision[N]. */
3623 precision[n] = -1;
3625 precision[nargs] = -1;
3627 CHECK_STRING (args[0]);
3628 /* We may have to change "%S" to "%s". */
3629 args[0] = Fcopy_sequence (args[0]);
3631 /* GC should never happen here, so abort if it does. */
3632 abort_on_gc++;
3634 /* If we start out planning a unibyte result,
3635 then discover it has to be multibyte, we jump back to retry.
3636 That can only happen from the first large while loop below. */
3637 retry:
3639 format = SDATA (args[0]);
3640 format_start = format;
3641 end = format + SBYTES (args[0]);
3642 longest_format = 0;
3644 /* Make room in result for all the non-%-codes in the control string. */
3645 total = 5 + CONVERTED_BYTE_SIZE (multibyte, args[0]) + 1;
3647 /* Allocate the info and discarded tables. */
3649 int nbytes = (nargs+1) * sizeof *info;
3650 int i;
3651 if (!info)
3652 info = (struct info *) alloca (nbytes);
3653 bzero (info, nbytes);
3654 for (i = 0; i <= nargs; i++)
3655 info[i].start = -1;
3656 if (!discarded)
3657 SAFE_ALLOCA (discarded, char *, SBYTES (args[0]));
3658 bzero (discarded, SBYTES (args[0]));
3661 /* Add to TOTAL enough space to hold the converted arguments. */
3663 n = 0;
3664 while (format != end)
3665 if (*format++ == '%')
3667 int thissize = 0;
3668 int actual_width = 0;
3669 unsigned char *this_format_start = format - 1;
3670 int field_width = 0;
3672 /* General format specifications look like
3674 '%' [flags] [field-width] [precision] format
3676 where
3678 flags ::= [-+ #0]+
3679 field-width ::= [0-9]+
3680 precision ::= '.' [0-9]*
3682 If a field-width is specified, it specifies to which width
3683 the output should be padded with blanks, if the output
3684 string is shorter than field-width.
3686 If precision is specified, it specifies the number of
3687 digits to print after the '.' for floats, or the max.
3688 number of chars to print from a string. */
3690 while (format != end
3691 && (*format == '-' || *format == '0' || *format == '#'
3692 || * format == ' ' || *format == '+'))
3693 ++format;
3695 if (*format >= '0' && *format <= '9')
3697 for (field_width = 0; *format >= '0' && *format <= '9'; ++format)
3698 field_width = 10 * field_width + *format - '0';
3701 /* N is not incremented for another few lines below, so refer to
3702 element N+1 (which might be precision[NARGS]). */
3703 if (*format == '.')
3705 ++format;
3706 for (precision[n+1] = 0; *format >= '0' && *format <= '9'; ++format)
3707 precision[n+1] = 10 * precision[n+1] + *format - '0';
3710 /* Extra +1 for 'l' that we may need to insert into the
3711 format. */
3712 if (format - this_format_start + 2 > longest_format)
3713 longest_format = format - this_format_start + 2;
3715 if (format == end)
3716 error ("Format string ends in middle of format specifier");
3717 if (*format == '%')
3718 format++;
3719 else if (++n >= nargs)
3720 error ("Not enough arguments for format string");
3721 else if (*format == 'S')
3723 /* For `S', prin1 the argument and then treat like a string. */
3724 register Lisp_Object tem;
3725 tem = Fprin1_to_string (args[n], Qnil);
3726 if (STRING_MULTIBYTE (tem) && ! multibyte)
3728 multibyte = 1;
3729 goto retry;
3731 args[n] = tem;
3732 /* If we restart the loop, we should not come here again
3733 because args[n] is now a string and calling
3734 Fprin1_to_string on it produces superflous double
3735 quotes. So, change "%S" to "%s" now. */
3736 *format = 's';
3737 goto string;
3739 else if (SYMBOLP (args[n]))
3741 args[n] = SYMBOL_NAME (args[n]);
3742 if (STRING_MULTIBYTE (args[n]) && ! multibyte)
3744 multibyte = 1;
3745 goto retry;
3747 goto string;
3749 else if (STRINGP (args[n]))
3751 string:
3752 if (*format != 's' && *format != 'S')
3753 error ("Format specifier doesn't match argument type");
3754 /* In the case (PRECISION[N] > 0), THISSIZE may not need
3755 to be as large as is calculated here. Easy check for
3756 the case PRECISION = 0. */
3757 thissize = precision[n] ? CONVERTED_BYTE_SIZE (multibyte, args[n]) : 0;
3758 actual_width = lisp_string_width (args[n], -1, NULL, NULL);
3760 /* Would get MPV otherwise, since Lisp_Int's `point' to low memory. */
3761 else if (INTEGERP (args[n]) && *format != 's')
3763 /* The following loop assumes the Lisp type indicates
3764 the proper way to pass the argument.
3765 So make sure we have a flonum if the argument should
3766 be a double. */
3767 if (*format == 'e' || *format == 'f' || *format == 'g')
3768 args[n] = Ffloat (args[n]);
3769 else
3770 if (*format != 'd' && *format != 'o' && *format != 'x'
3771 && *format != 'i' && *format != 'X' && *format != 'c')
3772 error ("Invalid format operation %%%c", *format);
3774 thissize = 30 + (precision[n] > 0 ? precision[n] : 0);
3775 if (*format == 'c')
3777 if (! ASCII_CHAR_P (XINT (args[n]))
3778 /* Note: No one can remeber why we have to treat
3779 the character 0 as a multibyte character here.
3780 But, until it causes a real problem, let's
3781 don't change it. */
3782 || XINT (args[n]) == 0)
3784 if (! multibyte)
3786 multibyte = 1;
3787 goto retry;
3789 args[n] = Fchar_to_string (args[n]);
3790 thissize = SBYTES (args[n]);
3792 else if (! ASCII_BYTE_P (XINT (args[n])) && multibyte)
3794 args[n]
3795 = Fchar_to_string (Funibyte_char_to_multibyte (args[n]));
3796 thissize = SBYTES (args[n]);
3800 else if (FLOATP (args[n]) && *format != 's')
3802 if (! (*format == 'e' || *format == 'f' || *format == 'g'))
3804 if (*format != 'd' && *format != 'o' && *format != 'x'
3805 && *format != 'i' && *format != 'X' && *format != 'c')
3806 error ("Invalid format operation %%%c", *format);
3807 /* This fails unnecessarily if args[n] is bigger than
3808 most-positive-fixnum but smaller than MAXINT.
3809 These cases are important because we sometimes use floats
3810 to represent such integer values (typically such values
3811 come from UIDs or PIDs). */
3812 /* args[n] = Ftruncate (args[n], Qnil); */
3815 /* Note that we're using sprintf to print floats,
3816 so we have to take into account what that function
3817 prints. */
3818 /* Filter out flag value of -1. */
3819 thissize = (MAX_10_EXP + 100
3820 + (precision[n] > 0 ? precision[n] : 0));
3822 else
3824 /* Anything but a string, convert to a string using princ. */
3825 register Lisp_Object tem;
3826 tem = Fprin1_to_string (args[n], Qt);
3827 if (STRING_MULTIBYTE (tem) && ! multibyte)
3829 multibyte = 1;
3830 goto retry;
3832 args[n] = tem;
3833 goto string;
3836 thissize += max (0, field_width - actual_width);
3837 total += thissize + 4;
3840 abort_on_gc--;
3842 /* Now we can no longer jump to retry.
3843 TOTAL and LONGEST_FORMAT are known for certain. */
3845 this_format = (unsigned char *) alloca (longest_format + 1);
3847 /* Allocate the space for the result.
3848 Note that TOTAL is an overestimate. */
3849 SAFE_ALLOCA (buf, char *, total);
3851 p = buf;
3852 nchars = 0;
3853 n = 0;
3855 /* Scan the format and store result in BUF. */
3856 format = SDATA (args[0]);
3857 format_start = format;
3858 end = format + SBYTES (args[0]);
3859 maybe_combine_byte = 0;
3860 while (format != end)
3862 if (*format == '%')
3864 int minlen;
3865 int negative = 0;
3866 unsigned char *this_format_start = format;
3868 discarded[format - format_start] = 1;
3869 format++;
3871 while (index("-+0# ", *format))
3873 if (*format == '-')
3875 negative = 1;
3877 discarded[format - format_start] = 1;
3878 ++format;
3881 minlen = atoi (format);
3883 while ((*format >= '0' && *format <= '9') || *format == '.')
3885 discarded[format - format_start] = 1;
3886 format++;
3889 if (*format++ == '%')
3891 *p++ = '%';
3892 nchars++;
3893 continue;
3896 ++n;
3898 discarded[format - format_start - 1] = 1;
3899 info[n].start = nchars;
3901 if (STRINGP (args[n]))
3903 /* handle case (precision[n] >= 0) */
3905 int width, padding;
3906 int nbytes, start, end;
3907 int nchars_string;
3909 /* lisp_string_width ignores a precision of 0, but GNU
3910 libc functions print 0 characters when the precision
3911 is 0. Imitate libc behavior here. Changing
3912 lisp_string_width is the right thing, and will be
3913 done, but meanwhile we work with it. */
3915 if (precision[n] == 0)
3916 width = nchars_string = nbytes = 0;
3917 else if (precision[n] > 0)
3918 width = lisp_string_width (args[n], precision[n], &nchars_string, &nbytes);
3919 else
3920 { /* no precision spec given for this argument */
3921 width = lisp_string_width (args[n], -1, NULL, NULL);
3922 nbytes = SBYTES (args[n]);
3923 nchars_string = SCHARS (args[n]);
3926 /* If spec requires it, pad on right with spaces. */
3927 padding = minlen - width;
3928 if (! negative)
3929 while (padding-- > 0)
3931 *p++ = ' ';
3932 ++nchars;
3935 info[n].start = start = nchars;
3936 nchars += nchars_string;
3937 end = nchars;
3939 if (p > buf
3940 && multibyte
3941 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
3942 && STRING_MULTIBYTE (args[n])
3943 && !CHAR_HEAD_P (SREF (args[n], 0)))
3944 maybe_combine_byte = 1;
3946 p += copy_text (SDATA (args[n]), p,
3947 nbytes,
3948 STRING_MULTIBYTE (args[n]), multibyte);
3950 info[n].end = nchars;
3952 if (negative)
3953 while (padding-- > 0)
3955 *p++ = ' ';
3956 nchars++;
3959 /* If this argument has text properties, record where
3960 in the result string it appears. */
3961 if (STRING_INTERVALS (args[n]))
3962 info[n].intervals = arg_intervals = 1;
3964 else if (INTEGERP (args[n]) || FLOATP (args[n]))
3966 int this_nchars;
3968 bcopy (this_format_start, this_format,
3969 format - this_format_start);
3970 this_format[format - this_format_start] = 0;
3972 if (format[-1] == 'e' || format[-1] == 'f' || format[-1] == 'g')
3973 sprintf (p, this_format, XFLOAT_DATA (args[n]));
3974 else
3976 if (sizeof (EMACS_INT) > sizeof (int)
3977 && format[-1] != 'c')
3979 /* Insert 'l' before format spec. */
3980 this_format[format - this_format_start]
3981 = this_format[format - this_format_start - 1];
3982 this_format[format - this_format_start - 1] = 'l';
3983 this_format[format - this_format_start + 1] = 0;
3986 if (INTEGERP (args[n]))
3988 if (format[-1] == 'c')
3989 sprintf (p, this_format, (int) XINT (args[n]));
3990 else if (format[-1] == 'd')
3991 sprintf (p, this_format, XINT (args[n]));
3992 /* Don't sign-extend for octal or hex printing. */
3993 else
3994 sprintf (p, this_format, XUINT (args[n]));
3996 else if (format[-1] == 'c')
3997 sprintf (p, this_format, (int) XFLOAT_DATA (args[n]));
3998 else if (format[-1] == 'd')
3999 /* Maybe we should use "%1.0f" instead so it also works
4000 for values larger than MAXINT. */
4001 sprintf (p, this_format, (EMACS_INT) XFLOAT_DATA (args[n]));
4002 else
4003 /* Don't sign-extend for octal or hex printing. */
4004 sprintf (p, this_format, (EMACS_UINT) XFLOAT_DATA (args[n]));
4007 if (p > buf
4008 && multibyte
4009 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
4010 && !CHAR_HEAD_P (*((unsigned char *) p)))
4011 maybe_combine_byte = 1;
4012 this_nchars = strlen (p);
4013 if (multibyte)
4014 p += str_to_multibyte (p, buf + total - 1 - p, this_nchars);
4015 else
4016 p += this_nchars;
4017 nchars += this_nchars;
4018 info[n].end = nchars;
4022 else if (STRING_MULTIBYTE (args[0]))
4024 /* Copy a whole multibyte character. */
4025 if (p > buf
4026 && multibyte
4027 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
4028 && !CHAR_HEAD_P (*format))
4029 maybe_combine_byte = 1;
4030 *p++ = *format++;
4031 while (! CHAR_HEAD_P (*format))
4033 discarded[format - format_start] = 2;
4034 *p++ = *format++;
4036 nchars++;
4038 else if (multibyte)
4040 /* Convert a single-byte character to multibyte. */
4041 int len = copy_text (format, p, 1, 0, 1);
4043 p += len;
4044 format++;
4045 nchars++;
4047 else
4048 *p++ = *format++, nchars++;
4051 if (p > buf + total)
4052 abort ();
4054 if (maybe_combine_byte)
4055 nchars = multibyte_chars_in_text (buf, p - buf);
4056 val = make_specified_string (buf, nchars, p - buf, multibyte);
4058 /* If we allocated BUF with malloc, free it too. */
4059 SAFE_FREE ();
4061 /* If the format string has text properties, or any of the string
4062 arguments has text properties, set up text properties of the
4063 result string. */
4065 if (STRING_INTERVALS (args[0]) || arg_intervals)
4067 Lisp_Object len, new_len, props;
4068 struct gcpro gcpro1;
4070 /* Add text properties from the format string. */
4071 len = make_number (SCHARS (args[0]));
4072 props = text_property_list (args[0], make_number (0), len, Qnil);
4073 GCPRO1 (props);
4075 if (CONSP (props))
4077 int bytepos = 0, position = 0, translated = 0, argn = 1;
4078 Lisp_Object list;
4080 /* Adjust the bounds of each text property
4081 to the proper start and end in the output string. */
4083 /* Put the positions in PROPS in increasing order, so that
4084 we can do (effectively) one scan through the position
4085 space of the format string. */
4086 props = Fnreverse (props);
4088 /* BYTEPOS is the byte position in the format string,
4089 POSITION is the untranslated char position in it,
4090 TRANSLATED is the translated char position in BUF,
4091 and ARGN is the number of the next arg we will come to. */
4092 for (list = props; CONSP (list); list = XCDR (list))
4094 Lisp_Object item;
4095 int pos;
4097 item = XCAR (list);
4099 /* First adjust the property start position. */
4100 pos = XINT (XCAR (item));
4102 /* Advance BYTEPOS, POSITION, TRANSLATED and ARGN
4103 up to this position. */
4104 for (; position < pos; bytepos++)
4106 if (! discarded[bytepos])
4107 position++, translated++;
4108 else if (discarded[bytepos] == 1)
4110 position++;
4111 if (translated == info[argn].start)
4113 translated += info[argn].end - info[argn].start;
4114 argn++;
4119 XSETCAR (item, make_number (translated));
4121 /* Likewise adjust the property end position. */
4122 pos = XINT (XCAR (XCDR (item)));
4124 for (; position < pos; bytepos++)
4126 if (! discarded[bytepos])
4127 position++, translated++;
4128 else if (discarded[bytepos] == 1)
4130 position++;
4131 if (translated == info[argn].start)
4133 translated += info[argn].end - info[argn].start;
4134 argn++;
4139 XSETCAR (XCDR (item), make_number (translated));
4142 add_text_properties_from_list (val, props, make_number (0));
4145 /* Add text properties from arguments. */
4146 if (arg_intervals)
4147 for (n = 1; n < nargs; ++n)
4148 if (info[n].intervals)
4150 len = make_number (SCHARS (args[n]));
4151 new_len = make_number (info[n].end - info[n].start);
4152 props = text_property_list (args[n], make_number (0), len, Qnil);
4153 extend_property_ranges (props, len, new_len);
4154 /* If successive arguments have properites, be sure that
4155 the value of `composition' property be the copy. */
4156 if (n > 1 && info[n - 1].end)
4157 make_composition_value_copy (props);
4158 add_text_properties_from_list (val, props,
4159 make_number (info[n].start));
4162 UNGCPRO;
4165 return val;
4168 Lisp_Object
4169 format2 (string1, arg0, arg1)
4170 char *string1;
4171 Lisp_Object arg0, arg1;
4173 Lisp_Object args[3];
4174 args[0] = build_string (string1);
4175 args[1] = arg0;
4176 args[2] = arg1;
4177 return Fformat (3, args);
4180 DEFUN ("char-equal", Fchar_equal, Schar_equal, 2, 2, 0,
4181 doc: /* Return t if two characters match, optionally ignoring case.
4182 Both arguments must be characters (i.e. integers).
4183 Case is ignored if `case-fold-search' is non-nil in the current buffer. */)
4184 (c1, c2)
4185 register Lisp_Object c1, c2;
4187 int i1, i2;
4188 /* Check they're chars, not just integers, otherwise we could get array
4189 bounds violations in DOWNCASE. */
4190 CHECK_CHARACTER (c1);
4191 CHECK_CHARACTER (c2);
4193 if (XINT (c1) == XINT (c2))
4194 return Qt;
4195 if (NILP (current_buffer->case_fold_search))
4196 return Qnil;
4198 /* Do these in separate statements,
4199 then compare the variables.
4200 because of the way DOWNCASE uses temp variables. */
4201 i1 = XFASTINT (c1);
4202 if (NILP (current_buffer->enable_multibyte_characters)
4203 && ! ASCII_CHAR_P (i1))
4205 MAKE_CHAR_MULTIBYTE (i1);
4207 i2 = XFASTINT (c2);
4208 if (NILP (current_buffer->enable_multibyte_characters)
4209 && ! ASCII_CHAR_P (i2))
4211 MAKE_CHAR_MULTIBYTE (i2);
4213 i1 = DOWNCASE (i1);
4214 i2 = DOWNCASE (i2);
4215 return (i1 == i2 ? Qt : Qnil);
4218 /* Transpose the markers in two regions of the current buffer, and
4219 adjust the ones between them if necessary (i.e.: if the regions
4220 differ in size).
4222 START1, END1 are the character positions of the first region.
4223 START1_BYTE, END1_BYTE are the byte positions.
4224 START2, END2 are the character positions of the second region.
4225 START2_BYTE, END2_BYTE are the byte positions.
4227 Traverses the entire marker list of the buffer to do so, adding an
4228 appropriate amount to some, subtracting from some, and leaving the
4229 rest untouched. Most of this is copied from adjust_markers in insdel.c.
4231 It's the caller's job to ensure that START1 <= END1 <= START2 <= END2. */
4233 static void
4234 transpose_markers (start1, end1, start2, end2,
4235 start1_byte, end1_byte, start2_byte, end2_byte)
4236 register int start1, end1, start2, end2;
4237 register int start1_byte, end1_byte, start2_byte, end2_byte;
4239 register int amt1, amt1_byte, amt2, amt2_byte, diff, diff_byte, mpos;
4240 register struct Lisp_Marker *marker;
4242 /* Update point as if it were a marker. */
4243 if (PT < start1)
4245 else if (PT < end1)
4246 TEMP_SET_PT_BOTH (PT + (end2 - end1),
4247 PT_BYTE + (end2_byte - end1_byte));
4248 else if (PT < start2)
4249 TEMP_SET_PT_BOTH (PT + (end2 - start2) - (end1 - start1),
4250 (PT_BYTE + (end2_byte - start2_byte)
4251 - (end1_byte - start1_byte)));
4252 else if (PT < end2)
4253 TEMP_SET_PT_BOTH (PT - (start2 - start1),
4254 PT_BYTE - (start2_byte - start1_byte));
4256 /* We used to adjust the endpoints here to account for the gap, but that
4257 isn't good enough. Even if we assume the caller has tried to move the
4258 gap out of our way, it might still be at start1 exactly, for example;
4259 and that places it `inside' the interval, for our purposes. The amount
4260 of adjustment is nontrivial if there's a `denormalized' marker whose
4261 position is between GPT and GPT + GAP_SIZE, so it's simpler to leave
4262 the dirty work to Fmarker_position, below. */
4264 /* The difference between the region's lengths */
4265 diff = (end2 - start2) - (end1 - start1);
4266 diff_byte = (end2_byte - start2_byte) - (end1_byte - start1_byte);
4268 /* For shifting each marker in a region by the length of the other
4269 region plus the distance between the regions. */
4270 amt1 = (end2 - start2) + (start2 - end1);
4271 amt2 = (end1 - start1) + (start2 - end1);
4272 amt1_byte = (end2_byte - start2_byte) + (start2_byte - end1_byte);
4273 amt2_byte = (end1_byte - start1_byte) + (start2_byte - end1_byte);
4275 for (marker = BUF_MARKERS (current_buffer); marker; marker = marker->next)
4277 mpos = marker->bytepos;
4278 if (mpos >= start1_byte && mpos < end2_byte)
4280 if (mpos < end1_byte)
4281 mpos += amt1_byte;
4282 else if (mpos < start2_byte)
4283 mpos += diff_byte;
4284 else
4285 mpos -= amt2_byte;
4286 marker->bytepos = mpos;
4288 mpos = marker->charpos;
4289 if (mpos >= start1 && mpos < end2)
4291 if (mpos < end1)
4292 mpos += amt1;
4293 else if (mpos < start2)
4294 mpos += diff;
4295 else
4296 mpos -= amt2;
4298 marker->charpos = mpos;
4302 DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0,
4303 doc: /* Transpose region STARTR1 to ENDR1 with STARTR2 to ENDR2.
4304 The regions may not be overlapping, because the size of the buffer is
4305 never changed in a transposition.
4307 Optional fifth arg LEAVE-MARKERS, if non-nil, means don't update
4308 any markers that happen to be located in the regions.
4310 Transposing beyond buffer boundaries is an error. */)
4311 (startr1, endr1, startr2, endr2, leave_markers)
4312 Lisp_Object startr1, endr1, startr2, endr2, leave_markers;
4314 register EMACS_INT start1, end1, start2, end2;
4315 EMACS_INT start1_byte, start2_byte, len1_byte, len2_byte;
4316 EMACS_INT gap, len1, len_mid, len2;
4317 unsigned char *start1_addr, *start2_addr, *temp;
4319 INTERVAL cur_intv, tmp_interval1, tmp_interval_mid, tmp_interval2, tmp_interval3;
4320 Lisp_Object buf;
4322 XSETBUFFER (buf, current_buffer);
4323 cur_intv = BUF_INTERVALS (current_buffer);
4325 validate_region (&startr1, &endr1);
4326 validate_region (&startr2, &endr2);
4328 start1 = XFASTINT (startr1);
4329 end1 = XFASTINT (endr1);
4330 start2 = XFASTINT (startr2);
4331 end2 = XFASTINT (endr2);
4332 gap = GPT;
4334 /* Swap the regions if they're reversed. */
4335 if (start2 < end1)
4337 register int glumph = start1;
4338 start1 = start2;
4339 start2 = glumph;
4340 glumph = end1;
4341 end1 = end2;
4342 end2 = glumph;
4345 len1 = end1 - start1;
4346 len2 = end2 - start2;
4348 if (start2 < end1)
4349 error ("Transposed regions overlap");
4350 else if (start1 == end1 || start2 == end2)
4351 error ("Transposed region has length 0");
4353 /* The possibilities are:
4354 1. Adjacent (contiguous) regions, or separate but equal regions
4355 (no, really equal, in this case!), or
4356 2. Separate regions of unequal size.
4358 The worst case is usually No. 2. It means that (aside from
4359 potential need for getting the gap out of the way), there also
4360 needs to be a shifting of the text between the two regions. So
4361 if they are spread far apart, we are that much slower... sigh. */
4363 /* It must be pointed out that the really studly thing to do would
4364 be not to move the gap at all, but to leave it in place and work
4365 around it if necessary. This would be extremely efficient,
4366 especially considering that people are likely to do
4367 transpositions near where they are working interactively, which
4368 is exactly where the gap would be found. However, such code
4369 would be much harder to write and to read. So, if you are
4370 reading this comment and are feeling squirrely, by all means have
4371 a go! I just didn't feel like doing it, so I will simply move
4372 the gap the minimum distance to get it out of the way, and then
4373 deal with an unbroken array. */
4375 /* Make sure the gap won't interfere, by moving it out of the text
4376 we will operate on. */
4377 if (start1 < gap && gap < end2)
4379 if (gap - start1 < end2 - gap)
4380 move_gap (start1);
4381 else
4382 move_gap (end2);
4385 start1_byte = CHAR_TO_BYTE (start1);
4386 start2_byte = CHAR_TO_BYTE (start2);
4387 len1_byte = CHAR_TO_BYTE (end1) - start1_byte;
4388 len2_byte = CHAR_TO_BYTE (end2) - start2_byte;
4390 #ifdef BYTE_COMBINING_DEBUG
4391 if (end1 == start2)
4393 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
4394 len2_byte, start1, start1_byte)
4395 || count_combining_before (BYTE_POS_ADDR (start1_byte),
4396 len1_byte, end2, start2_byte + len2_byte)
4397 || count_combining_after (BYTE_POS_ADDR (start1_byte),
4398 len1_byte, end2, start2_byte + len2_byte))
4399 abort ();
4401 else
4403 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
4404 len2_byte, start1, start1_byte)
4405 || count_combining_before (BYTE_POS_ADDR (start1_byte),
4406 len1_byte, start2, start2_byte)
4407 || count_combining_after (BYTE_POS_ADDR (start2_byte),
4408 len2_byte, end1, start1_byte + len1_byte)
4409 || count_combining_after (BYTE_POS_ADDR (start1_byte),
4410 len1_byte, end2, start2_byte + len2_byte))
4411 abort ();
4413 #endif
4415 /* Hmmm... how about checking to see if the gap is large
4416 enough to use as the temporary storage? That would avoid an
4417 allocation... interesting. Later, don't fool with it now. */
4419 /* Working without memmove, for portability (sigh), so must be
4420 careful of overlapping subsections of the array... */
4422 if (end1 == start2) /* adjacent regions */
4424 modify_region (current_buffer, start1, end2, 0);
4425 record_change (start1, len1 + len2);
4427 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4428 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4429 /* Don't use Fset_text_properties: that can cause GC, which can
4430 clobber objects stored in the tmp_intervals. */
4431 tmp_interval3 = validate_interval_range (buf, &startr1, &endr2, 0);
4432 if (!NULL_INTERVAL_P (tmp_interval3))
4433 set_text_properties_1 (startr1, endr2, Qnil, buf, tmp_interval3);
4435 /* First region smaller than second. */
4436 if (len1_byte < len2_byte)
4438 USE_SAFE_ALLOCA;
4440 SAFE_ALLOCA (temp, unsigned char *, len2_byte);
4442 /* Don't precompute these addresses. We have to compute them
4443 at the last minute, because the relocating allocator might
4444 have moved the buffer around during the xmalloc. */
4445 start1_addr = BYTE_POS_ADDR (start1_byte);
4446 start2_addr = BYTE_POS_ADDR (start2_byte);
4448 bcopy (start2_addr, temp, len2_byte);
4449 bcopy (start1_addr, start1_addr + len2_byte, len1_byte);
4450 bcopy (temp, start1_addr, len2_byte);
4451 SAFE_FREE ();
4453 else
4454 /* First region not smaller than second. */
4456 USE_SAFE_ALLOCA;
4458 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4459 start1_addr = BYTE_POS_ADDR (start1_byte);
4460 start2_addr = BYTE_POS_ADDR (start2_byte);
4461 bcopy (start1_addr, temp, len1_byte);
4462 bcopy (start2_addr, start1_addr, len2_byte);
4463 bcopy (temp, start1_addr + len2_byte, len1_byte);
4464 SAFE_FREE ();
4466 graft_intervals_into_buffer (tmp_interval1, start1 + len2,
4467 len1, current_buffer, 0);
4468 graft_intervals_into_buffer (tmp_interval2, start1,
4469 len2, current_buffer, 0);
4470 update_compositions (start1, start1 + len2, CHECK_BORDER);
4471 update_compositions (start1 + len2, end2, CHECK_TAIL);
4473 /* Non-adjacent regions, because end1 != start2, bleagh... */
4474 else
4476 len_mid = start2_byte - (start1_byte + len1_byte);
4478 if (len1_byte == len2_byte)
4479 /* Regions are same size, though, how nice. */
4481 USE_SAFE_ALLOCA;
4483 modify_region (current_buffer, start1, end1, 0);
4484 modify_region (current_buffer, start2, end2, 0);
4485 record_change (start1, len1);
4486 record_change (start2, len2);
4487 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4488 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4490 tmp_interval3 = validate_interval_range (buf, &startr1, &endr1, 0);
4491 if (!NULL_INTERVAL_P (tmp_interval3))
4492 set_text_properties_1 (startr1, endr1, Qnil, buf, tmp_interval3);
4494 tmp_interval3 = validate_interval_range (buf, &startr2, &endr2, 0);
4495 if (!NULL_INTERVAL_P (tmp_interval3))
4496 set_text_properties_1 (startr2, endr2, Qnil, buf, tmp_interval3);
4498 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4499 start1_addr = BYTE_POS_ADDR (start1_byte);
4500 start2_addr = BYTE_POS_ADDR (start2_byte);
4501 bcopy (start1_addr, temp, len1_byte);
4502 bcopy (start2_addr, start1_addr, len2_byte);
4503 bcopy (temp, start2_addr, len1_byte);
4504 SAFE_FREE ();
4506 graft_intervals_into_buffer (tmp_interval1, start2,
4507 len1, current_buffer, 0);
4508 graft_intervals_into_buffer (tmp_interval2, start1,
4509 len2, current_buffer, 0);
4512 else if (len1_byte < len2_byte) /* Second region larger than first */
4513 /* Non-adjacent & unequal size, area between must also be shifted. */
4515 USE_SAFE_ALLOCA;
4517 modify_region (current_buffer, start1, end2, 0);
4518 record_change (start1, (end2 - start1));
4519 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4520 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
4521 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4523 tmp_interval3 = validate_interval_range (buf, &startr1, &endr2, 0);
4524 if (!NULL_INTERVAL_P (tmp_interval3))
4525 set_text_properties_1 (startr1, endr2, Qnil, buf, tmp_interval3);
4527 /* holds region 2 */
4528 SAFE_ALLOCA (temp, unsigned char *, len2_byte);
4529 start1_addr = BYTE_POS_ADDR (start1_byte);
4530 start2_addr = BYTE_POS_ADDR (start2_byte);
4531 bcopy (start2_addr, temp, len2_byte);
4532 bcopy (start1_addr, start1_addr + len_mid + len2_byte, len1_byte);
4533 safe_bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
4534 bcopy (temp, start1_addr, len2_byte);
4535 SAFE_FREE ();
4537 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4538 len1, current_buffer, 0);
4539 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4540 len_mid, current_buffer, 0);
4541 graft_intervals_into_buffer (tmp_interval2, start1,
4542 len2, current_buffer, 0);
4544 else
4545 /* Second region smaller than first. */
4547 USE_SAFE_ALLOCA;
4549 record_change (start1, (end2 - start1));
4550 modify_region (current_buffer, start1, end2, 0);
4552 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4553 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
4554 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4556 tmp_interval3 = validate_interval_range (buf, &startr1, &endr2, 0);
4557 if (!NULL_INTERVAL_P (tmp_interval3))
4558 set_text_properties_1 (startr1, endr2, Qnil, buf, tmp_interval3);
4560 /* holds region 1 */
4561 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4562 start1_addr = BYTE_POS_ADDR (start1_byte);
4563 start2_addr = BYTE_POS_ADDR (start2_byte);
4564 bcopy (start1_addr, temp, len1_byte);
4565 bcopy (start2_addr, start1_addr, len2_byte);
4566 bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
4567 bcopy (temp, start1_addr + len2_byte + len_mid, len1_byte);
4568 SAFE_FREE ();
4570 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4571 len1, current_buffer, 0);
4572 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4573 len_mid, current_buffer, 0);
4574 graft_intervals_into_buffer (tmp_interval2, start1,
4575 len2, current_buffer, 0);
4578 update_compositions (start1, start1 + len2, CHECK_BORDER);
4579 update_compositions (end2 - len1, end2, CHECK_BORDER);
4582 /* When doing multiple transpositions, it might be nice
4583 to optimize this. Perhaps the markers in any one buffer
4584 should be organized in some sorted data tree. */
4585 if (NILP (leave_markers))
4587 transpose_markers (start1, end1, start2, end2,
4588 start1_byte, start1_byte + len1_byte,
4589 start2_byte, start2_byte + len2_byte);
4590 fix_start_end_in_overlays (start1, end2);
4593 signal_after_change (start1, end2 - start1, end2 - start1);
4594 return Qnil;
4598 void
4599 syms_of_editfns ()
4601 environbuf = 0;
4602 initial_tz = 0;
4604 Qbuffer_access_fontify_functions
4605 = intern ("buffer-access-fontify-functions");
4606 staticpro (&Qbuffer_access_fontify_functions);
4608 DEFVAR_LISP ("inhibit-field-text-motion", &Vinhibit_field_text_motion,
4609 doc: /* Non-nil means text motion commands don't notice fields. */);
4610 Vinhibit_field_text_motion = Qnil;
4612 DEFVAR_LISP ("buffer-access-fontify-functions",
4613 &Vbuffer_access_fontify_functions,
4614 doc: /* List of functions called by `buffer-substring' to fontify if necessary.
4615 Each function is called with two arguments which specify the range
4616 of the buffer being accessed. */);
4617 Vbuffer_access_fontify_functions = Qnil;
4620 Lisp_Object obuf;
4621 extern Lisp_Object Vprin1_to_string_buffer;
4622 obuf = Fcurrent_buffer ();
4623 /* Do this here, because init_buffer_once is too early--it won't work. */
4624 Fset_buffer (Vprin1_to_string_buffer);
4625 /* Make sure buffer-access-fontify-functions is nil in this buffer. */
4626 Fset (Fmake_local_variable (intern ("buffer-access-fontify-functions")),
4627 Qnil);
4628 Fset_buffer (obuf);
4631 DEFVAR_LISP ("buffer-access-fontified-property",
4632 &Vbuffer_access_fontified_property,
4633 doc: /* Property which (if non-nil) indicates text has been fontified.
4634 `buffer-substring' need not call the `buffer-access-fontify-functions'
4635 functions if all the text being accessed has this property. */);
4636 Vbuffer_access_fontified_property = Qnil;
4638 DEFVAR_LISP ("system-name", &Vsystem_name,
4639 doc: /* The host name of the machine Emacs is running on. */);
4641 DEFVAR_LISP ("user-full-name", &Vuser_full_name,
4642 doc: /* The full name of the user logged in. */);
4644 DEFVAR_LISP ("user-login-name", &Vuser_login_name,
4645 doc: /* The user's name, taken from environment variables if possible. */);
4647 DEFVAR_LISP ("user-real-login-name", &Vuser_real_login_name,
4648 doc: /* The user's name, based upon the real uid only. */);
4650 DEFVAR_LISP ("operating-system-release", &Voperating_system_release,
4651 doc: /* The release of the operating system Emacs is running on. */);
4653 defsubr (&Spropertize);
4654 defsubr (&Schar_equal);
4655 defsubr (&Sgoto_char);
4656 defsubr (&Sstring_to_char);
4657 defsubr (&Schar_to_string);
4658 defsubr (&Sbuffer_substring);
4659 defsubr (&Sbuffer_substring_no_properties);
4660 defsubr (&Sbuffer_string);
4662 defsubr (&Spoint_marker);
4663 defsubr (&Smark_marker);
4664 defsubr (&Spoint);
4665 defsubr (&Sregion_beginning);
4666 defsubr (&Sregion_end);
4668 staticpro (&Qfield);
4669 Qfield = intern ("field");
4670 staticpro (&Qboundary);
4671 Qboundary = intern ("boundary");
4672 defsubr (&Sfield_beginning);
4673 defsubr (&Sfield_end);
4674 defsubr (&Sfield_string);
4675 defsubr (&Sfield_string_no_properties);
4676 defsubr (&Sdelete_field);
4677 defsubr (&Sconstrain_to_field);
4679 defsubr (&Sline_beginning_position);
4680 defsubr (&Sline_end_position);
4682 /* defsubr (&Smark); */
4683 /* defsubr (&Sset_mark); */
4684 defsubr (&Ssave_excursion);
4685 defsubr (&Ssave_current_buffer);
4687 defsubr (&Sbufsize);
4688 defsubr (&Spoint_max);
4689 defsubr (&Spoint_min);
4690 defsubr (&Spoint_min_marker);
4691 defsubr (&Spoint_max_marker);
4692 defsubr (&Sgap_position);
4693 defsubr (&Sgap_size);
4694 defsubr (&Sposition_bytes);
4695 defsubr (&Sbyte_to_position);
4697 defsubr (&Sbobp);
4698 defsubr (&Seobp);
4699 defsubr (&Sbolp);
4700 defsubr (&Seolp);
4701 defsubr (&Sfollowing_char);
4702 defsubr (&Sprevious_char);
4703 defsubr (&Schar_after);
4704 defsubr (&Schar_before);
4705 defsubr (&Sinsert);
4706 defsubr (&Sinsert_before_markers);
4707 defsubr (&Sinsert_and_inherit);
4708 defsubr (&Sinsert_and_inherit_before_markers);
4709 defsubr (&Sinsert_char);
4710 defsubr (&Sinsert_byte);
4712 defsubr (&Suser_login_name);
4713 defsubr (&Suser_real_login_name);
4714 defsubr (&Suser_uid);
4715 defsubr (&Suser_real_uid);
4716 defsubr (&Suser_full_name);
4717 defsubr (&Semacs_pid);
4718 defsubr (&Scurrent_time);
4719 defsubr (&Sget_internal_run_time);
4720 defsubr (&Sformat_time_string);
4721 defsubr (&Sfloat_time);
4722 defsubr (&Sdecode_time);
4723 defsubr (&Sencode_time);
4724 defsubr (&Scurrent_time_string);
4725 defsubr (&Scurrent_time_zone);
4726 defsubr (&Sset_time_zone_rule);
4727 defsubr (&Ssystem_name);
4728 defsubr (&Smessage);
4729 defsubr (&Smessage_box);
4730 defsubr (&Smessage_or_box);
4731 defsubr (&Scurrent_message);
4732 defsubr (&Sformat);
4734 defsubr (&Sinsert_buffer_substring);
4735 defsubr (&Scompare_buffer_substrings);
4736 defsubr (&Ssubst_char_in_region);
4737 defsubr (&Stranslate_region_internal);
4738 defsubr (&Sdelete_region);
4739 defsubr (&Sdelete_and_extract_region);
4740 defsubr (&Swiden);
4741 defsubr (&Snarrow_to_region);
4742 defsubr (&Ssave_restriction);
4743 defsubr (&Stranspose_regions);
4746 /* arch-tag: fc3827d8-6f60-4067-b11e-c3218031b018
4747 (do not change this comment) */