(font-lock-defontify): Use restore-buffer-modified-p.
[emacs.git] / src / editfns.c
blob0c012514f93aa10d214a4670989bfb08f272aa70
1 /* Lisp functions pertaining to editing.
2 Copyright (C) 1985,86,87,89,93,94,95,96,97,98, 1999, 2000, 2001, 2002
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include <config.h>
24 #include <sys/types.h>
26 #ifdef VMS
27 #include "vms-pwd.h"
28 #else
29 #include <pwd.h>
30 #endif
32 #ifdef HAVE_UNISTD_H
33 #include <unistd.h>
34 #endif
36 /* Without this, sprintf on Mac OS Classic will produce wrong
37 result. */
38 #ifdef MAC_OS8
39 #include <stdio.h>
40 #endif
42 #include <ctype.h>
44 #include "lisp.h"
45 #include "intervals.h"
46 #include "buffer.h"
47 #include "charset.h"
48 #include "coding.h"
49 #include "frame.h"
50 #include "window.h"
52 #include "systime.h"
54 #ifdef STDC_HEADERS
55 #include <float.h>
56 #define MAX_10_EXP DBL_MAX_10_EXP
57 #else
58 #define MAX_10_EXP 310
59 #endif
61 #ifndef NULL
62 #define NULL 0
63 #endif
65 #ifndef USE_CRT_DLL
66 extern char **environ;
67 #endif
69 extern Lisp_Object make_time P_ ((time_t));
70 extern size_t emacs_strftimeu P_ ((char *, size_t, const char *,
71 const struct tm *, int));
72 static int tm_diff P_ ((struct tm *, struct tm *));
73 static void find_field P_ ((Lisp_Object, Lisp_Object, Lisp_Object, int *, Lisp_Object, int *));
74 static void update_buffer_properties P_ ((int, int));
75 static Lisp_Object region_limit P_ ((int));
76 static int lisp_time_argument P_ ((Lisp_Object, time_t *, int *));
77 static size_t emacs_memftimeu P_ ((char *, size_t, const char *,
78 size_t, const struct tm *, int));
79 static void general_insert_function P_ ((void (*) (const unsigned char *, int),
80 void (*) (Lisp_Object, int, int, int,
81 int, int),
82 int, int, Lisp_Object *));
83 static Lisp_Object subst_char_in_region_unwind P_ ((Lisp_Object));
84 static Lisp_Object subst_char_in_region_unwind_1 P_ ((Lisp_Object));
85 static void transpose_markers P_ ((int, int, int, int, int, int, int, int));
87 #ifdef HAVE_INDEX
88 extern char *index P_ ((const char *, int));
89 #endif
91 Lisp_Object Vbuffer_access_fontify_functions;
92 Lisp_Object Qbuffer_access_fontify_functions;
93 Lisp_Object Vbuffer_access_fontified_property;
95 Lisp_Object Fuser_full_name P_ ((Lisp_Object));
97 /* Non-nil means don't stop at field boundary in text motion commands. */
99 Lisp_Object Vinhibit_field_text_motion;
101 /* Some static data, and a function to initialize it for each run */
103 Lisp_Object Vsystem_name;
104 Lisp_Object Vuser_real_login_name; /* login name of current user ID */
105 Lisp_Object Vuser_full_name; /* full name of current user */
106 Lisp_Object Vuser_login_name; /* user name from LOGNAME or USER */
108 /* Symbol for the text property used to mark fields. */
110 Lisp_Object Qfield;
112 /* A special value for Qfield properties. */
114 Lisp_Object Qboundary;
117 void
118 init_editfns ()
120 char *user_name;
121 register unsigned char *p;
122 struct passwd *pw; /* password entry for the current user */
123 Lisp_Object tem;
125 /* Set up system_name even when dumping. */
126 init_system_name ();
128 #ifndef CANNOT_DUMP
129 /* Don't bother with this on initial start when just dumping out */
130 if (!initialized)
131 return;
132 #endif /* not CANNOT_DUMP */
134 pw = (struct passwd *) getpwuid (getuid ());
135 #ifdef MSDOS
136 /* We let the real user name default to "root" because that's quite
137 accurate on MSDOG and because it lets Emacs find the init file.
138 (The DVX libraries override the Djgpp libraries here.) */
139 Vuser_real_login_name = build_string (pw ? pw->pw_name : "root");
140 #else
141 Vuser_real_login_name = build_string (pw ? pw->pw_name : "unknown");
142 #endif
144 /* Get the effective user name, by consulting environment variables,
145 or the effective uid if those are unset. */
146 user_name = (char *) getenv ("LOGNAME");
147 if (!user_name)
148 #ifdef WINDOWSNT
149 user_name = (char *) getenv ("USERNAME"); /* it's USERNAME on NT */
150 #else /* WINDOWSNT */
151 user_name = (char *) getenv ("USER");
152 #endif /* WINDOWSNT */
153 if (!user_name)
155 pw = (struct passwd *) getpwuid (geteuid ());
156 user_name = (char *) (pw ? pw->pw_name : "unknown");
158 Vuser_login_name = build_string (user_name);
160 /* If the user name claimed in the environment vars differs from
161 the real uid, use the claimed name to find the full name. */
162 tem = Fstring_equal (Vuser_login_name, Vuser_real_login_name);
163 Vuser_full_name = Fuser_full_name (NILP (tem)? make_number (geteuid())
164 : Vuser_login_name);
166 p = (unsigned char *) getenv ("NAME");
167 if (p)
168 Vuser_full_name = build_string (p);
169 else if (NILP (Vuser_full_name))
170 Vuser_full_name = build_string ("unknown");
173 DEFUN ("char-to-string", Fchar_to_string, Schar_to_string, 1, 1, 0,
174 doc: /* Convert arg CHAR to a string containing that character.
175 usage: (char-to-string CHAR) */)
176 (character)
177 Lisp_Object character;
179 int len;
180 unsigned char str[MAX_MULTIBYTE_LENGTH];
182 CHECK_NUMBER (character);
184 len = (SINGLE_BYTE_CHAR_P (XFASTINT (character))
185 ? (*str = (unsigned char)(XFASTINT (character)), 1)
186 : char_to_string (XFASTINT (character), str));
187 return make_string_from_bytes (str, 1, len);
190 DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0,
191 doc: /* Convert arg STRING to a character, the first character of that string.
192 A multibyte character is handled correctly. */)
193 (string)
194 register Lisp_Object string;
196 register Lisp_Object val;
197 CHECK_STRING (string);
198 if (SCHARS (string))
200 if (STRING_MULTIBYTE (string))
201 XSETFASTINT (val, STRING_CHAR (SDATA (string), SBYTES (string)));
202 else
203 XSETFASTINT (val, SREF (string, 0));
205 else
206 XSETFASTINT (val, 0);
207 return val;
210 static Lisp_Object
211 buildmark (charpos, bytepos)
212 int charpos, bytepos;
214 register Lisp_Object mark;
215 mark = Fmake_marker ();
216 set_marker_both (mark, Qnil, charpos, bytepos);
217 return mark;
220 DEFUN ("point", Fpoint, Spoint, 0, 0, 0,
221 doc: /* Return value of point, as an integer.
222 Beginning of buffer is position (point-min). */)
225 Lisp_Object temp;
226 XSETFASTINT (temp, PT);
227 return temp;
230 DEFUN ("point-marker", Fpoint_marker, Spoint_marker, 0, 0, 0,
231 doc: /* Return value of point, as a marker object. */)
234 return buildmark (PT, PT_BYTE);
238 clip_to_bounds (lower, num, upper)
239 int lower, num, upper;
241 if (num < lower)
242 return lower;
243 else if (num > upper)
244 return upper;
245 else
246 return num;
249 DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ",
250 doc: /* Set point to POSITION, a number or marker.
251 Beginning of buffer is position (point-min), end is (point-max).
252 If the position is in the middle of a multibyte form,
253 the actual point is set at the head of the multibyte form
254 except in the case that `enable-multibyte-characters' is nil. */)
255 (position)
256 register Lisp_Object position;
258 int pos;
260 if (MARKERP (position)
261 && current_buffer == XMARKER (position)->buffer)
263 pos = marker_position (position);
264 if (pos < BEGV)
265 SET_PT_BOTH (BEGV, BEGV_BYTE);
266 else if (pos > ZV)
267 SET_PT_BOTH (ZV, ZV_BYTE);
268 else
269 SET_PT_BOTH (pos, marker_byte_position (position));
271 return position;
274 CHECK_NUMBER_COERCE_MARKER (position);
276 pos = clip_to_bounds (BEGV, XINT (position), ZV);
277 SET_PT (pos);
278 return position;
282 /* Return the start or end position of the region.
283 BEGINNINGP non-zero means return the start.
284 If there is no region active, signal an error. */
286 static Lisp_Object
287 region_limit (beginningp)
288 int beginningp;
290 extern Lisp_Object Vmark_even_if_inactive; /* Defined in callint.c. */
291 Lisp_Object m;
293 if (!NILP (Vtransient_mark_mode)
294 && NILP (Vmark_even_if_inactive)
295 && NILP (current_buffer->mark_active))
296 Fsignal (Qmark_inactive, Qnil);
298 m = Fmarker_position (current_buffer->mark);
299 if (NILP (m))
300 error ("The mark is not set now, so there is no region");
302 if ((PT < XFASTINT (m)) == beginningp)
303 m = make_number (PT);
304 return m;
307 DEFUN ("region-beginning", Fregion_beginning, Sregion_beginning, 0, 0, 0,
308 doc: /* Return position of beginning of region, as an integer. */)
311 return region_limit (1);
314 DEFUN ("region-end", Fregion_end, Sregion_end, 0, 0, 0,
315 doc: /* Return position of end of region, as an integer. */)
318 return region_limit (0);
321 DEFUN ("mark-marker", Fmark_marker, Smark_marker, 0, 0, 0,
322 doc: /* Return this buffer's mark, as a marker object.
323 Watch out! Moving this marker changes the mark position.
324 If you set the marker not to point anywhere, the buffer will have no mark. */)
327 return current_buffer->mark;
331 /* Find all the overlays in the current buffer that touch position POS.
332 Return the number found, and store them in a vector in VEC
333 of length LEN. */
335 static int
336 overlays_around (pos, vec, len)
337 int pos;
338 Lisp_Object *vec;
339 int len;
341 Lisp_Object tail, overlay, start, end;
342 int startpos, endpos;
343 int idx = 0;
345 for (tail = current_buffer->overlays_before;
346 GC_CONSP (tail);
347 tail = XCDR (tail))
349 overlay = XCAR (tail);
351 end = OVERLAY_END (overlay);
352 endpos = OVERLAY_POSITION (end);
353 if (endpos < pos)
354 break;
355 start = OVERLAY_START (overlay);
356 startpos = OVERLAY_POSITION (start);
357 if (startpos <= pos)
359 if (idx < len)
360 vec[idx] = overlay;
361 /* Keep counting overlays even if we can't return them all. */
362 idx++;
366 for (tail = current_buffer->overlays_after;
367 GC_CONSP (tail);
368 tail = XCDR (tail))
370 overlay = XCAR (tail);
372 start = OVERLAY_START (overlay);
373 startpos = OVERLAY_POSITION (start);
374 if (pos < startpos)
375 break;
376 end = OVERLAY_END (overlay);
377 endpos = OVERLAY_POSITION (end);
378 if (pos <= endpos)
380 if (idx < len)
381 vec[idx] = overlay;
382 idx++;
386 return idx;
389 /* Return the value of property PROP, in OBJECT at POSITION.
390 It's the value of PROP that a char inserted at POSITION would get.
391 OBJECT is optional and defaults to the current buffer.
392 If OBJECT is a buffer, then overlay properties are considered as well as
393 text properties.
394 If OBJECT is a window, then that window's buffer is used, but
395 window-specific overlays are considered only if they are associated
396 with OBJECT. */
397 Lisp_Object
398 get_pos_property (position, prop, object)
399 Lisp_Object position, object;
400 register Lisp_Object prop;
402 struct window *w = 0;
404 CHECK_NUMBER_COERCE_MARKER (position);
406 if (NILP (object))
407 XSETBUFFER (object, current_buffer);
409 if (WINDOWP (object))
411 w = XWINDOW (object);
412 object = w->buffer;
414 if (BUFFERP (object))
416 int posn = XINT (position);
417 int noverlays;
418 Lisp_Object *overlay_vec, tem;
419 struct buffer *obuf = current_buffer;
421 set_buffer_temp (XBUFFER (object));
423 /* First try with room for 40 overlays. */
424 noverlays = 40;
425 overlay_vec = (Lisp_Object *) alloca (noverlays * sizeof (Lisp_Object));
426 noverlays = overlays_around (posn, overlay_vec, noverlays);
428 /* If there are more than 40,
429 make enough space for all, and try again. */
430 if (noverlays > 40)
432 overlay_vec = (Lisp_Object *) alloca (noverlays * sizeof (Lisp_Object));
433 noverlays = overlays_around (posn, overlay_vec, noverlays);
435 noverlays = sort_overlays (overlay_vec, noverlays, NULL);
437 set_buffer_temp (obuf);
439 /* Now check the overlays in order of decreasing priority. */
440 while (--noverlays >= 0)
442 Lisp_Object ol = overlay_vec[noverlays];
443 tem = Foverlay_get (ol, prop);
444 if (!NILP (tem))
446 /* Check the overlay is indeed active at point. */
447 Lisp_Object start = OVERLAY_START (ol), finish = OVERLAY_END (ol);
448 if ((OVERLAY_POSITION (start) == posn
449 && XMARKER (start)->insertion_type == 1)
450 || (OVERLAY_POSITION (finish) == posn
451 && XMARKER (finish)->insertion_type == 0))
452 ; /* The overlay will not cover a char inserted at point. */
453 else
455 return tem;
462 { /* Now check the text-properties. */
463 int stickiness = text_property_stickiness (prop, position);
464 if (stickiness > 0)
465 return Fget_text_property (position, prop, Qnil);
466 else if (stickiness < 0 && XINT (position) > BEGV)
467 return Fget_text_property (make_number (XINT (position) - 1),
468 prop, Qnil);
469 else
470 return Qnil;
474 /* Find the field surrounding POS in *BEG and *END. If POS is nil,
475 the value of point is used instead. If BEG or END null,
476 means don't store the beginning or end of the field.
478 BEG_LIMIT and END_LIMIT serve to limit the ranged of the returned
479 results; they do not effect boundary behavior.
481 If MERGE_AT_BOUNDARY is nonzero, then if POS is at the very first
482 position of a field, then the beginning of the previous field is
483 returned instead of the beginning of POS's field (since the end of a
484 field is actually also the beginning of the next input field, this
485 behavior is sometimes useful). Additionally in the MERGE_AT_BOUNDARY
486 true case, if two fields are separated by a field with the special
487 value `boundary', and POS lies within it, then the two separated
488 fields are considered to be adjacent, and POS between them, when
489 finding the beginning and ending of the "merged" field.
491 Either BEG or END may be 0, in which case the corresponding value
492 is not stored. */
494 static void
495 find_field (pos, merge_at_boundary, beg_limit, beg, end_limit, end)
496 Lisp_Object pos;
497 Lisp_Object merge_at_boundary;
498 Lisp_Object beg_limit, end_limit;
499 int *beg, *end;
501 /* Fields right before and after the point. */
502 Lisp_Object before_field, after_field;
503 /* 1 if POS counts as the start of a field. */
504 int at_field_start = 0;
505 /* 1 if POS counts as the end of a field. */
506 int at_field_end = 0;
508 if (NILP (pos))
509 XSETFASTINT (pos, PT);
510 else
511 CHECK_NUMBER_COERCE_MARKER (pos);
513 after_field
514 = get_char_property_and_overlay (pos, Qfield, Qnil, NULL);
515 before_field
516 = (XFASTINT (pos) > BEGV
517 ? get_char_property_and_overlay (make_number (XINT (pos) - 1),
518 Qfield, Qnil, NULL)
519 : Qnil);
521 /* See if we need to handle the case where MERGE_AT_BOUNDARY is nil
522 and POS is at beginning of a field, which can also be interpreted
523 as the end of the previous field. Note that the case where if
524 MERGE_AT_BOUNDARY is non-nil (see function comment) is actually the
525 more natural one; then we avoid treating the beginning of a field
526 specially. */
527 if (NILP (merge_at_boundary))
529 Lisp_Object field = get_pos_property (pos, Qfield, Qnil);
530 if (!EQ (field, after_field))
531 at_field_end = 1;
532 if (!EQ (field, before_field))
533 at_field_start = 1;
534 if (NILP (field) && at_field_start && at_field_end)
535 /* If an inserted char would have a nil field while the surrounding
536 text is non-nil, we're probably not looking at a
537 zero-length field, but instead at a non-nil field that's
538 not intended for editing (such as comint's prompts). */
539 at_field_end = at_field_start = 0;
542 /* Note about special `boundary' fields:
544 Consider the case where the point (`.') is between the fields `x' and `y':
546 xxxx.yyyy
548 In this situation, if merge_at_boundary is true, we consider the
549 `x' and `y' fields as forming one big merged field, and so the end
550 of the field is the end of `y'.
552 However, if `x' and `y' are separated by a special `boundary' field
553 (a field with a `field' char-property of 'boundary), then we ignore
554 this special field when merging adjacent fields. Here's the same
555 situation, but with a `boundary' field between the `x' and `y' fields:
557 xxx.BBBByyyy
559 Here, if point is at the end of `x', the beginning of `y', or
560 anywhere in-between (within the `boundary' field), we merge all
561 three fields and consider the beginning as being the beginning of
562 the `x' field, and the end as being the end of the `y' field. */
564 if (beg)
566 if (at_field_start)
567 /* POS is at the edge of a field, and we should consider it as
568 the beginning of the following field. */
569 *beg = XFASTINT (pos);
570 else
571 /* Find the previous field boundary. */
573 Lisp_Object p = pos;
574 if (!NILP (merge_at_boundary) && EQ (before_field, Qboundary))
575 /* Skip a `boundary' field. */
576 p = Fprevious_single_char_property_change (p, Qfield, Qnil,
577 beg_limit);
579 p = Fprevious_single_char_property_change (p, Qfield, Qnil,
580 beg_limit);
581 *beg = NILP (p) ? BEGV : XFASTINT (p);
585 if (end)
587 if (at_field_end)
588 /* POS is at the edge of a field, and we should consider it as
589 the end of the previous field. */
590 *end = XFASTINT (pos);
591 else
592 /* Find the next field boundary. */
594 if (!NILP (merge_at_boundary) && EQ (after_field, Qboundary))
595 /* Skip a `boundary' field. */
596 pos = Fnext_single_char_property_change (pos, Qfield, Qnil,
597 end_limit);
599 pos = Fnext_single_char_property_change (pos, Qfield, Qnil,
600 end_limit);
601 *end = NILP (pos) ? ZV : XFASTINT (pos);
607 DEFUN ("delete-field", Fdelete_field, Sdelete_field, 0, 1, 0,
608 doc: /* Delete the field surrounding POS.
609 A field is a region of text with the same `field' property.
610 If POS is nil, the value of point is used for POS. */)
611 (pos)
612 Lisp_Object pos;
614 int beg, end;
615 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
616 if (beg != end)
617 del_range (beg, end);
618 return Qnil;
621 DEFUN ("field-string", Ffield_string, Sfield_string, 0, 1, 0,
622 doc: /* Return the contents of the field surrounding POS as a string.
623 A field is a region of text with the same `field' property.
624 If POS is nil, the value of point is used for POS. */)
625 (pos)
626 Lisp_Object pos;
628 int beg, end;
629 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
630 return make_buffer_string (beg, end, 1);
633 DEFUN ("field-string-no-properties", Ffield_string_no_properties, Sfield_string_no_properties, 0, 1, 0,
634 doc: /* Return the contents of the field around POS, without text-properties.
635 A field is a region of text with the same `field' property.
636 If POS is nil, the value of point is used for POS. */)
637 (pos)
638 Lisp_Object pos;
640 int beg, end;
641 find_field (pos, Qnil, Qnil, &beg, Qnil, &end);
642 return make_buffer_string (beg, end, 0);
645 DEFUN ("field-beginning", Ffield_beginning, Sfield_beginning, 0, 3, 0,
646 doc: /* Return the beginning of the field surrounding POS.
647 A field is a region of text with the same `field' property.
648 If POS is nil, the value of point is used for POS.
649 If ESCAPE-FROM-EDGE is non-nil and POS is at the beginning of its
650 field, then the beginning of the *previous* field is returned.
651 If LIMIT is non-nil, it is a buffer position; if the beginning of the field
652 is before LIMIT, then LIMIT will be returned instead. */)
653 (pos, escape_from_edge, limit)
654 Lisp_Object pos, escape_from_edge, limit;
656 int beg;
657 find_field (pos, escape_from_edge, limit, &beg, Qnil, 0);
658 return make_number (beg);
661 DEFUN ("field-end", Ffield_end, Sfield_end, 0, 3, 0,
662 doc: /* Return the end of the field surrounding POS.
663 A field is a region of text with the same `field' property.
664 If POS is nil, the value of point is used for POS.
665 If ESCAPE-FROM-EDGE is non-nil and POS is at the end of its field,
666 then the end of the *following* field is returned.
667 If LIMIT is non-nil, it is a buffer position; if the end of the field
668 is after LIMIT, then LIMIT will be returned instead. */)
669 (pos, escape_from_edge, limit)
670 Lisp_Object pos, escape_from_edge, limit;
672 int end;
673 find_field (pos, escape_from_edge, Qnil, 0, limit, &end);
674 return make_number (end);
677 DEFUN ("constrain-to-field", Fconstrain_to_field, Sconstrain_to_field, 2, 5, 0,
678 doc: /* Return the position closest to NEW-POS that is in the same field as OLD-POS.
680 A field is a region of text with the same `field' property.
681 If NEW-POS is nil, then the current point is used instead, and set to the
682 constrained position if that is different.
684 If OLD-POS is at the boundary of two fields, then the allowable
685 positions for NEW-POS depends on the value of the optional argument
686 ESCAPE-FROM-EDGE: If ESCAPE-FROM-EDGE is nil, then NEW-POS is
687 constrained to the field that has the same `field' char-property
688 as any new characters inserted at OLD-POS, whereas if ESCAPE-FROM-EDGE
689 is non-nil, NEW-POS is constrained to the union of the two adjacent
690 fields. Additionally, if two fields are separated by another field with
691 the special value `boundary', then any point within this special field is
692 also considered to be `on the boundary'.
694 If the optional argument ONLY-IN-LINE is non-nil and constraining
695 NEW-POS would move it to a different line, NEW-POS is returned
696 unconstrained. This useful for commands that move by line, like
697 \\[next-line] or \\[beginning-of-line], which should generally respect field boundaries
698 only in the case where they can still move to the right line.
700 If the optional argument INHIBIT-CAPTURE-PROPERTY is non-nil, and OLD-POS has
701 a non-nil property of that name, then any field boundaries are ignored.
703 Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil. */)
704 (new_pos, old_pos, escape_from_edge, only_in_line, inhibit_capture_property)
705 Lisp_Object new_pos, old_pos;
706 Lisp_Object escape_from_edge, only_in_line, inhibit_capture_property;
708 /* If non-zero, then the original point, before re-positioning. */
709 int orig_point = 0;
711 if (NILP (new_pos))
712 /* Use the current point, and afterwards, set it. */
714 orig_point = PT;
715 XSETFASTINT (new_pos, PT);
718 if (NILP (Vinhibit_field_text_motion)
719 && !EQ (new_pos, old_pos)
720 && (!NILP (Fget_char_property (new_pos, Qfield, Qnil))
721 || !NILP (Fget_char_property (old_pos, Qfield, Qnil)))
722 && (NILP (inhibit_capture_property)
723 || NILP (Fget_char_property(old_pos, inhibit_capture_property, Qnil))))
724 /* NEW_POS is not within the same field as OLD_POS; try to
725 move NEW_POS so that it is. */
727 int fwd, shortage;
728 Lisp_Object field_bound;
730 CHECK_NUMBER_COERCE_MARKER (new_pos);
731 CHECK_NUMBER_COERCE_MARKER (old_pos);
733 fwd = (XFASTINT (new_pos) > XFASTINT (old_pos));
735 if (fwd)
736 field_bound = Ffield_end (old_pos, escape_from_edge, new_pos);
737 else
738 field_bound = Ffield_beginning (old_pos, escape_from_edge, new_pos);
740 if (/* See if ESCAPE_FROM_EDGE caused FIELD_BOUND to jump to the
741 other side of NEW_POS, which would mean that NEW_POS is
742 already acceptable, and it's not necessary to constrain it
743 to FIELD_BOUND. */
744 ((XFASTINT (field_bound) < XFASTINT (new_pos)) ? fwd : !fwd)
745 /* NEW_POS should be constrained, but only if either
746 ONLY_IN_LINE is nil (in which case any constraint is OK),
747 or NEW_POS and FIELD_BOUND are on the same line (in which
748 case the constraint is OK even if ONLY_IN_LINE is non-nil). */
749 && (NILP (only_in_line)
750 /* This is the ONLY_IN_LINE case, check that NEW_POS and
751 FIELD_BOUND are on the same line by seeing whether
752 there's an intervening newline or not. */
753 || (scan_buffer ('\n',
754 XFASTINT (new_pos), XFASTINT (field_bound),
755 fwd ? -1 : 1, &shortage, 1),
756 shortage != 0)))
757 /* Constrain NEW_POS to FIELD_BOUND. */
758 new_pos = field_bound;
760 if (orig_point && XFASTINT (new_pos) != orig_point)
761 /* The NEW_POS argument was originally nil, so automatically set PT. */
762 SET_PT (XFASTINT (new_pos));
765 return new_pos;
769 DEFUN ("line-beginning-position",
770 Fline_beginning_position, Sline_beginning_position, 0, 1, 0,
771 doc: /* Return the character position of the first character on the current line.
772 With argument N not nil or 1, move forward N - 1 lines first.
773 If scan reaches end of buffer, return that position.
775 The scan does not cross a field boundary unless doing so would move
776 beyond there to a different line; if N is nil or 1, and scan starts at a
777 field boundary, the scan stops as soon as it starts. To ignore field
778 boundaries bind `inhibit-field-text-motion' to t.
780 This function does not move point. */)
782 Lisp_Object n;
784 int orig, orig_byte, end;
786 if (NILP (n))
787 XSETFASTINT (n, 1);
788 else
789 CHECK_NUMBER (n);
791 orig = PT;
792 orig_byte = PT_BYTE;
793 Fforward_line (make_number (XINT (n) - 1));
794 end = PT;
796 SET_PT_BOTH (orig, orig_byte);
798 /* Return END constrained to the current input field. */
799 return Fconstrain_to_field (make_number (end), make_number (orig),
800 XINT (n) != 1 ? Qt : Qnil,
801 Qt, Qnil);
804 DEFUN ("line-end-position", Fline_end_position, Sline_end_position, 0, 1, 0,
805 doc: /* Return the character position of the last character on the current line.
806 With argument N not nil or 1, move forward N - 1 lines first.
807 If scan reaches end of buffer, return that position.
809 The scan does not cross a field boundary unless doing so would move
810 beyond there to a different line; if N is nil or 1, and scan starts at a
811 field boundary, the scan stops as soon as it starts. To ignore field
812 boundaries bind `inhibit-field-text-motion' to t.
814 This function does not move point. */)
816 Lisp_Object n;
818 int end_pos;
819 int orig = PT;
821 if (NILP (n))
822 XSETFASTINT (n, 1);
823 else
824 CHECK_NUMBER (n);
826 end_pos = find_before_next_newline (orig, 0, XINT (n) - (XINT (n) <= 0));
828 /* Return END_POS constrained to the current input field. */
829 return Fconstrain_to_field (make_number (end_pos), make_number (orig),
830 Qnil, Qt, Qnil);
834 Lisp_Object
835 save_excursion_save ()
837 int visible = (XBUFFER (XWINDOW (selected_window)->buffer)
838 == current_buffer);
840 return Fcons (Fpoint_marker (),
841 Fcons (Fcopy_marker (current_buffer->mark, Qnil),
842 Fcons (visible ? Qt : Qnil,
843 Fcons (current_buffer->mark_active,
844 selected_window))));
847 Lisp_Object
848 save_excursion_restore (info)
849 Lisp_Object info;
851 Lisp_Object tem, tem1, omark, nmark;
852 struct gcpro gcpro1, gcpro2, gcpro3;
853 int visible_p;
855 tem = Fmarker_buffer (XCAR (info));
856 /* If buffer being returned to is now deleted, avoid error */
857 /* Otherwise could get error here while unwinding to top level
858 and crash */
859 /* In that case, Fmarker_buffer returns nil now. */
860 if (NILP (tem))
861 return Qnil;
863 omark = nmark = Qnil;
864 GCPRO3 (info, omark, nmark);
866 Fset_buffer (tem);
868 /* Point marker. */
869 tem = XCAR (info);
870 Fgoto_char (tem);
871 unchain_marker (tem);
873 /* Mark marker. */
874 info = XCDR (info);
875 tem = XCAR (info);
876 omark = Fmarker_position (current_buffer->mark);
877 Fset_marker (current_buffer->mark, tem, Fcurrent_buffer ());
878 nmark = Fmarker_position (tem);
879 unchain_marker (tem);
881 /* visible */
882 info = XCDR (info);
883 visible_p = !NILP (XCAR (info));
885 #if 0 /* We used to make the current buffer visible in the selected window
886 if that was true previously. That avoids some anomalies.
887 But it creates others, and it wasn't documented, and it is simpler
888 and cleaner never to alter the window/buffer connections. */
889 tem1 = Fcar (tem);
890 if (!NILP (tem1)
891 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
892 Fswitch_to_buffer (Fcurrent_buffer (), Qnil);
893 #endif /* 0 */
895 /* Mark active */
896 info = XCDR (info);
897 tem = XCAR (info);
898 tem1 = current_buffer->mark_active;
899 current_buffer->mark_active = tem;
901 if (!NILP (Vrun_hooks))
903 /* If mark is active now, and either was not active
904 or was at a different place, run the activate hook. */
905 if (! NILP (current_buffer->mark_active))
907 if (! EQ (omark, nmark))
908 call1 (Vrun_hooks, intern ("activate-mark-hook"));
910 /* If mark has ceased to be active, run deactivate hook. */
911 else if (! NILP (tem1))
912 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
915 /* If buffer was visible in a window, and a different window was
916 selected, and the old selected window is still showing this
917 buffer, restore point in that window. */
918 tem = XCDR (info);
919 if (visible_p
920 && !EQ (tem, selected_window)
921 && (tem1 = XWINDOW (tem)->buffer,
922 (/* Window is live... */
923 BUFFERP (tem1)
924 /* ...and it shows the current buffer. */
925 && XBUFFER (tem1) == current_buffer)))
926 Fset_window_point (tem, make_number (PT));
928 UNGCPRO;
929 return Qnil;
932 DEFUN ("save-excursion", Fsave_excursion, Ssave_excursion, 0, UNEVALLED, 0,
933 doc: /* Save point, mark, and current buffer; execute BODY; restore those things.
934 Executes BODY just like `progn'.
935 The values of point, mark and the current buffer are restored
936 even in case of abnormal exit (throw or error).
937 The state of activation of the mark is also restored.
939 This construct does not save `deactivate-mark', and therefore
940 functions that change the buffer will still cause deactivation
941 of the mark at the end of the command. To prevent that, bind
942 `deactivate-mark' with `let'.
944 usage: (save-excursion &rest BODY) */)
945 (args)
946 Lisp_Object args;
948 register Lisp_Object val;
949 int count = SPECPDL_INDEX ();
951 record_unwind_protect (save_excursion_restore, save_excursion_save ());
953 val = Fprogn (args);
954 return unbind_to (count, val);
957 DEFUN ("save-current-buffer", Fsave_current_buffer, Ssave_current_buffer, 0, UNEVALLED, 0,
958 doc: /* Save the current buffer; execute BODY; restore the current buffer.
959 Executes BODY just like `progn'.
960 usage: (save-current-buffer &rest BODY) */)
961 (args)
962 Lisp_Object args;
964 Lisp_Object val;
965 int count = SPECPDL_INDEX ();
967 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
969 val = Fprogn (args);
970 return unbind_to (count, val);
973 DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 1, 0,
974 doc: /* Return the number of characters in the current buffer.
975 If BUFFER, return the number of characters in that buffer instead. */)
976 (buffer)
977 Lisp_Object buffer;
979 if (NILP (buffer))
980 return make_number (Z - BEG);
981 else
983 CHECK_BUFFER (buffer);
984 return make_number (BUF_Z (XBUFFER (buffer))
985 - BUF_BEG (XBUFFER (buffer)));
989 DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0,
990 doc: /* Return the minimum permissible value of point in the current buffer.
991 This is 1, unless narrowing (a buffer restriction) is in effect. */)
994 Lisp_Object temp;
995 XSETFASTINT (temp, BEGV);
996 return temp;
999 DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0,
1000 doc: /* Return a marker to the minimum permissible value of point in this buffer.
1001 This is the beginning, unless narrowing (a buffer restriction) is in effect. */)
1004 return buildmark (BEGV, BEGV_BYTE);
1007 DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0,
1008 doc: /* Return the maximum permissible value of point in the current buffer.
1009 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
1010 is in effect, in which case it is less. */)
1013 Lisp_Object temp;
1014 XSETFASTINT (temp, ZV);
1015 return temp;
1018 DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0,
1019 doc: /* Return a marker to the maximum permissible value of point in this buffer.
1020 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
1021 is in effect, in which case it is less. */)
1024 return buildmark (ZV, ZV_BYTE);
1027 DEFUN ("gap-position", Fgap_position, Sgap_position, 0, 0, 0,
1028 doc: /* Return the position of the gap, in the current buffer.
1029 See also `gap-size'. */)
1032 Lisp_Object temp;
1033 XSETFASTINT (temp, GPT);
1034 return temp;
1037 DEFUN ("gap-size", Fgap_size, Sgap_size, 0, 0, 0,
1038 doc: /* Return the size of the current buffer's gap.
1039 See also `gap-position'. */)
1042 Lisp_Object temp;
1043 XSETFASTINT (temp, GAP_SIZE);
1044 return temp;
1047 DEFUN ("position-bytes", Fposition_bytes, Sposition_bytes, 1, 1, 0,
1048 doc: /* Return the byte position for character position POSITION.
1049 If POSITION is out of range, the value is nil. */)
1050 (position)
1051 Lisp_Object position;
1053 CHECK_NUMBER_COERCE_MARKER (position);
1054 if (XINT (position) < BEG || XINT (position) > Z)
1055 return Qnil;
1056 return make_number (CHAR_TO_BYTE (XINT (position)));
1059 DEFUN ("byte-to-position", Fbyte_to_position, Sbyte_to_position, 1, 1, 0,
1060 doc: /* Return the character position for byte position BYTEPOS.
1061 If BYTEPOS is out of range, the value is nil. */)
1062 (bytepos)
1063 Lisp_Object bytepos;
1065 CHECK_NUMBER (bytepos);
1066 if (XINT (bytepos) < BEG_BYTE || XINT (bytepos) > Z_BYTE)
1067 return Qnil;
1068 return make_number (BYTE_TO_CHAR (XINT (bytepos)));
1071 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
1072 doc: /* Return the character following point, as a number.
1073 At the end of the buffer or accessible region, return 0. */)
1076 Lisp_Object temp;
1077 if (PT >= ZV)
1078 XSETFASTINT (temp, 0);
1079 else
1080 XSETFASTINT (temp, FETCH_CHAR (PT_BYTE));
1081 return temp;
1084 DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
1085 doc: /* Return the character preceding point, as a number.
1086 At the beginning of the buffer or accessible region, return 0. */)
1089 Lisp_Object temp;
1090 if (PT <= BEGV)
1091 XSETFASTINT (temp, 0);
1092 else if (!NILP (current_buffer->enable_multibyte_characters))
1094 int pos = PT_BYTE;
1095 DEC_POS (pos);
1096 XSETFASTINT (temp, FETCH_CHAR (pos));
1098 else
1099 XSETFASTINT (temp, FETCH_BYTE (PT_BYTE - 1));
1100 return temp;
1103 DEFUN ("bobp", Fbobp, Sbobp, 0, 0, 0,
1104 doc: /* Return t if point is at the beginning of the buffer.
1105 If the buffer is narrowed, this means the beginning of the narrowed part. */)
1108 if (PT == BEGV)
1109 return Qt;
1110 return Qnil;
1113 DEFUN ("eobp", Feobp, Seobp, 0, 0, 0,
1114 doc: /* Return t if point is at the end of the buffer.
1115 If the buffer is narrowed, this means the end of the narrowed part. */)
1118 if (PT == ZV)
1119 return Qt;
1120 return Qnil;
1123 DEFUN ("bolp", Fbolp, Sbolp, 0, 0, 0,
1124 doc: /* Return t if point is at the beginning of a line. */)
1127 if (PT == BEGV || FETCH_BYTE (PT_BYTE - 1) == '\n')
1128 return Qt;
1129 return Qnil;
1132 DEFUN ("eolp", Feolp, Seolp, 0, 0, 0,
1133 doc: /* Return t if point is at the end of a line.
1134 `End of a line' includes point being at the end of the buffer. */)
1137 if (PT == ZV || FETCH_BYTE (PT_BYTE) == '\n')
1138 return Qt;
1139 return Qnil;
1142 DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0,
1143 doc: /* Return character in current buffer at position POS.
1144 POS is an integer or a marker.
1145 If POS is out of range, the value is nil. */)
1146 (pos)
1147 Lisp_Object pos;
1149 register int pos_byte;
1151 if (NILP (pos))
1153 pos_byte = PT_BYTE;
1154 XSETFASTINT (pos, PT);
1157 if (MARKERP (pos))
1159 pos_byte = marker_byte_position (pos);
1160 if (pos_byte < BEGV_BYTE || pos_byte >= ZV_BYTE)
1161 return Qnil;
1163 else
1165 CHECK_NUMBER_COERCE_MARKER (pos);
1166 if (XINT (pos) < BEGV || XINT (pos) >= ZV)
1167 return Qnil;
1169 pos_byte = CHAR_TO_BYTE (XINT (pos));
1172 return make_number (FETCH_CHAR (pos_byte));
1175 DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0,
1176 doc: /* Return character in current buffer preceding position POS.
1177 POS is an integer or a marker.
1178 If POS is out of range, the value is nil. */)
1179 (pos)
1180 Lisp_Object pos;
1182 register Lisp_Object val;
1183 register int pos_byte;
1185 if (NILP (pos))
1187 pos_byte = PT_BYTE;
1188 XSETFASTINT (pos, PT);
1191 if (MARKERP (pos))
1193 pos_byte = marker_byte_position (pos);
1195 if (pos_byte <= BEGV_BYTE || pos_byte > ZV_BYTE)
1196 return Qnil;
1198 else
1200 CHECK_NUMBER_COERCE_MARKER (pos);
1202 if (XINT (pos) <= BEGV || XINT (pos) > ZV)
1203 return Qnil;
1205 pos_byte = CHAR_TO_BYTE (XINT (pos));
1208 if (!NILP (current_buffer->enable_multibyte_characters))
1210 DEC_POS (pos_byte);
1211 XSETFASTINT (val, FETCH_CHAR (pos_byte));
1213 else
1215 pos_byte--;
1216 XSETFASTINT (val, FETCH_BYTE (pos_byte));
1218 return val;
1221 DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 1, 0,
1222 doc: /* Return the name under which the user logged in, as a string.
1223 This is based on the effective uid, not the real uid.
1224 Also, if the environment variable LOGNAME or USER is set,
1225 that determines the value of this function.
1227 If optional argument UID is an integer, return the login name of the user
1228 with that uid, or nil if there is no such user. */)
1229 (uid)
1230 Lisp_Object uid;
1232 struct passwd *pw;
1234 /* Set up the user name info if we didn't do it before.
1235 (That can happen if Emacs is dumpable
1236 but you decide to run `temacs -l loadup' and not dump. */
1237 if (INTEGERP (Vuser_login_name))
1238 init_editfns ();
1240 if (NILP (uid))
1241 return Vuser_login_name;
1243 CHECK_NUMBER (uid);
1244 pw = (struct passwd *) getpwuid (XINT (uid));
1245 return (pw ? build_string (pw->pw_name) : Qnil);
1248 DEFUN ("user-real-login-name", Fuser_real_login_name, Suser_real_login_name,
1249 0, 0, 0,
1250 doc: /* Return the name of the user's real uid, as a string.
1251 This ignores the environment variables LOGNAME and USER, so it differs from
1252 `user-login-name' when running under `su'. */)
1255 /* Set up the user name info if we didn't do it before.
1256 (That can happen if Emacs is dumpable
1257 but you decide to run `temacs -l loadup' and not dump. */
1258 if (INTEGERP (Vuser_login_name))
1259 init_editfns ();
1260 return Vuser_real_login_name;
1263 DEFUN ("user-uid", Fuser_uid, Suser_uid, 0, 0, 0,
1264 doc: /* Return the effective uid of Emacs.
1265 Value is an integer or float, depending on the value. */)
1268 return make_fixnum_or_float (geteuid ());
1271 DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0,
1272 doc: /* Return the real uid of Emacs.
1273 Value is an integer or float, depending on the value. */)
1276 return make_fixnum_or_float (getuid ());
1279 DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 1, 0,
1280 doc: /* Return the full name of the user logged in, as a string.
1281 If the full name corresponding to Emacs's userid is not known,
1282 return "unknown".
1284 If optional argument UID is an integer or float, return the full name
1285 of the user with that uid, or nil if there is no such user.
1286 If UID is a string, return the full name of the user with that login
1287 name, or nil if there is no such user. */)
1288 (uid)
1289 Lisp_Object uid;
1291 struct passwd *pw;
1292 register unsigned char *p, *q;
1293 Lisp_Object full;
1295 if (NILP (uid))
1296 return Vuser_full_name;
1297 else if (NUMBERP (uid))
1298 pw = (struct passwd *) getpwuid ((uid_t) XFLOATINT (uid));
1299 else if (STRINGP (uid))
1300 pw = (struct passwd *) getpwnam (SDATA (uid));
1301 else
1302 error ("Invalid UID specification");
1304 if (!pw)
1305 return Qnil;
1307 p = (unsigned char *) USER_FULL_NAME;
1308 /* Chop off everything after the first comma. */
1309 q = (unsigned char *) index (p, ',');
1310 full = make_string (p, q ? q - p : strlen (p));
1312 #ifdef AMPERSAND_FULL_NAME
1313 p = SDATA (full);
1314 q = (unsigned char *) index (p, '&');
1315 /* Substitute the login name for the &, upcasing the first character. */
1316 if (q)
1318 register unsigned char *r;
1319 Lisp_Object login;
1321 login = Fuser_login_name (make_number (pw->pw_uid));
1322 r = (unsigned char *) alloca (strlen (p) + SCHARS (login) + 1);
1323 bcopy (p, r, q - p);
1324 r[q - p] = 0;
1325 strcat (r, SDATA (login));
1326 r[q - p] = UPCASE (r[q - p]);
1327 strcat (r, q + 1);
1328 full = build_string (r);
1330 #endif /* AMPERSAND_FULL_NAME */
1332 return full;
1335 DEFUN ("system-name", Fsystem_name, Ssystem_name, 0, 0, 0,
1336 doc: /* Return the name of the machine you are running on, as a string. */)
1339 return Vsystem_name;
1342 /* For the benefit of callers who don't want to include lisp.h */
1344 char *
1345 get_system_name ()
1347 if (STRINGP (Vsystem_name))
1348 return (char *) SDATA (Vsystem_name);
1349 else
1350 return "";
1353 DEFUN ("emacs-pid", Femacs_pid, Semacs_pid, 0, 0, 0,
1354 doc: /* Return the process ID of Emacs, as an integer. */)
1357 return make_number (getpid ());
1360 DEFUN ("current-time", Fcurrent_time, Scurrent_time, 0, 0, 0,
1361 doc: /* Return the current time, as the number of seconds since 1970-01-01 00:00:00.
1362 The time is returned as a list of three integers. The first has the
1363 most significant 16 bits of the seconds, while the second has the
1364 least significant 16 bits. The third integer gives the microsecond
1365 count.
1367 The microsecond count is zero on systems that do not provide
1368 resolution finer than a second. */)
1371 EMACS_TIME t;
1372 Lisp_Object result[3];
1374 EMACS_GET_TIME (t);
1375 XSETINT (result[0], (EMACS_SECS (t) >> 16) & 0xffff);
1376 XSETINT (result[1], (EMACS_SECS (t) >> 0) & 0xffff);
1377 XSETINT (result[2], EMACS_USECS (t));
1379 return Flist (3, result);
1383 static int
1384 lisp_time_argument (specified_time, result, usec)
1385 Lisp_Object specified_time;
1386 time_t *result;
1387 int *usec;
1389 if (NILP (specified_time))
1391 if (usec)
1393 EMACS_TIME t;
1395 EMACS_GET_TIME (t);
1396 *usec = EMACS_USECS (t);
1397 *result = EMACS_SECS (t);
1398 return 1;
1400 else
1401 return time (result) != -1;
1403 else
1405 Lisp_Object high, low;
1406 high = Fcar (specified_time);
1407 CHECK_NUMBER (high);
1408 low = Fcdr (specified_time);
1409 if (CONSP (low))
1411 if (usec)
1413 Lisp_Object usec_l = Fcdr (low);
1414 if (CONSP (usec_l))
1415 usec_l = Fcar (usec_l);
1416 if (NILP (usec_l))
1417 *usec = 0;
1418 else
1420 CHECK_NUMBER (usec_l);
1421 *usec = XINT (usec_l);
1424 low = Fcar (low);
1426 else if (usec)
1427 *usec = 0;
1428 CHECK_NUMBER (low);
1429 *result = (XINT (high) << 16) + (XINT (low) & 0xffff);
1430 return *result >> 16 == XINT (high);
1434 DEFUN ("float-time", Ffloat_time, Sfloat_time, 0, 1, 0,
1435 doc: /* Return the current time, as a float number of seconds since the epoch.
1436 If an argument is given, it specifies a time to convert to float
1437 instead of the current time. The argument should have the forms:
1438 (HIGH . LOW) or (HIGH LOW USEC) or (HIGH LOW . USEC).
1439 Thus, you can use times obtained from `current-time'
1440 and from `file-attributes'.
1442 WARNING: Since the result is floating point, it may not be exact.
1443 Do not use this function if precise time stamps are required. */)
1444 (specified_time)
1445 Lisp_Object specified_time;
1447 time_t sec;
1448 int usec;
1450 if (! lisp_time_argument (specified_time, &sec, &usec))
1451 error ("Invalid time specification");
1453 return make_float ((sec * 1e6 + usec) / 1e6);
1456 /* Write information into buffer S of size MAXSIZE, according to the
1457 FORMAT of length FORMAT_LEN, using time information taken from *TP.
1458 Default to Universal Time if UT is nonzero, local time otherwise.
1459 Return the number of bytes written, not including the terminating
1460 '\0'. If S is NULL, nothing will be written anywhere; so to
1461 determine how many bytes would be written, use NULL for S and
1462 ((size_t) -1) for MAXSIZE.
1464 This function behaves like emacs_strftimeu, except it allows null
1465 bytes in FORMAT. */
1466 static size_t
1467 emacs_memftimeu (s, maxsize, format, format_len, tp, ut)
1468 char *s;
1469 size_t maxsize;
1470 const char *format;
1471 size_t format_len;
1472 const struct tm *tp;
1473 int ut;
1475 size_t total = 0;
1477 /* Loop through all the null-terminated strings in the format
1478 argument. Normally there's just one null-terminated string, but
1479 there can be arbitrarily many, concatenated together, if the
1480 format contains '\0' bytes. emacs_strftimeu stops at the first
1481 '\0' byte so we must invoke it separately for each such string. */
1482 for (;;)
1484 size_t len;
1485 size_t result;
1487 if (s)
1488 s[0] = '\1';
1490 result = emacs_strftimeu (s, maxsize, format, tp, ut);
1492 if (s)
1494 if (result == 0 && s[0] != '\0')
1495 return 0;
1496 s += result + 1;
1499 maxsize -= result + 1;
1500 total += result;
1501 len = strlen (format);
1502 if (len == format_len)
1503 return total;
1504 total++;
1505 format += len + 1;
1506 format_len -= len + 1;
1510 DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string, 1, 3, 0,
1511 doc: /* Use FORMAT-STRING to format the time TIME, or now if omitted.
1512 TIME is specified as (HIGH LOW . IGNORED) or (HIGH . LOW), as returned by
1513 `current-time' or `file-attributes'.
1514 The third, optional, argument UNIVERSAL, if non-nil, means describe TIME
1515 as Universal Time; nil means describe TIME in the local time zone.
1516 The value is a copy of FORMAT-STRING, but with certain constructs replaced
1517 by text that describes the specified date and time in TIME:
1519 %Y is the year, %y within the century, %C the century.
1520 %G is the year corresponding to the ISO week, %g within the century.
1521 %m is the numeric month.
1522 %b and %h are the locale's abbreviated month name, %B the full name.
1523 %d is the day of the month, zero-padded, %e is blank-padded.
1524 %u is the numeric day of week from 1 (Monday) to 7, %w from 0 (Sunday) to 6.
1525 %a is the locale's abbreviated name of the day of week, %A the full name.
1526 %U is the week number starting on Sunday, %W starting on Monday,
1527 %V according to ISO 8601.
1528 %j is the day of the year.
1530 %H is the hour on a 24-hour clock, %I is on a 12-hour clock, %k is like %H
1531 only blank-padded, %l is like %I blank-padded.
1532 %p is the locale's equivalent of either AM or PM.
1533 %M is the minute.
1534 %S is the second.
1535 %Z is the time zone name, %z is the numeric form.
1536 %s is the number of seconds since 1970-01-01 00:00:00 +0000.
1538 %c is the locale's date and time format.
1539 %x is the locale's "preferred" date format.
1540 %D is like "%m/%d/%y".
1542 %R is like "%H:%M", %T is like "%H:%M:%S", %r is like "%I:%M:%S %p".
1543 %X is the locale's "preferred" time format.
1545 Finally, %n is a newline, %t is a tab, %% is a literal %.
1547 Certain flags and modifiers are available with some format controls.
1548 The flags are `_', `-', `^' and `#'. For certain characters X,
1549 %_X is like %X, but padded with blanks; %-X is like %X,
1550 but without padding. %^X is like %X, but with all textual
1551 characters up-cased; %#X is like %X, but with letter-case of
1552 all textual characters reversed.
1553 %NX (where N stands for an integer) is like %X,
1554 but takes up at least N (a number) positions.
1555 The modifiers are `E' and `O'. For certain characters X,
1556 %EX is a locale's alternative version of %X;
1557 %OX is like %X, but uses the locale's number symbols.
1559 For example, to produce full ISO 8601 format, use "%Y-%m-%dT%T%z". */)
1560 (format_string, time, universal)
1561 Lisp_Object format_string, time, universal;
1563 time_t value;
1564 int size;
1565 struct tm *tm;
1566 int ut = ! NILP (universal);
1568 CHECK_STRING (format_string);
1570 if (! lisp_time_argument (time, &value, NULL))
1571 error ("Invalid time specification");
1573 format_string = code_convert_string_norecord (format_string,
1574 Vlocale_coding_system, 1);
1576 /* This is probably enough. */
1577 size = SBYTES (format_string) * 6 + 50;
1579 tm = ut ? gmtime (&value) : localtime (&value);
1580 if (! tm)
1581 error ("Specified time is not representable");
1583 synchronize_system_time_locale ();
1585 while (1)
1587 char *buf = (char *) alloca (size + 1);
1588 int result;
1590 buf[0] = '\1';
1591 result = emacs_memftimeu (buf, size, SDATA (format_string),
1592 SBYTES (format_string),
1593 tm, ut);
1594 if ((result > 0 && result < size) || (result == 0 && buf[0] == '\0'))
1595 return code_convert_string_norecord (make_string (buf, result),
1596 Vlocale_coding_system, 0);
1598 /* If buffer was too small, make it bigger and try again. */
1599 result = emacs_memftimeu (NULL, (size_t) -1,
1600 SDATA (format_string),
1601 SBYTES (format_string),
1602 tm, ut);
1603 size = result + 1;
1607 DEFUN ("decode-time", Fdecode_time, Sdecode_time, 0, 1, 0,
1608 doc: /* Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).
1609 The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED)
1610 or (HIGH . LOW), as from `current-time' and `file-attributes', or `nil'
1611 to use the current time. The list has the following nine members:
1612 SEC is an integer between 0 and 60; SEC is 60 for a leap second, which
1613 only some operating systems support. MINUTE is an integer between 0 and 59.
1614 HOUR is an integer between 0 and 23. DAY is an integer between 1 and 31.
1615 MONTH is an integer between 1 and 12. YEAR is an integer indicating the
1616 four-digit year. DOW is the day of week, an integer between 0 and 6, where
1617 0 is Sunday. DST is t if daylight savings time is effect, otherwise nil.
1618 ZONE is an integer indicating the number of seconds east of Greenwich.
1619 (Note that Common Lisp has different meanings for DOW and ZONE.) */)
1620 (specified_time)
1621 Lisp_Object specified_time;
1623 time_t time_spec;
1624 struct tm save_tm;
1625 struct tm *decoded_time;
1626 Lisp_Object list_args[9];
1628 if (! lisp_time_argument (specified_time, &time_spec, NULL))
1629 error ("Invalid time specification");
1631 decoded_time = localtime (&time_spec);
1632 if (! decoded_time)
1633 error ("Specified time is not representable");
1634 XSETFASTINT (list_args[0], decoded_time->tm_sec);
1635 XSETFASTINT (list_args[1], decoded_time->tm_min);
1636 XSETFASTINT (list_args[2], decoded_time->tm_hour);
1637 XSETFASTINT (list_args[3], decoded_time->tm_mday);
1638 XSETFASTINT (list_args[4], decoded_time->tm_mon + 1);
1639 XSETINT (list_args[5], decoded_time->tm_year + 1900);
1640 XSETFASTINT (list_args[6], decoded_time->tm_wday);
1641 list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil;
1643 /* Make a copy, in case gmtime modifies the struct. */
1644 save_tm = *decoded_time;
1645 decoded_time = gmtime (&time_spec);
1646 if (decoded_time == 0)
1647 list_args[8] = Qnil;
1648 else
1649 XSETINT (list_args[8], tm_diff (&save_tm, decoded_time));
1650 return Flist (9, list_args);
1653 DEFUN ("encode-time", Fencode_time, Sencode_time, 6, MANY, 0,
1654 doc: /* Convert SECOND, MINUTE, HOUR, DAY, MONTH, YEAR and ZONE to internal time.
1655 This is the reverse operation of `decode-time', which see.
1656 ZONE defaults to the current time zone rule. This can
1657 be a string or t (as from `set-time-zone-rule'), or it can be a list
1658 \(as from `current-time-zone') or an integer (as from `decode-time')
1659 applied without consideration for daylight savings time.
1661 You can pass more than 7 arguments; then the first six arguments
1662 are used as SECOND through YEAR, and the *last* argument is used as ZONE.
1663 The intervening arguments are ignored.
1664 This feature lets (apply 'encode-time (decode-time ...)) work.
1666 Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed;
1667 for example, a DAY of 0 means the day preceding the given month.
1668 Year numbers less than 100 are treated just like other year numbers.
1669 If you want them to stand for years in this century, you must do that yourself.
1671 usage: (encode-time SECOND MINUTE HOUR DAY MONTH YEAR &optional ZONE) */)
1672 (nargs, args)
1673 int nargs;
1674 register Lisp_Object *args;
1676 time_t time;
1677 struct tm tm;
1678 Lisp_Object zone = (nargs > 6 ? args[nargs - 1] : Qnil);
1680 CHECK_NUMBER (args[0]); /* second */
1681 CHECK_NUMBER (args[1]); /* minute */
1682 CHECK_NUMBER (args[2]); /* hour */
1683 CHECK_NUMBER (args[3]); /* day */
1684 CHECK_NUMBER (args[4]); /* month */
1685 CHECK_NUMBER (args[5]); /* year */
1687 tm.tm_sec = XINT (args[0]);
1688 tm.tm_min = XINT (args[1]);
1689 tm.tm_hour = XINT (args[2]);
1690 tm.tm_mday = XINT (args[3]);
1691 tm.tm_mon = XINT (args[4]) - 1;
1692 tm.tm_year = XINT (args[5]) - 1900;
1693 tm.tm_isdst = -1;
1695 if (CONSP (zone))
1696 zone = Fcar (zone);
1697 if (NILP (zone))
1698 time = mktime (&tm);
1699 else
1701 char tzbuf[100];
1702 char *tzstring;
1703 char **oldenv = environ, **newenv;
1705 if (EQ (zone, Qt))
1706 tzstring = "UTC0";
1707 else if (STRINGP (zone))
1708 tzstring = (char *) SDATA (zone);
1709 else if (INTEGERP (zone))
1711 int abszone = abs (XINT (zone));
1712 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
1713 abszone / (60*60), (abszone/60) % 60, abszone % 60);
1714 tzstring = tzbuf;
1716 else
1717 error ("Invalid time zone specification");
1719 /* Set TZ before calling mktime; merely adjusting mktime's returned
1720 value doesn't suffice, since that would mishandle leap seconds. */
1721 set_time_zone_rule (tzstring);
1723 time = mktime (&tm);
1725 /* Restore TZ to previous value. */
1726 newenv = environ;
1727 environ = oldenv;
1728 xfree (newenv);
1729 #ifdef LOCALTIME_CACHE
1730 tzset ();
1731 #endif
1734 if (time == (time_t) -1)
1735 error ("Specified time is not representable");
1737 return make_time (time);
1740 DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 1, 0,
1741 doc: /* Return the current time, as a human-readable string.
1742 Programs can use this function to decode a time,
1743 since the number of columns in each field is fixed.
1744 The format is `Sun Sep 16 01:03:52 1973'.
1745 However, see also the functions `decode-time' and `format-time-string'
1746 which provide a much more powerful and general facility.
1748 If an argument is given, it specifies a time to format
1749 instead of the current time. The argument should have the form:
1750 (HIGH . LOW)
1751 or the form:
1752 (HIGH LOW . IGNORED).
1753 Thus, you can use times obtained from `current-time'
1754 and from `file-attributes'. */)
1755 (specified_time)
1756 Lisp_Object specified_time;
1758 time_t value;
1759 char buf[30];
1760 register char *tem;
1762 if (! lisp_time_argument (specified_time, &value, NULL))
1763 value = -1;
1764 tem = (char *) ctime (&value);
1766 strncpy (buf, tem, 24);
1767 buf[24] = 0;
1769 return build_string (buf);
1772 #define TM_YEAR_BASE 1900
1774 /* Yield A - B, measured in seconds.
1775 This function is copied from the GNU C Library. */
1776 static int
1777 tm_diff (a, b)
1778 struct tm *a, *b;
1780 /* Compute intervening leap days correctly even if year is negative.
1781 Take care to avoid int overflow in leap day calculations,
1782 but it's OK to assume that A and B are close to each other. */
1783 int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3);
1784 int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3);
1785 int a100 = a4 / 25 - (a4 % 25 < 0);
1786 int b100 = b4 / 25 - (b4 % 25 < 0);
1787 int a400 = a100 >> 2;
1788 int b400 = b100 >> 2;
1789 int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);
1790 int years = a->tm_year - b->tm_year;
1791 int days = (365 * years + intervening_leap_days
1792 + (a->tm_yday - b->tm_yday));
1793 return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour))
1794 + (a->tm_min - b->tm_min))
1795 + (a->tm_sec - b->tm_sec));
1798 DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 1, 0,
1799 doc: /* Return the offset and name for the local time zone.
1800 This returns a list of the form (OFFSET NAME).
1801 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
1802 A negative value means west of Greenwich.
1803 NAME is a string giving the name of the time zone.
1804 If an argument is given, it specifies when the time zone offset is determined
1805 instead of using the current time. The argument should have the form:
1806 (HIGH . LOW)
1807 or the form:
1808 (HIGH LOW . IGNORED).
1809 Thus, you can use times obtained from `current-time'
1810 and from `file-attributes'.
1812 Some operating systems cannot provide all this information to Emacs;
1813 in this case, `current-time-zone' returns a list containing nil for
1814 the data it can't find. */)
1815 (specified_time)
1816 Lisp_Object specified_time;
1818 time_t value;
1819 struct tm *t;
1820 struct tm gmt;
1822 if (lisp_time_argument (specified_time, &value, NULL)
1823 && (t = gmtime (&value)) != 0
1824 && (gmt = *t, t = localtime (&value)) != 0)
1826 int offset = tm_diff (t, &gmt);
1827 char *s = 0;
1828 char buf[6];
1829 #ifdef HAVE_TM_ZONE
1830 if (t->tm_zone)
1831 s = (char *)t->tm_zone;
1832 #else /* not HAVE_TM_ZONE */
1833 #ifdef HAVE_TZNAME
1834 if (t->tm_isdst == 0 || t->tm_isdst == 1)
1835 s = tzname[t->tm_isdst];
1836 #endif
1837 #endif /* not HAVE_TM_ZONE */
1839 #if defined HAVE_TM_ZONE || defined HAVE_TZNAME
1840 if (s)
1842 /* On Japanese w32, we can get a Japanese string as time
1843 zone name. Don't accept that. */
1844 char *p;
1845 for (p = s; *p && (isalnum ((unsigned char)*p) || *p == ' '); ++p)
1847 if (p == s || *p)
1848 s = NULL;
1850 #endif
1852 if (!s)
1854 /* No local time zone name is available; use "+-NNNN" instead. */
1855 int am = (offset < 0 ? -offset : offset) / 60;
1856 sprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60, am%60);
1857 s = buf;
1859 return Fcons (make_number (offset), Fcons (build_string (s), Qnil));
1861 else
1862 return Fmake_list (make_number (2), Qnil);
1865 /* This holds the value of `environ' produced by the previous
1866 call to Fset_time_zone_rule, or 0 if Fset_time_zone_rule
1867 has never been called. */
1868 static char **environbuf;
1870 DEFUN ("set-time-zone-rule", Fset_time_zone_rule, Sset_time_zone_rule, 1, 1, 0,
1871 doc: /* Set the local time zone using TZ, a string specifying a time zone rule.
1872 If TZ is nil, use implementation-defined default time zone information.
1873 If TZ is t, use Universal Time. */)
1874 (tz)
1875 Lisp_Object tz;
1877 char *tzstring;
1879 if (NILP (tz))
1880 tzstring = 0;
1881 else if (EQ (tz, Qt))
1882 tzstring = "UTC0";
1883 else
1885 CHECK_STRING (tz);
1886 tzstring = (char *) SDATA (tz);
1889 set_time_zone_rule (tzstring);
1890 if (environbuf)
1891 free (environbuf);
1892 environbuf = environ;
1894 return Qnil;
1897 #ifdef LOCALTIME_CACHE
1899 /* These two values are known to load tz files in buggy implementations,
1900 i.e. Solaris 1 executables running under either Solaris 1 or Solaris 2.
1901 Their values shouldn't matter in non-buggy implementations.
1902 We don't use string literals for these strings,
1903 since if a string in the environment is in readonly
1904 storage, it runs afoul of bugs in SVR4 and Solaris 2.3.
1905 See Sun bugs 1113095 and 1114114, ``Timezone routines
1906 improperly modify environment''. */
1908 static char set_time_zone_rule_tz1[] = "TZ=GMT+0";
1909 static char set_time_zone_rule_tz2[] = "TZ=GMT+1";
1911 #endif
1913 /* Set the local time zone rule to TZSTRING.
1914 This allocates memory into `environ', which it is the caller's
1915 responsibility to free. */
1917 void
1918 set_time_zone_rule (tzstring)
1919 char *tzstring;
1921 int envptrs;
1922 char **from, **to, **newenv;
1924 /* Make the ENVIRON vector longer with room for TZSTRING. */
1925 for (from = environ; *from; from++)
1926 continue;
1927 envptrs = from - environ + 2;
1928 newenv = to = (char **) xmalloc (envptrs * sizeof (char *)
1929 + (tzstring ? strlen (tzstring) + 4 : 0));
1931 /* Add TZSTRING to the end of environ, as a value for TZ. */
1932 if (tzstring)
1934 char *t = (char *) (to + envptrs);
1935 strcpy (t, "TZ=");
1936 strcat (t, tzstring);
1937 *to++ = t;
1940 /* Copy the old environ vector elements into NEWENV,
1941 but don't copy the TZ variable.
1942 So we have only one definition of TZ, which came from TZSTRING. */
1943 for (from = environ; *from; from++)
1944 if (strncmp (*from, "TZ=", 3) != 0)
1945 *to++ = *from;
1946 *to = 0;
1948 environ = newenv;
1950 /* If we do have a TZSTRING, NEWENV points to the vector slot where
1951 the TZ variable is stored. If we do not have a TZSTRING,
1952 TO points to the vector slot which has the terminating null. */
1954 #ifdef LOCALTIME_CACHE
1956 /* In SunOS 4.1.3_U1 and 4.1.4, if TZ has a value like
1957 "US/Pacific" that loads a tz file, then changes to a value like
1958 "XXX0" that does not load a tz file, and then changes back to
1959 its original value, the last change is (incorrectly) ignored.
1960 Also, if TZ changes twice in succession to values that do
1961 not load a tz file, tzset can dump core (see Sun bug#1225179).
1962 The following code works around these bugs. */
1964 if (tzstring)
1966 /* Temporarily set TZ to a value that loads a tz file
1967 and that differs from tzstring. */
1968 char *tz = *newenv;
1969 *newenv = (strcmp (tzstring, set_time_zone_rule_tz1 + 3) == 0
1970 ? set_time_zone_rule_tz2 : set_time_zone_rule_tz1);
1971 tzset ();
1972 *newenv = tz;
1974 else
1976 /* The implied tzstring is unknown, so temporarily set TZ to
1977 two different values that each load a tz file. */
1978 *to = set_time_zone_rule_tz1;
1979 to[1] = 0;
1980 tzset ();
1981 *to = set_time_zone_rule_tz2;
1982 tzset ();
1983 *to = 0;
1986 /* Now TZ has the desired value, and tzset can be invoked safely. */
1989 tzset ();
1990 #endif
1993 /* Insert NARGS Lisp objects in the array ARGS by calling INSERT_FUNC
1994 (if a type of object is Lisp_Int) or INSERT_FROM_STRING_FUNC (if a
1995 type of object is Lisp_String). INHERIT is passed to
1996 INSERT_FROM_STRING_FUNC as the last argument. */
1998 static void
1999 general_insert_function (insert_func, insert_from_string_func,
2000 inherit, nargs, args)
2001 void (*insert_func) P_ ((const unsigned char *, int));
2002 void (*insert_from_string_func) P_ ((Lisp_Object, int, int, int, int, int));
2003 int inherit, nargs;
2004 register Lisp_Object *args;
2006 register int argnum;
2007 register Lisp_Object val;
2009 for (argnum = 0; argnum < nargs; argnum++)
2011 val = args[argnum];
2012 retry:
2013 if (INTEGERP (val))
2015 unsigned char str[MAX_MULTIBYTE_LENGTH];
2016 int len;
2018 if (!NILP (current_buffer->enable_multibyte_characters))
2019 len = CHAR_STRING (XFASTINT (val), str);
2020 else
2022 str[0] = (SINGLE_BYTE_CHAR_P (XINT (val))
2023 ? XINT (val)
2024 : multibyte_char_to_unibyte (XINT (val), Qnil));
2025 len = 1;
2027 (*insert_func) (str, len);
2029 else if (STRINGP (val))
2031 (*insert_from_string_func) (val, 0, 0,
2032 SCHARS (val),
2033 SBYTES (val),
2034 inherit);
2036 else
2038 val = wrong_type_argument (Qchar_or_string_p, val);
2039 goto retry;
2044 void
2045 insert1 (arg)
2046 Lisp_Object arg;
2048 Finsert (1, &arg);
2052 /* Callers passing one argument to Finsert need not gcpro the
2053 argument "array", since the only element of the array will
2054 not be used after calling insert or insert_from_string, so
2055 we don't care if it gets trashed. */
2057 DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0,
2058 doc: /* Insert the arguments, either strings or characters, at point.
2059 Point and before-insertion markers move forward to end up
2060 after the inserted text.
2061 Any other markers at the point of insertion remain before the text.
2063 If the current buffer is multibyte, unibyte strings are converted
2064 to multibyte for insertion (see `string-make-multibyte').
2065 If the current buffer is unibyte, multibyte strings are converted
2066 to unibyte for insertion (see `string-make-unibyte').
2068 When operating on binary data, it may be necessary to preserve the
2069 original bytes of a unibyte string when inserting it into a multibyte
2070 buffer; to accomplish this, apply `string-as-multibyte' to the string
2071 and insert the result.
2073 usage: (insert &rest ARGS) */)
2074 (nargs, args)
2075 int nargs;
2076 register Lisp_Object *args;
2078 general_insert_function (insert, insert_from_string, 0, nargs, args);
2079 return Qnil;
2082 DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit,
2083 0, MANY, 0,
2084 doc: /* Insert the arguments at point, inheriting properties from adjoining text.
2085 Point and before-insertion markers move forward to end up
2086 after the inserted text.
2087 Any other markers at the point of insertion remain before the text.
2089 If the current buffer is multibyte, unibyte strings are converted
2090 to multibyte for insertion (see `unibyte-char-to-multibyte').
2091 If the current buffer is unibyte, multibyte strings are converted
2092 to unibyte for insertion.
2094 usage: (insert-and-inherit &rest ARGS) */)
2095 (nargs, args)
2096 int nargs;
2097 register Lisp_Object *args;
2099 general_insert_function (insert_and_inherit, insert_from_string, 1,
2100 nargs, args);
2101 return Qnil;
2104 DEFUN ("insert-before-markers", Finsert_before_markers, Sinsert_before_markers, 0, MANY, 0,
2105 doc: /* Insert strings or characters at point, relocating markers after the text.
2106 Point and markers move forward to end up after the inserted text.
2108 If the current buffer is multibyte, unibyte strings are converted
2109 to multibyte for insertion (see `unibyte-char-to-multibyte').
2110 If the current buffer is unibyte, multibyte strings are converted
2111 to unibyte for insertion.
2113 usage: (insert-before-markers &rest ARGS) */)
2114 (nargs, args)
2115 int nargs;
2116 register Lisp_Object *args;
2118 general_insert_function (insert_before_markers,
2119 insert_from_string_before_markers, 0,
2120 nargs, args);
2121 return Qnil;
2124 DEFUN ("insert-before-markers-and-inherit", Finsert_and_inherit_before_markers,
2125 Sinsert_and_inherit_before_markers, 0, MANY, 0,
2126 doc: /* Insert text at point, relocating markers and inheriting properties.
2127 Point and markers move forward to end up after the inserted text.
2129 If the current buffer is multibyte, unibyte strings are converted
2130 to multibyte for insertion (see `unibyte-char-to-multibyte').
2131 If the current buffer is unibyte, multibyte strings are converted
2132 to unibyte for insertion.
2134 usage: (insert-before-markers-and-inherit &rest ARGS) */)
2135 (nargs, args)
2136 int nargs;
2137 register Lisp_Object *args;
2139 general_insert_function (insert_before_markers_and_inherit,
2140 insert_from_string_before_markers, 1,
2141 nargs, args);
2142 return Qnil;
2145 DEFUN ("insert-char", Finsert_char, Sinsert_char, 2, 3, 0,
2146 doc: /* Insert COUNT (second arg) copies of CHARACTER (first arg).
2147 Both arguments are required.
2148 Point, and before-insertion markers, are relocated as in the function `insert'.
2149 The optional third arg INHERIT, if non-nil, says to inherit text properties
2150 from adjoining text, if those properties are sticky. */)
2151 (character, count, inherit)
2152 Lisp_Object character, count, inherit;
2154 register unsigned char *string;
2155 register int strlen;
2156 register int i, n;
2157 int len;
2158 unsigned char str[MAX_MULTIBYTE_LENGTH];
2160 CHECK_NUMBER (character);
2161 CHECK_NUMBER (count);
2163 if (!NILP (current_buffer->enable_multibyte_characters))
2164 len = CHAR_STRING (XFASTINT (character), str);
2165 else
2166 str[0] = XFASTINT (character), len = 1;
2167 n = XINT (count) * len;
2168 if (n <= 0)
2169 return Qnil;
2170 strlen = min (n, 256 * len);
2171 string = (unsigned char *) alloca (strlen);
2172 for (i = 0; i < strlen; i++)
2173 string[i] = str[i % len];
2174 while (n >= strlen)
2176 QUIT;
2177 if (!NILP (inherit))
2178 insert_and_inherit (string, strlen);
2179 else
2180 insert (string, strlen);
2181 n -= strlen;
2183 if (n > 0)
2185 if (!NILP (inherit))
2186 insert_and_inherit (string, n);
2187 else
2188 insert (string, n);
2190 return Qnil;
2194 /* Making strings from buffer contents. */
2196 /* Return a Lisp_String containing the text of the current buffer from
2197 START to END. If text properties are in use and the current buffer
2198 has properties in the range specified, the resulting string will also
2199 have them, if PROPS is nonzero.
2201 We don't want to use plain old make_string here, because it calls
2202 make_uninit_string, which can cause the buffer arena to be
2203 compacted. make_string has no way of knowing that the data has
2204 been moved, and thus copies the wrong data into the string. This
2205 doesn't effect most of the other users of make_string, so it should
2206 be left as is. But we should use this function when conjuring
2207 buffer substrings. */
2209 Lisp_Object
2210 make_buffer_string (start, end, props)
2211 int start, end;
2212 int props;
2214 int start_byte = CHAR_TO_BYTE (start);
2215 int end_byte = CHAR_TO_BYTE (end);
2217 return make_buffer_string_both (start, start_byte, end, end_byte, props);
2220 /* Return a Lisp_String containing the text of the current buffer from
2221 START / START_BYTE to END / END_BYTE.
2223 If text properties are in use and the current buffer
2224 has properties in the range specified, the resulting string will also
2225 have them, if PROPS is nonzero.
2227 We don't want to use plain old make_string here, because it calls
2228 make_uninit_string, which can cause the buffer arena to be
2229 compacted. make_string has no way of knowing that the data has
2230 been moved, and thus copies the wrong data into the string. This
2231 doesn't effect most of the other users of make_string, so it should
2232 be left as is. But we should use this function when conjuring
2233 buffer substrings. */
2235 Lisp_Object
2236 make_buffer_string_both (start, start_byte, end, end_byte, props)
2237 int start, start_byte, end, end_byte;
2238 int props;
2240 Lisp_Object result, tem, tem1;
2242 if (start < GPT && GPT < end)
2243 move_gap (start);
2245 if (! NILP (current_buffer->enable_multibyte_characters))
2246 result = make_uninit_multibyte_string (end - start, end_byte - start_byte);
2247 else
2248 result = make_uninit_string (end - start);
2249 bcopy (BYTE_POS_ADDR (start_byte), SDATA (result),
2250 end_byte - start_byte);
2252 /* If desired, update and copy the text properties. */
2253 if (props)
2255 update_buffer_properties (start, end);
2257 tem = Fnext_property_change (make_number (start), Qnil, make_number (end));
2258 tem1 = Ftext_properties_at (make_number (start), Qnil);
2260 if (XINT (tem) != end || !NILP (tem1))
2261 copy_intervals_to_string (result, current_buffer, start,
2262 end - start);
2265 return result;
2268 /* Call Vbuffer_access_fontify_functions for the range START ... END
2269 in the current buffer, if necessary. */
2271 static void
2272 update_buffer_properties (start, end)
2273 int start, end;
2275 /* If this buffer has some access functions,
2276 call them, specifying the range of the buffer being accessed. */
2277 if (!NILP (Vbuffer_access_fontify_functions))
2279 Lisp_Object args[3];
2280 Lisp_Object tem;
2282 args[0] = Qbuffer_access_fontify_functions;
2283 XSETINT (args[1], start);
2284 XSETINT (args[2], end);
2286 /* But don't call them if we can tell that the work
2287 has already been done. */
2288 if (!NILP (Vbuffer_access_fontified_property))
2290 tem = Ftext_property_any (args[1], args[2],
2291 Vbuffer_access_fontified_property,
2292 Qnil, Qnil);
2293 if (! NILP (tem))
2294 Frun_hook_with_args (3, args);
2296 else
2297 Frun_hook_with_args (3, args);
2301 DEFUN ("buffer-substring", Fbuffer_substring, Sbuffer_substring, 2, 2, 0,
2302 doc: /* Return the contents of part of the current buffer as a string.
2303 The two arguments START and END are character positions;
2304 they can be in either order.
2305 The string returned is multibyte if the buffer is multibyte.
2307 This function copies the text properties of that part of the buffer
2308 into the result string; if you don't want the text properties,
2309 use `buffer-substring-no-properties' instead. */)
2310 (start, end)
2311 Lisp_Object start, end;
2313 register int b, e;
2315 validate_region (&start, &end);
2316 b = XINT (start);
2317 e = XINT (end);
2319 return make_buffer_string (b, e, 1);
2322 DEFUN ("buffer-substring-no-properties", Fbuffer_substring_no_properties,
2323 Sbuffer_substring_no_properties, 2, 2, 0,
2324 doc: /* Return the characters of part of the buffer, without the text properties.
2325 The two arguments START and END are character positions;
2326 they can be in either order. */)
2327 (start, end)
2328 Lisp_Object start, end;
2330 register int b, e;
2332 validate_region (&start, &end);
2333 b = XINT (start);
2334 e = XINT (end);
2336 return make_buffer_string (b, e, 0);
2339 DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0,
2340 doc: /* Return the contents of the current buffer as a string.
2341 If narrowing is in effect, this function returns only the visible part
2342 of the buffer. */)
2345 return make_buffer_string (BEGV, ZV, 1);
2348 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, Sinsert_buffer_substring,
2349 1, 3, 0,
2350 doc: /* Insert before point a substring of the contents of buffer BUFFER.
2351 BUFFER may be a buffer or a buffer name.
2352 Arguments START and END are character numbers specifying the substring.
2353 They default to the beginning and the end of BUFFER. */)
2354 (buf, start, end)
2355 Lisp_Object buf, start, end;
2357 register int b, e, temp;
2358 register struct buffer *bp, *obuf;
2359 Lisp_Object buffer;
2361 buffer = Fget_buffer (buf);
2362 if (NILP (buffer))
2363 nsberror (buf);
2364 bp = XBUFFER (buffer);
2365 if (NILP (bp->name))
2366 error ("Selecting deleted buffer");
2368 if (NILP (start))
2369 b = BUF_BEGV (bp);
2370 else
2372 CHECK_NUMBER_COERCE_MARKER (start);
2373 b = XINT (start);
2375 if (NILP (end))
2376 e = BUF_ZV (bp);
2377 else
2379 CHECK_NUMBER_COERCE_MARKER (end);
2380 e = XINT (end);
2383 if (b > e)
2384 temp = b, b = e, e = temp;
2386 if (!(BUF_BEGV (bp) <= b && e <= BUF_ZV (bp)))
2387 args_out_of_range (start, end);
2389 obuf = current_buffer;
2390 set_buffer_internal_1 (bp);
2391 update_buffer_properties (b, e);
2392 set_buffer_internal_1 (obuf);
2394 insert_from_buffer (bp, b, e - b, 0);
2395 return Qnil;
2398 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
2399 6, 6, 0,
2400 doc: /* Compare two substrings of two buffers; return result as number.
2401 the value is -N if first string is less after N-1 chars,
2402 +N if first string is greater after N-1 chars, or 0 if strings match.
2403 Each substring is represented as three arguments: BUFFER, START and END.
2404 That makes six args in all, three for each substring.
2406 The value of `case-fold-search' in the current buffer
2407 determines whether case is significant or ignored. */)
2408 (buffer1, start1, end1, buffer2, start2, end2)
2409 Lisp_Object buffer1, start1, end1, buffer2, start2, end2;
2411 register int begp1, endp1, begp2, endp2, temp;
2412 register struct buffer *bp1, *bp2;
2413 register Lisp_Object *trt
2414 = (!NILP (current_buffer->case_fold_search)
2415 ? XCHAR_TABLE (current_buffer->case_canon_table)->contents : 0);
2416 int chars = 0;
2417 int i1, i2, i1_byte, i2_byte;
2419 /* Find the first buffer and its substring. */
2421 if (NILP (buffer1))
2422 bp1 = current_buffer;
2423 else
2425 Lisp_Object buf1;
2426 buf1 = Fget_buffer (buffer1);
2427 if (NILP (buf1))
2428 nsberror (buffer1);
2429 bp1 = XBUFFER (buf1);
2430 if (NILP (bp1->name))
2431 error ("Selecting deleted buffer");
2434 if (NILP (start1))
2435 begp1 = BUF_BEGV (bp1);
2436 else
2438 CHECK_NUMBER_COERCE_MARKER (start1);
2439 begp1 = XINT (start1);
2441 if (NILP (end1))
2442 endp1 = BUF_ZV (bp1);
2443 else
2445 CHECK_NUMBER_COERCE_MARKER (end1);
2446 endp1 = XINT (end1);
2449 if (begp1 > endp1)
2450 temp = begp1, begp1 = endp1, endp1 = temp;
2452 if (!(BUF_BEGV (bp1) <= begp1
2453 && begp1 <= endp1
2454 && endp1 <= BUF_ZV (bp1)))
2455 args_out_of_range (start1, end1);
2457 /* Likewise for second substring. */
2459 if (NILP (buffer2))
2460 bp2 = current_buffer;
2461 else
2463 Lisp_Object buf2;
2464 buf2 = Fget_buffer (buffer2);
2465 if (NILP (buf2))
2466 nsberror (buffer2);
2467 bp2 = XBUFFER (buf2);
2468 if (NILP (bp2->name))
2469 error ("Selecting deleted buffer");
2472 if (NILP (start2))
2473 begp2 = BUF_BEGV (bp2);
2474 else
2476 CHECK_NUMBER_COERCE_MARKER (start2);
2477 begp2 = XINT (start2);
2479 if (NILP (end2))
2480 endp2 = BUF_ZV (bp2);
2481 else
2483 CHECK_NUMBER_COERCE_MARKER (end2);
2484 endp2 = XINT (end2);
2487 if (begp2 > endp2)
2488 temp = begp2, begp2 = endp2, endp2 = temp;
2490 if (!(BUF_BEGV (bp2) <= begp2
2491 && begp2 <= endp2
2492 && endp2 <= BUF_ZV (bp2)))
2493 args_out_of_range (start2, end2);
2495 i1 = begp1;
2496 i2 = begp2;
2497 i1_byte = buf_charpos_to_bytepos (bp1, i1);
2498 i2_byte = buf_charpos_to_bytepos (bp2, i2);
2500 while (i1 < endp1 && i2 < endp2)
2502 /* When we find a mismatch, we must compare the
2503 characters, not just the bytes. */
2504 int c1, c2;
2506 QUIT;
2508 if (! NILP (bp1->enable_multibyte_characters))
2510 c1 = BUF_FETCH_MULTIBYTE_CHAR (bp1, i1_byte);
2511 BUF_INC_POS (bp1, i1_byte);
2512 i1++;
2514 else
2516 c1 = BUF_FETCH_BYTE (bp1, i1);
2517 c1 = unibyte_char_to_multibyte (c1);
2518 i1++;
2521 if (! NILP (bp2->enable_multibyte_characters))
2523 c2 = BUF_FETCH_MULTIBYTE_CHAR (bp2, i2_byte);
2524 BUF_INC_POS (bp2, i2_byte);
2525 i2++;
2527 else
2529 c2 = BUF_FETCH_BYTE (bp2, i2);
2530 c2 = unibyte_char_to_multibyte (c2);
2531 i2++;
2534 if (trt)
2536 c1 = XINT (trt[c1]);
2537 c2 = XINT (trt[c2]);
2539 if (c1 < c2)
2540 return make_number (- 1 - chars);
2541 if (c1 > c2)
2542 return make_number (chars + 1);
2544 chars++;
2547 /* The strings match as far as they go.
2548 If one is shorter, that one is less. */
2549 if (chars < endp1 - begp1)
2550 return make_number (chars + 1);
2551 else if (chars < endp2 - begp2)
2552 return make_number (- chars - 1);
2554 /* Same length too => they are equal. */
2555 return make_number (0);
2558 static Lisp_Object
2559 subst_char_in_region_unwind (arg)
2560 Lisp_Object arg;
2562 return current_buffer->undo_list = arg;
2565 static Lisp_Object
2566 subst_char_in_region_unwind_1 (arg)
2567 Lisp_Object arg;
2569 return current_buffer->filename = arg;
2572 DEFUN ("subst-char-in-region", Fsubst_char_in_region,
2573 Ssubst_char_in_region, 4, 5, 0,
2574 doc: /* From START to END, replace FROMCHAR with TOCHAR each time it occurs.
2575 If optional arg NOUNDO is non-nil, don't record this change for undo
2576 and don't mark the buffer as really changed.
2577 Both characters must have the same length of multi-byte form. */)
2578 (start, end, fromchar, tochar, noundo)
2579 Lisp_Object start, end, fromchar, tochar, noundo;
2581 register int pos, pos_byte, stop, i, len, end_byte;
2582 int changed = 0;
2583 unsigned char fromstr[MAX_MULTIBYTE_LENGTH], tostr[MAX_MULTIBYTE_LENGTH];
2584 unsigned char *p;
2585 int count = SPECPDL_INDEX ();
2586 #define COMBINING_NO 0
2587 #define COMBINING_BEFORE 1
2588 #define COMBINING_AFTER 2
2589 #define COMBINING_BOTH (COMBINING_BEFORE | COMBINING_AFTER)
2590 int maybe_byte_combining = COMBINING_NO;
2591 int last_changed = 0;
2592 int multibyte_p = !NILP (current_buffer->enable_multibyte_characters);
2594 validate_region (&start, &end);
2595 CHECK_NUMBER (fromchar);
2596 CHECK_NUMBER (tochar);
2598 if (multibyte_p)
2600 len = CHAR_STRING (XFASTINT (fromchar), fromstr);
2601 if (CHAR_STRING (XFASTINT (tochar), tostr) != len)
2602 error ("Characters in subst-char-in-region have different byte-lengths");
2603 if (!ASCII_BYTE_P (*tostr))
2605 /* If *TOSTR is in the range 0x80..0x9F and TOCHAR is not a
2606 complete multibyte character, it may be combined with the
2607 after bytes. If it is in the range 0xA0..0xFF, it may be
2608 combined with the before and after bytes. */
2609 if (!CHAR_HEAD_P (*tostr))
2610 maybe_byte_combining = COMBINING_BOTH;
2611 else if (BYTES_BY_CHAR_HEAD (*tostr) > len)
2612 maybe_byte_combining = COMBINING_AFTER;
2615 else
2617 len = 1;
2618 fromstr[0] = XFASTINT (fromchar);
2619 tostr[0] = XFASTINT (tochar);
2622 pos = XINT (start);
2623 pos_byte = CHAR_TO_BYTE (pos);
2624 stop = CHAR_TO_BYTE (XINT (end));
2625 end_byte = stop;
2627 /* If we don't want undo, turn off putting stuff on the list.
2628 That's faster than getting rid of things,
2629 and it prevents even the entry for a first change.
2630 Also inhibit locking the file. */
2631 if (!NILP (noundo))
2633 record_unwind_protect (subst_char_in_region_unwind,
2634 current_buffer->undo_list);
2635 current_buffer->undo_list = Qt;
2636 /* Don't do file-locking. */
2637 record_unwind_protect (subst_char_in_region_unwind_1,
2638 current_buffer->filename);
2639 current_buffer->filename = Qnil;
2642 if (pos_byte < GPT_BYTE)
2643 stop = min (stop, GPT_BYTE);
2644 while (1)
2646 int pos_byte_next = pos_byte;
2648 if (pos_byte >= stop)
2650 if (pos_byte >= end_byte) break;
2651 stop = end_byte;
2653 p = BYTE_POS_ADDR (pos_byte);
2654 if (multibyte_p)
2655 INC_POS (pos_byte_next);
2656 else
2657 ++pos_byte_next;
2658 if (pos_byte_next - pos_byte == len
2659 && p[0] == fromstr[0]
2660 && (len == 1
2661 || (p[1] == fromstr[1]
2662 && (len == 2 || (p[2] == fromstr[2]
2663 && (len == 3 || p[3] == fromstr[3]))))))
2665 if (! changed)
2667 changed = pos;
2668 modify_region (current_buffer, changed, XINT (end));
2670 if (! NILP (noundo))
2672 if (MODIFF - 1 == SAVE_MODIFF)
2673 SAVE_MODIFF++;
2674 if (MODIFF - 1 == current_buffer->auto_save_modified)
2675 current_buffer->auto_save_modified++;
2679 /* Take care of the case where the new character
2680 combines with neighboring bytes. */
2681 if (maybe_byte_combining
2682 && (maybe_byte_combining == COMBINING_AFTER
2683 ? (pos_byte_next < Z_BYTE
2684 && ! CHAR_HEAD_P (FETCH_BYTE (pos_byte_next)))
2685 : ((pos_byte_next < Z_BYTE
2686 && ! CHAR_HEAD_P (FETCH_BYTE (pos_byte_next)))
2687 || (pos_byte > BEG_BYTE
2688 && ! ASCII_BYTE_P (FETCH_BYTE (pos_byte - 1))))))
2690 Lisp_Object tem, string;
2692 struct gcpro gcpro1;
2694 tem = current_buffer->undo_list;
2695 GCPRO1 (tem);
2697 /* Make a multibyte string containing this single character. */
2698 string = make_multibyte_string (tostr, 1, len);
2699 /* replace_range is less efficient, because it moves the gap,
2700 but it handles combining correctly. */
2701 replace_range (pos, pos + 1, string,
2702 0, 0, 1);
2703 pos_byte_next = CHAR_TO_BYTE (pos);
2704 if (pos_byte_next > pos_byte)
2705 /* Before combining happened. We should not increment
2706 POS. So, to cancel the later increment of POS,
2707 decrease it now. */
2708 pos--;
2709 else
2710 INC_POS (pos_byte_next);
2712 if (! NILP (noundo))
2713 current_buffer->undo_list = tem;
2715 UNGCPRO;
2717 else
2719 if (NILP (noundo))
2720 record_change (pos, 1);
2721 for (i = 0; i < len; i++) *p++ = tostr[i];
2723 last_changed = pos + 1;
2725 pos_byte = pos_byte_next;
2726 pos++;
2729 if (changed)
2731 signal_after_change (changed,
2732 last_changed - changed, last_changed - changed);
2733 update_compositions (changed, last_changed, CHECK_ALL);
2736 unbind_to (count, Qnil);
2737 return Qnil;
2740 DEFUN ("translate-region", Ftranslate_region, Stranslate_region, 3, 3, 0,
2741 doc: /* From START to END, translate characters according to TABLE.
2742 TABLE is a string; the Nth character in it is the mapping
2743 for the character with code N.
2744 This function does not alter multibyte characters.
2745 It returns the number of characters changed. */)
2746 (start, end, table)
2747 Lisp_Object start;
2748 Lisp_Object end;
2749 register Lisp_Object table;
2751 register int pos_byte, stop; /* Limits of the region. */
2752 register unsigned char *tt; /* Trans table. */
2753 register int nc; /* New character. */
2754 int cnt; /* Number of changes made. */
2755 int size; /* Size of translate table. */
2756 int pos;
2757 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
2759 validate_region (&start, &end);
2760 CHECK_STRING (table);
2762 size = SBYTES (table);
2763 tt = SDATA (table);
2765 pos_byte = CHAR_TO_BYTE (XINT (start));
2766 stop = CHAR_TO_BYTE (XINT (end));
2767 modify_region (current_buffer, XINT (start), XINT (end));
2768 pos = XINT (start);
2770 cnt = 0;
2771 for (; pos_byte < stop; )
2773 register unsigned char *p = BYTE_POS_ADDR (pos_byte);
2774 int len;
2775 int oc;
2776 int pos_byte_next;
2778 if (multibyte)
2779 oc = STRING_CHAR_AND_LENGTH (p, stop - pos_byte, len);
2780 else
2781 oc = *p, len = 1;
2782 pos_byte_next = pos_byte + len;
2783 if (oc < size && len == 1)
2785 nc = tt[oc];
2786 if (nc != oc)
2788 /* Take care of the case where the new character
2789 combines with neighboring bytes. */
2790 if (!ASCII_BYTE_P (nc)
2791 && (CHAR_HEAD_P (nc)
2792 ? ! CHAR_HEAD_P (FETCH_BYTE (pos_byte + 1))
2793 : (pos_byte > BEG_BYTE
2794 && ! ASCII_BYTE_P (FETCH_BYTE (pos_byte - 1)))))
2796 Lisp_Object string;
2798 string = make_multibyte_string (tt + oc, 1, 1);
2799 /* This is less efficient, because it moves the gap,
2800 but it handles combining correctly. */
2801 replace_range (pos, pos + 1, string,
2802 1, 0, 1);
2803 pos_byte_next = CHAR_TO_BYTE (pos);
2804 if (pos_byte_next > pos_byte)
2805 /* Before combining happened. We should not
2806 increment POS. So, to cancel the later
2807 increment of POS, we decrease it now. */
2808 pos--;
2809 else
2810 INC_POS (pos_byte_next);
2812 else
2814 record_change (pos, 1);
2815 *p = nc;
2816 signal_after_change (pos, 1, 1);
2817 update_compositions (pos, pos + 1, CHECK_BORDER);
2819 ++cnt;
2822 pos_byte = pos_byte_next;
2823 pos++;
2826 return make_number (cnt);
2829 DEFUN ("delete-region", Fdelete_region, Sdelete_region, 2, 2, "r",
2830 doc: /* Delete the text between point and mark.
2831 When called from a program, expects two arguments,
2832 positions (integers or markers) specifying the stretch to be deleted. */)
2833 (start, end)
2834 Lisp_Object start, end;
2836 validate_region (&start, &end);
2837 del_range (XINT (start), XINT (end));
2838 return Qnil;
2841 DEFUN ("delete-and-extract-region", Fdelete_and_extract_region,
2842 Sdelete_and_extract_region, 2, 2, 0,
2843 doc: /* Delete the text between START and END and return it. */)
2844 (start, end)
2845 Lisp_Object start, end;
2847 validate_region (&start, &end);
2848 return del_range_1 (XINT (start), XINT (end), 1, 1);
2851 DEFUN ("widen", Fwiden, Swiden, 0, 0, "",
2852 doc: /* Remove restrictions (narrowing) from current buffer.
2853 This allows the buffer's full text to be seen and edited. */)
2856 if (BEG != BEGV || Z != ZV)
2857 current_buffer->clip_changed = 1;
2858 BEGV = BEG;
2859 BEGV_BYTE = BEG_BYTE;
2860 SET_BUF_ZV_BOTH (current_buffer, Z, Z_BYTE);
2861 /* Changing the buffer bounds invalidates any recorded current column. */
2862 invalidate_current_column ();
2863 return Qnil;
2866 DEFUN ("narrow-to-region", Fnarrow_to_region, Snarrow_to_region, 2, 2, "r",
2867 doc: /* Restrict editing in this buffer to the current region.
2868 The rest of the text becomes temporarily invisible and untouchable
2869 but is not deleted; if you save the buffer in a file, the invisible
2870 text is included in the file. \\[widen] makes all visible again.
2871 See also `save-restriction'.
2873 When calling from a program, pass two arguments; positions (integers
2874 or markers) bounding the text that should remain visible. */)
2875 (start, end)
2876 register Lisp_Object start, end;
2878 CHECK_NUMBER_COERCE_MARKER (start);
2879 CHECK_NUMBER_COERCE_MARKER (end);
2881 if (XINT (start) > XINT (end))
2883 Lisp_Object tem;
2884 tem = start; start = end; end = tem;
2887 if (!(BEG <= XINT (start) && XINT (start) <= XINT (end) && XINT (end) <= Z))
2888 args_out_of_range (start, end);
2890 if (BEGV != XFASTINT (start) || ZV != XFASTINT (end))
2891 current_buffer->clip_changed = 1;
2893 SET_BUF_BEGV (current_buffer, XFASTINT (start));
2894 SET_BUF_ZV (current_buffer, XFASTINT (end));
2895 if (PT < XFASTINT (start))
2896 SET_PT (XFASTINT (start));
2897 if (PT > XFASTINT (end))
2898 SET_PT (XFASTINT (end));
2899 /* Changing the buffer bounds invalidates any recorded current column. */
2900 invalidate_current_column ();
2901 return Qnil;
2904 Lisp_Object
2905 save_restriction_save ()
2907 if (BEGV == BEG && ZV == Z)
2908 /* The common case that the buffer isn't narrowed.
2909 We return just the buffer object, which save_restriction_restore
2910 recognizes as meaning `no restriction'. */
2911 return Fcurrent_buffer ();
2912 else
2913 /* We have to save a restriction, so return a pair of markers, one
2914 for the beginning and one for the end. */
2916 Lisp_Object beg, end;
2918 beg = buildmark (BEGV, BEGV_BYTE);
2919 end = buildmark (ZV, ZV_BYTE);
2921 /* END must move forward if text is inserted at its exact location. */
2922 XMARKER(end)->insertion_type = 1;
2924 return Fcons (beg, end);
2928 Lisp_Object
2929 save_restriction_restore (data)
2930 Lisp_Object data;
2932 if (CONSP (data))
2933 /* A pair of marks bounding a saved restriction. */
2935 struct Lisp_Marker *beg = XMARKER (XCAR (data));
2936 struct Lisp_Marker *end = XMARKER (XCDR (data));
2937 struct buffer *buf = beg->buffer; /* END should have the same buffer. */
2939 if (buf /* Verify marker still points to a buffer. */
2940 && (beg->charpos != BUF_BEGV (buf) || end->charpos != BUF_ZV (buf)))
2941 /* The restriction has changed from the saved one, so restore
2942 the saved restriction. */
2944 int pt = BUF_PT (buf);
2946 SET_BUF_BEGV_BOTH (buf, beg->charpos, beg->bytepos);
2947 SET_BUF_ZV_BOTH (buf, end->charpos, end->bytepos);
2949 if (pt < beg->charpos || pt > end->charpos)
2950 /* The point is outside the new visible range, move it inside. */
2951 SET_BUF_PT_BOTH (buf,
2952 clip_to_bounds (beg->charpos, pt, end->charpos),
2953 clip_to_bounds (beg->bytepos, BUF_PT_BYTE (buf),
2954 end->bytepos));
2956 buf->clip_changed = 1; /* Remember that the narrowing changed. */
2959 else
2960 /* A buffer, which means that there was no old restriction. */
2962 struct buffer *buf = XBUFFER (data);
2964 if (buf /* Verify marker still points to a buffer. */
2965 && (BUF_BEGV (buf) != BUF_BEG (buf) || BUF_ZV (buf) != BUF_Z (buf)))
2966 /* The buffer has been narrowed, get rid of the narrowing. */
2968 SET_BUF_BEGV_BOTH (buf, BUF_BEG (buf), BUF_BEG_BYTE (buf));
2969 SET_BUF_ZV_BOTH (buf, BUF_Z (buf), BUF_Z_BYTE (buf));
2971 buf->clip_changed = 1; /* Remember that the narrowing changed. */
2975 return Qnil;
2978 DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0,
2979 doc: /* Execute BODY, saving and restoring current buffer's restrictions.
2980 The buffer's restrictions make parts of the beginning and end invisible.
2981 (They are set up with `narrow-to-region' and eliminated with `widen'.)
2982 This special form, `save-restriction', saves the current buffer's restrictions
2983 when it is entered, and restores them when it is exited.
2984 So any `narrow-to-region' within BODY lasts only until the end of the form.
2985 The old restrictions settings are restored
2986 even in case of abnormal exit (throw or error).
2988 The value returned is the value of the last form in BODY.
2990 Note: if you are using both `save-excursion' and `save-restriction',
2991 use `save-excursion' outermost:
2992 (save-excursion (save-restriction ...))
2994 usage: (save-restriction &rest BODY) */)
2995 (body)
2996 Lisp_Object body;
2998 register Lisp_Object val;
2999 int count = SPECPDL_INDEX ();
3001 record_unwind_protect (save_restriction_restore, save_restriction_save ());
3002 val = Fprogn (body);
3003 return unbind_to (count, val);
3006 /* Buffer for the most recent text displayed by Fmessage_box. */
3007 static char *message_text;
3009 /* Allocated length of that buffer. */
3010 static int message_length;
3012 DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
3013 doc: /* Print a one-line message at the bottom of the screen.
3014 The first argument is a format control string, and the rest are data
3015 to be formatted under control of the string. See `format' for details.
3017 If the first argument is nil, clear any existing message; let the
3018 minibuffer contents show.
3020 usage: (message STRING &rest ARGS) */)
3021 (nargs, args)
3022 int nargs;
3023 Lisp_Object *args;
3025 if (NILP (args[0])
3026 || (STRINGP (args[0])
3027 && SBYTES (args[0]) == 0))
3029 message (0);
3030 return Qnil;
3032 else
3034 register Lisp_Object val;
3035 val = Fformat (nargs, args);
3036 message3 (val, SBYTES (val), STRING_MULTIBYTE (val));
3037 return val;
3041 DEFUN ("message-box", Fmessage_box, Smessage_box, 1, MANY, 0,
3042 doc: /* Display a message, in a dialog box if possible.
3043 If a dialog box is not available, use the echo area.
3044 The first argument is a format control string, and the rest are data
3045 to be formatted under control of the string. See `format' for details.
3047 If the first argument is nil, clear any existing message; let the
3048 minibuffer contents show.
3050 usage: (message-box STRING &rest ARGS) */)
3051 (nargs, args)
3052 int nargs;
3053 Lisp_Object *args;
3055 if (NILP (args[0]))
3057 message (0);
3058 return Qnil;
3060 else
3062 register Lisp_Object val;
3063 val = Fformat (nargs, args);
3064 #ifdef HAVE_MENUS
3065 /* The MS-DOS frames support popup menus even though they are
3066 not FRAME_WINDOW_P. */
3067 if (FRAME_WINDOW_P (XFRAME (selected_frame))
3068 || FRAME_MSDOS_P (XFRAME (selected_frame)))
3070 Lisp_Object pane, menu, obj;
3071 struct gcpro gcpro1;
3072 pane = Fcons (Fcons (build_string ("OK"), Qt), Qnil);
3073 GCPRO1 (pane);
3074 menu = Fcons (val, pane);
3075 obj = Fx_popup_dialog (Qt, menu);
3076 UNGCPRO;
3077 return val;
3079 #endif /* HAVE_MENUS */
3080 /* Copy the data so that it won't move when we GC. */
3081 if (! message_text)
3083 message_text = (char *)xmalloc (80);
3084 message_length = 80;
3086 if (SBYTES (val) > message_length)
3088 message_length = SBYTES (val);
3089 message_text = (char *)xrealloc (message_text, message_length);
3091 bcopy (SDATA (val), message_text, SBYTES (val));
3092 message2 (message_text, SBYTES (val),
3093 STRING_MULTIBYTE (val));
3094 return val;
3097 #ifdef HAVE_MENUS
3098 extern Lisp_Object last_nonmenu_event;
3099 #endif
3101 DEFUN ("message-or-box", Fmessage_or_box, Smessage_or_box, 1, MANY, 0,
3102 doc: /* Display a message in a dialog box or in the echo area.
3103 If this command was invoked with the mouse, use a dialog box if
3104 `use-dialog-box' is non-nil.
3105 Otherwise, use the echo area.
3106 The first argument is a format control string, and the rest are data
3107 to be formatted under control of the string. See `format' for details.
3109 If the first argument is nil, clear any existing message; let the
3110 minibuffer contents show.
3112 usage: (message-or-box STRING &rest ARGS) */)
3113 (nargs, args)
3114 int nargs;
3115 Lisp_Object *args;
3117 #ifdef HAVE_MENUS
3118 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
3119 && use_dialog_box)
3120 return Fmessage_box (nargs, args);
3121 #endif
3122 return Fmessage (nargs, args);
3125 DEFUN ("current-message", Fcurrent_message, Scurrent_message, 0, 0, 0,
3126 doc: /* Return the string currently displayed in the echo area, or nil if none. */)
3129 return current_message ();
3133 DEFUN ("propertize", Fpropertize, Spropertize, 1, MANY, 0,
3134 doc: /* Return a copy of STRING with text properties added.
3135 First argument is the string to copy.
3136 Remaining arguments form a sequence of PROPERTY VALUE pairs for text
3137 properties to add to the result.
3138 usage: (propertize STRING &rest PROPERTIES) */)
3139 (nargs, args)
3140 int nargs;
3141 Lisp_Object *args;
3143 Lisp_Object properties, string;
3144 struct gcpro gcpro1, gcpro2;
3145 int i;
3147 /* Number of args must be odd. */
3148 if ((nargs & 1) == 0 || nargs < 1)
3149 error ("Wrong number of arguments");
3151 properties = string = Qnil;
3152 GCPRO2 (properties, string);
3154 /* First argument must be a string. */
3155 CHECK_STRING (args[0]);
3156 string = Fcopy_sequence (args[0]);
3158 for (i = 1; i < nargs; i += 2)
3160 CHECK_SYMBOL (args[i]);
3161 properties = Fcons (args[i], Fcons (args[i + 1], properties));
3164 Fadd_text_properties (make_number (0),
3165 make_number (SCHARS (string)),
3166 properties, string);
3167 RETURN_UNGCPRO (string);
3171 /* Number of bytes that STRING will occupy when put into the result.
3172 MULTIBYTE is nonzero if the result should be multibyte. */
3174 #define CONVERTED_BYTE_SIZE(MULTIBYTE, STRING) \
3175 (((MULTIBYTE) && ! STRING_MULTIBYTE (STRING)) \
3176 ? count_size_as_multibyte (SDATA (STRING), SBYTES (STRING)) \
3177 : SBYTES (STRING))
3179 DEFUN ("format", Fformat, Sformat, 1, MANY, 0,
3180 doc: /* Format a string out of a control-string and arguments.
3181 The first argument is a control string.
3182 The other arguments are substituted into it to make the result, a string.
3183 It may contain %-sequences meaning to substitute the next argument.
3184 %s means print a string argument. Actually, prints any object, with `princ'.
3185 %d means print as number in decimal (%o octal, %x hex).
3186 %X is like %x, but uses upper case.
3187 %e means print a number in exponential notation.
3188 %f means print a number in decimal-point notation.
3189 %g means print a number in exponential notation
3190 or decimal-point notation, whichever uses fewer characters.
3191 %c means print a number as a single character.
3192 %S means print any object as an s-expression (using `prin1').
3193 The argument used for %d, %o, %x, %e, %f, %g or %c must be a number.
3194 Use %% to put a single % into the output.
3196 usage: (format STRING &rest OBJECTS) */)
3197 (nargs, args)
3198 int nargs;
3199 register Lisp_Object *args;
3201 register int n; /* The number of the next arg to substitute */
3202 register int total; /* An estimate of the final length */
3203 char *buf, *p;
3204 register unsigned char *format, *end;
3205 int nchars;
3206 /* Nonzero if the output should be a multibyte string,
3207 which is true if any of the inputs is one. */
3208 int multibyte = 0;
3209 /* When we make a multibyte string, we must pay attention to the
3210 byte combining problem, i.e., a byte may be combined with a
3211 multibyte charcter of the previous string. This flag tells if we
3212 must consider such a situation or not. */
3213 int maybe_combine_byte;
3214 unsigned char *this_format;
3215 /* Precision for each spec, or -1, a flag value meaning no precision
3216 was given in that spec. Element 0, corresonding to the format
3217 string itself, will not be used. Element NARGS, corresponding to
3218 no argument, *will* be assigned to in the case that a `%' and `.'
3219 occur after the final format specifier. */
3220 int *precision = (int *) (alloca(nargs * sizeof (int)));
3221 int longest_format;
3222 Lisp_Object val;
3223 struct info
3225 int start, end;
3226 } *info = 0;
3228 /* It should not be necessary to GCPRO ARGS, because
3229 the caller in the interpreter should take care of that. */
3231 /* Try to determine whether the result should be multibyte.
3232 This is not always right; sometimes the result needs to be multibyte
3233 because of an object that we will pass through prin1,
3234 and in that case, we won't know it here. */
3235 for (n = 0; n < nargs; n++) {
3236 if (STRINGP (args[n]) && STRING_MULTIBYTE (args[n]))
3237 multibyte = 1;
3238 /* Piggyback on this loop to initialize precision[N]. */
3239 precision[n] = -1;
3242 CHECK_STRING (args[0]);
3244 /* If we start out planning a unibyte result,
3245 and later find it has to be multibyte, we jump back to retry. */
3246 retry:
3248 format = SDATA (args[0]);
3249 end = format + SBYTES (args[0]);
3250 longest_format = 0;
3252 /* Make room in result for all the non-%-codes in the control string. */
3253 total = 5 + CONVERTED_BYTE_SIZE (multibyte, args[0]);
3255 /* Add to TOTAL enough space to hold the converted arguments. */
3257 n = 0;
3258 while (format != end)
3259 if (*format++ == '%')
3261 int thissize = 0;
3262 int actual_width = 0;
3263 unsigned char *this_format_start = format - 1;
3264 int field_width = 0;
3266 /* General format specifications look like
3268 '%' [flags] [field-width] [precision] format
3270 where
3272 flags ::= [#-* 0]+
3273 field-width ::= [0-9]+
3274 precision ::= '.' [0-9]*
3276 If a field-width is specified, it specifies to which width
3277 the output should be padded with blanks, iff the output
3278 string is shorter than field-width.
3280 If precision is specified, it specifies the number of
3281 digits to print after the '.' for floats, or the max.
3282 number of chars to print from a string. */
3284 /* NOTE the handling of specifiers here differs in some ways
3285 from the libc model. There are bugs in this code that lead
3286 to incorrect formatting when flags recognized by C but
3287 neither parsed nor rejected here are used. Further
3288 revisions will be made soon. */
3290 /* incorrect list of flags to skip; will be fixed */
3291 while (index ("-*# 0", *format))
3292 ++format;
3294 if (*format >= '0' && *format <= '9')
3296 for (field_width = 0; *format >= '0' && *format <= '9'; ++format)
3297 field_width = 10 * field_width + *format - '0';
3300 /* N is not incremented for another few lines below, so refer to
3301 element N+1 (which might be precision[NARGS]). */
3302 if (*format == '.')
3304 ++format;
3305 for (precision[n+1] = 0; *format >= '0' && *format <= '9'; ++format)
3306 precision[n+1] = 10 * precision[n+1] + *format - '0';
3309 if (format - this_format_start + 1 > longest_format)
3310 longest_format = format - this_format_start + 1;
3312 if (format == end)
3313 error ("Format string ends in middle of format specifier");
3314 if (*format == '%')
3315 format++;
3316 else if (++n >= nargs)
3317 error ("Not enough arguments for format string");
3318 else if (*format == 'S')
3320 /* For `S', prin1 the argument and then treat like a string. */
3321 register Lisp_Object tem;
3322 tem = Fprin1_to_string (args[n], Qnil);
3323 if (STRING_MULTIBYTE (tem) && ! multibyte)
3325 multibyte = 1;
3326 goto retry;
3328 args[n] = tem;
3329 goto string;
3331 else if (SYMBOLP (args[n]))
3333 args[n] = SYMBOL_NAME (args[n]);
3334 if (STRING_MULTIBYTE (args[n]) && ! multibyte)
3336 multibyte = 1;
3337 goto retry;
3339 goto string;
3341 else if (STRINGP (args[n]))
3343 string:
3344 if (*format != 's' && *format != 'S')
3345 error ("Format specifier doesn't match argument type");
3346 /* In the case (PRECISION[N] > 0), THISSIZE may not need
3347 to be as large as is calculated here. Easy check for
3348 the case PRECISION = 0. */
3349 thissize = precision[n] ? CONVERTED_BYTE_SIZE (multibyte, args[n]) : 0;
3350 actual_width = lisp_string_width (args[n], -1, NULL, NULL);
3352 /* Would get MPV otherwise, since Lisp_Int's `point' to low memory. */
3353 else if (INTEGERP (args[n]) && *format != 's')
3355 /* The following loop assumes the Lisp type indicates
3356 the proper way to pass the argument.
3357 So make sure we have a flonum if the argument should
3358 be a double. */
3359 if (*format == 'e' || *format == 'f' || *format == 'g')
3360 args[n] = Ffloat (args[n]);
3361 else
3362 if (*format != 'd' && *format != 'o' && *format != 'x'
3363 && *format != 'i' && *format != 'X' && *format != 'c')
3364 error ("Invalid format operation %%%c", *format);
3366 thissize = 30;
3367 if (*format == 'c')
3369 if (! SINGLE_BYTE_CHAR_P (XINT (args[n]))
3370 /* Note: No one can remeber why we have to treat
3371 the character 0 as a multibyte character here.
3372 But, until it causes a real problem, let's
3373 don't change it. */
3374 || XINT (args[n]) == 0)
3376 if (! multibyte)
3378 multibyte = 1;
3379 goto retry;
3381 args[n] = Fchar_to_string (args[n]);
3382 thissize = SBYTES (args[n]);
3384 else if (! ASCII_BYTE_P (XINT (args[n])) && multibyte)
3386 args[n]
3387 = Fchar_to_string (Funibyte_char_to_multibyte (args[n]));
3388 thissize = SBYTES (args[n]);
3392 else if (FLOATP (args[n]) && *format != 's')
3394 if (! (*format == 'e' || *format == 'f' || *format == 'g'))
3396 if (*format != 'd' && *format != 'o' && *format != 'x'
3397 && *format != 'i' && *format != 'X' && *format != 'c')
3398 error ("Invalid format operation %%%c", *format);
3399 args[n] = Ftruncate (args[n], Qnil);
3402 /* Note that we're using sprintf to print floats,
3403 so we have to take into account what that function
3404 prints. */
3405 /* Filter out flag value of -1. */
3406 thissize = (MAX_10_EXP + 100
3407 + (precision[n] > 0 ? precision[n] : 0));
3409 else
3411 /* Anything but a string, convert to a string using princ. */
3412 register Lisp_Object tem;
3413 tem = Fprin1_to_string (args[n], Qt);
3414 if (STRING_MULTIBYTE (tem) & ! multibyte)
3416 multibyte = 1;
3417 goto retry;
3419 args[n] = tem;
3420 goto string;
3423 thissize += max (0, field_width - actual_width);
3424 total += thissize + 4;
3427 /* Now we can no longer jump to retry.
3428 TOTAL and LONGEST_FORMAT are known for certain. */
3430 this_format = (unsigned char *) alloca (longest_format + 1);
3432 /* Allocate the space for the result.
3433 Note that TOTAL is an overestimate. */
3434 if (total < 1000)
3435 buf = (char *) alloca (total + 1);
3436 else
3437 buf = (char *) xmalloc (total + 1);
3439 p = buf;
3440 nchars = 0;
3441 n = 0;
3443 /* Scan the format and store result in BUF. */
3444 format = SDATA (args[0]);
3445 maybe_combine_byte = 0;
3446 while (format != end)
3448 if (*format == '%')
3450 int minlen;
3451 int negative = 0;
3452 unsigned char *this_format_start = format;
3454 format++;
3456 /* Process a numeric arg and skip it. */
3457 /* NOTE atoi is the wrong thing to use here; will be fixed */
3458 minlen = atoi (format);
3459 if (minlen < 0)
3460 minlen = - minlen, negative = 1;
3462 /* NOTE the parsing here is not consistent with the first
3463 pass, and neither attempt is what we want to do. Will be
3464 fixed. */
3465 while ((*format >= '0' && *format <= '9')
3466 || *format == '-' || *format == ' ' || *format == '.')
3467 format++;
3469 if (*format++ == '%')
3471 *p++ = '%';
3472 nchars++;
3473 continue;
3476 ++n;
3478 if (STRINGP (args[n]))
3480 /* handle case (precision[n] >= 0) */
3482 int width, padding;
3483 int nbytes, start, end;
3484 int nchars_string;
3486 /* lisp_string_width ignores a precision of 0, but GNU
3487 libc functions print 0 characters when the precision
3488 is 0. Imitate libc behavior here. Changing
3489 lisp_string_width is the right thing, and will be
3490 done, but meanwhile we work with it. */
3492 if (precision[n] == 0)
3493 width = nchars_string = nbytes = 0;
3494 else if (precision[n] > 0)
3495 width = lisp_string_width (args[n], precision[n], &nchars_string, &nbytes);
3496 else
3497 { /* no precision spec given for this argument */
3498 width = lisp_string_width (args[n], -1, NULL, NULL);
3499 nbytes = SBYTES (args[n]);
3500 nchars_string = SCHARS (args[n]);
3503 /* If spec requires it, pad on right with spaces. */
3504 padding = minlen - width;
3505 if (! negative)
3506 while (padding-- > 0)
3508 *p++ = ' ';
3509 ++nchars;
3512 start = nchars;
3513 nchars += nchars_string;
3514 end = nchars;
3516 if (p > buf
3517 && multibyte
3518 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
3519 && STRING_MULTIBYTE (args[n])
3520 && !CHAR_HEAD_P (SREF (args[n], 0)))
3521 maybe_combine_byte = 1;
3523 p += copy_text (SDATA (args[n]), p,
3524 nbytes,
3525 STRING_MULTIBYTE (args[n]), multibyte);
3527 if (negative)
3528 while (padding-- > 0)
3530 *p++ = ' ';
3531 nchars++;
3534 /* If this argument has text properties, record where
3535 in the result string it appears. */
3536 if (STRING_INTERVALS (args[n]))
3538 if (!info)
3540 int nbytes = nargs * sizeof *info;
3541 info = (struct info *) alloca (nbytes);
3542 bzero (info, nbytes);
3545 info[n].start = start;
3546 info[n].end = end;
3549 else if (INTEGERP (args[n]) || FLOATP (args[n]))
3551 int this_nchars;
3553 bcopy (this_format_start, this_format,
3554 format - this_format_start);
3555 this_format[format - this_format_start] = 0;
3557 if (INTEGERP (args[n]))
3558 sprintf (p, this_format, XINT (args[n]));
3559 else
3560 sprintf (p, this_format, XFLOAT_DATA (args[n]));
3562 if (p > buf
3563 && multibyte
3564 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
3565 && !CHAR_HEAD_P (*((unsigned char *) p)))
3566 maybe_combine_byte = 1;
3567 this_nchars = strlen (p);
3568 if (multibyte)
3569 p += str_to_multibyte (p, buf + total - p, this_nchars);
3570 else
3571 p += this_nchars;
3572 nchars += this_nchars;
3575 else if (STRING_MULTIBYTE (args[0]))
3577 /* Copy a whole multibyte character. */
3578 if (p > buf
3579 && multibyte
3580 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
3581 && !CHAR_HEAD_P (*format))
3582 maybe_combine_byte = 1;
3583 *p++ = *format++;
3584 while (! CHAR_HEAD_P (*format)) *p++ = *format++;
3585 nchars++;
3587 else if (multibyte)
3589 /* Convert a single-byte character to multibyte. */
3590 int len = copy_text (format, p, 1, 0, 1);
3592 p += len;
3593 format++;
3594 nchars++;
3596 else
3597 *p++ = *format++, nchars++;
3600 if (p > buf + total + 1)
3601 abort ();
3603 if (maybe_combine_byte)
3604 nchars = multibyte_chars_in_text (buf, p - buf);
3605 val = make_specified_string (buf, nchars, p - buf, multibyte);
3607 /* If we allocated BUF with malloc, free it too. */
3608 if (total >= 1000)
3609 xfree (buf);
3611 /* If the format string has text properties, or any of the string
3612 arguments has text properties, set up text properties of the
3613 result string. */
3615 if (STRING_INTERVALS (args[0]) || info)
3617 Lisp_Object len, new_len, props;
3618 struct gcpro gcpro1;
3620 /* Add text properties from the format string. */
3621 len = make_number (SCHARS (args[0]));
3622 props = text_property_list (args[0], make_number (0), len, Qnil);
3623 GCPRO1 (props);
3625 if (CONSP (props))
3627 new_len = make_number (SCHARS (val));
3628 extend_property_ranges (props, len, new_len);
3629 add_text_properties_from_list (val, props, make_number (0));
3632 /* Add text properties from arguments. */
3633 if (info)
3634 for (n = 1; n < nargs; ++n)
3635 if (info[n].end)
3637 len = make_number (SCHARS (args[n]));
3638 new_len = make_number (info[n].end - info[n].start);
3639 props = text_property_list (args[n], make_number (0), len, Qnil);
3640 extend_property_ranges (props, len, new_len);
3641 /* If successive arguments have properites, be sure that
3642 the value of `composition' property be the copy. */
3643 if (n > 1 && info[n - 1].end)
3644 make_composition_value_copy (props);
3645 add_text_properties_from_list (val, props,
3646 make_number (info[n].start));
3649 UNGCPRO;
3652 return val;
3655 Lisp_Object
3656 format2 (string1, arg0, arg1)
3657 char *string1;
3658 Lisp_Object arg0, arg1;
3660 Lisp_Object args[3];
3661 int numargs;
3662 args[0] = build_string (string1);
3663 args[1] = arg0;
3664 args[2] = arg1;
3665 return Fformat (3, args);
3668 DEFUN ("char-equal", Fchar_equal, Schar_equal, 2, 2, 0,
3669 doc: /* Return t if two characters match, optionally ignoring case.
3670 Both arguments must be characters (i.e. integers).
3671 Case is ignored if `case-fold-search' is non-nil in the current buffer. */)
3672 (c1, c2)
3673 register Lisp_Object c1, c2;
3675 int i1, i2;
3676 CHECK_NUMBER (c1);
3677 CHECK_NUMBER (c2);
3679 if (XINT (c1) == XINT (c2))
3680 return Qt;
3681 if (NILP (current_buffer->case_fold_search))
3682 return Qnil;
3684 /* Do these in separate statements,
3685 then compare the variables.
3686 because of the way DOWNCASE uses temp variables. */
3687 i1 = DOWNCASE (XFASTINT (c1));
3688 i2 = DOWNCASE (XFASTINT (c2));
3689 return (i1 == i2 ? Qt : Qnil);
3692 /* Transpose the markers in two regions of the current buffer, and
3693 adjust the ones between them if necessary (i.e.: if the regions
3694 differ in size).
3696 START1, END1 are the character positions of the first region.
3697 START1_BYTE, END1_BYTE are the byte positions.
3698 START2, END2 are the character positions of the second region.
3699 START2_BYTE, END2_BYTE are the byte positions.
3701 Traverses the entire marker list of the buffer to do so, adding an
3702 appropriate amount to some, subtracting from some, and leaving the
3703 rest untouched. Most of this is copied from adjust_markers in insdel.c.
3705 It's the caller's job to ensure that START1 <= END1 <= START2 <= END2. */
3707 static void
3708 transpose_markers (start1, end1, start2, end2,
3709 start1_byte, end1_byte, start2_byte, end2_byte)
3710 register int start1, end1, start2, end2;
3711 register int start1_byte, end1_byte, start2_byte, end2_byte;
3713 register int amt1, amt1_byte, amt2, amt2_byte, diff, diff_byte, mpos;
3714 register Lisp_Object marker;
3716 /* Update point as if it were a marker. */
3717 if (PT < start1)
3719 else if (PT < end1)
3720 TEMP_SET_PT_BOTH (PT + (end2 - end1),
3721 PT_BYTE + (end2_byte - end1_byte));
3722 else if (PT < start2)
3723 TEMP_SET_PT_BOTH (PT + (end2 - start2) - (end1 - start1),
3724 (PT_BYTE + (end2_byte - start2_byte)
3725 - (end1_byte - start1_byte)));
3726 else if (PT < end2)
3727 TEMP_SET_PT_BOTH (PT - (start2 - start1),
3728 PT_BYTE - (start2_byte - start1_byte));
3730 /* We used to adjust the endpoints here to account for the gap, but that
3731 isn't good enough. Even if we assume the caller has tried to move the
3732 gap out of our way, it might still be at start1 exactly, for example;
3733 and that places it `inside' the interval, for our purposes. The amount
3734 of adjustment is nontrivial if there's a `denormalized' marker whose
3735 position is between GPT and GPT + GAP_SIZE, so it's simpler to leave
3736 the dirty work to Fmarker_position, below. */
3738 /* The difference between the region's lengths */
3739 diff = (end2 - start2) - (end1 - start1);
3740 diff_byte = (end2_byte - start2_byte) - (end1_byte - start1_byte);
3742 /* For shifting each marker in a region by the length of the other
3743 region plus the distance between the regions. */
3744 amt1 = (end2 - start2) + (start2 - end1);
3745 amt2 = (end1 - start1) + (start2 - end1);
3746 amt1_byte = (end2_byte - start2_byte) + (start2_byte - end1_byte);
3747 amt2_byte = (end1_byte - start1_byte) + (start2_byte - end1_byte);
3749 for (marker = BUF_MARKERS (current_buffer); !NILP (marker);
3750 marker = XMARKER (marker)->chain)
3752 mpos = marker_byte_position (marker);
3753 if (mpos >= start1_byte && mpos < end2_byte)
3755 if (mpos < end1_byte)
3756 mpos += amt1_byte;
3757 else if (mpos < start2_byte)
3758 mpos += diff_byte;
3759 else
3760 mpos -= amt2_byte;
3761 XMARKER (marker)->bytepos = mpos;
3763 mpos = XMARKER (marker)->charpos;
3764 if (mpos >= start1 && mpos < end2)
3766 if (mpos < end1)
3767 mpos += amt1;
3768 else if (mpos < start2)
3769 mpos += diff;
3770 else
3771 mpos -= amt2;
3773 XMARKER (marker)->charpos = mpos;
3777 DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0,
3778 doc: /* Transpose region START1 to END1 with START2 to END2.
3779 The regions may not be overlapping, because the size of the buffer is
3780 never changed in a transposition.
3782 Optional fifth arg LEAVE_MARKERS, if non-nil, means don't update
3783 any markers that happen to be located in the regions.
3785 Transposing beyond buffer boundaries is an error. */)
3786 (startr1, endr1, startr2, endr2, leave_markers)
3787 Lisp_Object startr1, endr1, startr2, endr2, leave_markers;
3789 register int start1, end1, start2, end2;
3790 int start1_byte, start2_byte, len1_byte, len2_byte;
3791 int gap, len1, len_mid, len2;
3792 unsigned char *start1_addr, *start2_addr, *temp;
3794 INTERVAL cur_intv, tmp_interval1, tmp_interval_mid, tmp_interval2;
3795 cur_intv = BUF_INTERVALS (current_buffer);
3797 validate_region (&startr1, &endr1);
3798 validate_region (&startr2, &endr2);
3800 start1 = XFASTINT (startr1);
3801 end1 = XFASTINT (endr1);
3802 start2 = XFASTINT (startr2);
3803 end2 = XFASTINT (endr2);
3804 gap = GPT;
3806 /* Swap the regions if they're reversed. */
3807 if (start2 < end1)
3809 register int glumph = start1;
3810 start1 = start2;
3811 start2 = glumph;
3812 glumph = end1;
3813 end1 = end2;
3814 end2 = glumph;
3817 len1 = end1 - start1;
3818 len2 = end2 - start2;
3820 if (start2 < end1)
3821 error ("Transposed regions overlap");
3822 else if (start1 == end1 || start2 == end2)
3823 error ("Transposed region has length 0");
3825 /* The possibilities are:
3826 1. Adjacent (contiguous) regions, or separate but equal regions
3827 (no, really equal, in this case!), or
3828 2. Separate regions of unequal size.
3830 The worst case is usually No. 2. It means that (aside from
3831 potential need for getting the gap out of the way), there also
3832 needs to be a shifting of the text between the two regions. So
3833 if they are spread far apart, we are that much slower... sigh. */
3835 /* It must be pointed out that the really studly thing to do would
3836 be not to move the gap at all, but to leave it in place and work
3837 around it if necessary. This would be extremely efficient,
3838 especially considering that people are likely to do
3839 transpositions near where they are working interactively, which
3840 is exactly where the gap would be found. However, such code
3841 would be much harder to write and to read. So, if you are
3842 reading this comment and are feeling squirrely, by all means have
3843 a go! I just didn't feel like doing it, so I will simply move
3844 the gap the minimum distance to get it out of the way, and then
3845 deal with an unbroken array. */
3847 /* Make sure the gap won't interfere, by moving it out of the text
3848 we will operate on. */
3849 if (start1 < gap && gap < end2)
3851 if (gap - start1 < end2 - gap)
3852 move_gap (start1);
3853 else
3854 move_gap (end2);
3857 start1_byte = CHAR_TO_BYTE (start1);
3858 start2_byte = CHAR_TO_BYTE (start2);
3859 len1_byte = CHAR_TO_BYTE (end1) - start1_byte;
3860 len2_byte = CHAR_TO_BYTE (end2) - start2_byte;
3862 #ifdef BYTE_COMBINING_DEBUG
3863 if (end1 == start2)
3865 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
3866 len2_byte, start1, start1_byte)
3867 || count_combining_before (BYTE_POS_ADDR (start1_byte),
3868 len1_byte, end2, start2_byte + len2_byte)
3869 || count_combining_after (BYTE_POS_ADDR (start1_byte),
3870 len1_byte, end2, start2_byte + len2_byte))
3871 abort ();
3873 else
3875 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
3876 len2_byte, start1, start1_byte)
3877 || count_combining_before (BYTE_POS_ADDR (start1_byte),
3878 len1_byte, start2, start2_byte)
3879 || count_combining_after (BYTE_POS_ADDR (start2_byte),
3880 len2_byte, end1, start1_byte + len1_byte)
3881 || count_combining_after (BYTE_POS_ADDR (start1_byte),
3882 len1_byte, end2, start2_byte + len2_byte))
3883 abort ();
3885 #endif
3887 /* Hmmm... how about checking to see if the gap is large
3888 enough to use as the temporary storage? That would avoid an
3889 allocation... interesting. Later, don't fool with it now. */
3891 /* Working without memmove, for portability (sigh), so must be
3892 careful of overlapping subsections of the array... */
3894 if (end1 == start2) /* adjacent regions */
3896 modify_region (current_buffer, start1, end2);
3897 record_change (start1, len1 + len2);
3899 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
3900 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
3901 Fset_text_properties (make_number (start1), make_number (end2),
3902 Qnil, Qnil);
3904 /* First region smaller than second. */
3905 if (len1_byte < len2_byte)
3907 /* We use alloca only if it is small,
3908 because we want to avoid stack overflow. */
3909 if (len2_byte > 20000)
3910 temp = (unsigned char *) xmalloc (len2_byte);
3911 else
3912 temp = (unsigned char *) alloca (len2_byte);
3914 /* Don't precompute these addresses. We have to compute them
3915 at the last minute, because the relocating allocator might
3916 have moved the buffer around during the xmalloc. */
3917 start1_addr = BYTE_POS_ADDR (start1_byte);
3918 start2_addr = BYTE_POS_ADDR (start2_byte);
3920 bcopy (start2_addr, temp, len2_byte);
3921 bcopy (start1_addr, start1_addr + len2_byte, len1_byte);
3922 bcopy (temp, start1_addr, len2_byte);
3923 if (len2_byte > 20000)
3924 xfree (temp);
3926 else
3927 /* First region not smaller than second. */
3929 if (len1_byte > 20000)
3930 temp = (unsigned char *) xmalloc (len1_byte);
3931 else
3932 temp = (unsigned char *) alloca (len1_byte);
3933 start1_addr = BYTE_POS_ADDR (start1_byte);
3934 start2_addr = BYTE_POS_ADDR (start2_byte);
3935 bcopy (start1_addr, temp, len1_byte);
3936 bcopy (start2_addr, start1_addr, len2_byte);
3937 bcopy (temp, start1_addr + len2_byte, len1_byte);
3938 if (len1_byte > 20000)
3939 xfree (temp);
3941 graft_intervals_into_buffer (tmp_interval1, start1 + len2,
3942 len1, current_buffer, 0);
3943 graft_intervals_into_buffer (tmp_interval2, start1,
3944 len2, current_buffer, 0);
3945 update_compositions (start1, start1 + len2, CHECK_BORDER);
3946 update_compositions (start1 + len2, end2, CHECK_TAIL);
3948 /* Non-adjacent regions, because end1 != start2, bleagh... */
3949 else
3951 len_mid = start2_byte - (start1_byte + len1_byte);
3953 if (len1_byte == len2_byte)
3954 /* Regions are same size, though, how nice. */
3956 modify_region (current_buffer, start1, end1);
3957 modify_region (current_buffer, start2, end2);
3958 record_change (start1, len1);
3959 record_change (start2, len2);
3960 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
3961 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
3962 Fset_text_properties (make_number (start1), make_number (end1),
3963 Qnil, Qnil);
3964 Fset_text_properties (make_number (start2), make_number (end2),
3965 Qnil, Qnil);
3967 if (len1_byte > 20000)
3968 temp = (unsigned char *) xmalloc (len1_byte);
3969 else
3970 temp = (unsigned char *) alloca (len1_byte);
3971 start1_addr = BYTE_POS_ADDR (start1_byte);
3972 start2_addr = BYTE_POS_ADDR (start2_byte);
3973 bcopy (start1_addr, temp, len1_byte);
3974 bcopy (start2_addr, start1_addr, len2_byte);
3975 bcopy (temp, start2_addr, len1_byte);
3976 if (len1_byte > 20000)
3977 xfree (temp);
3978 graft_intervals_into_buffer (tmp_interval1, start2,
3979 len1, current_buffer, 0);
3980 graft_intervals_into_buffer (tmp_interval2, start1,
3981 len2, current_buffer, 0);
3984 else if (len1_byte < len2_byte) /* Second region larger than first */
3985 /* Non-adjacent & unequal size, area between must also be shifted. */
3987 modify_region (current_buffer, start1, end2);
3988 record_change (start1, (end2 - start1));
3989 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
3990 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
3991 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
3992 Fset_text_properties (make_number (start1), make_number (end2),
3993 Qnil, Qnil);
3995 /* holds region 2 */
3996 if (len2_byte > 20000)
3997 temp = (unsigned char *) xmalloc (len2_byte);
3998 else
3999 temp = (unsigned char *) alloca (len2_byte);
4000 start1_addr = BYTE_POS_ADDR (start1_byte);
4001 start2_addr = BYTE_POS_ADDR (start2_byte);
4002 bcopy (start2_addr, temp, len2_byte);
4003 bcopy (start1_addr, start1_addr + len_mid + len2_byte, len1_byte);
4004 safe_bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
4005 bcopy (temp, start1_addr, len2_byte);
4006 if (len2_byte > 20000)
4007 xfree (temp);
4008 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4009 len1, current_buffer, 0);
4010 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4011 len_mid, current_buffer, 0);
4012 graft_intervals_into_buffer (tmp_interval2, start1,
4013 len2, current_buffer, 0);
4015 else
4016 /* Second region smaller than first. */
4018 record_change (start1, (end2 - start1));
4019 modify_region (current_buffer, start1, end2);
4021 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4022 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
4023 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4024 Fset_text_properties (make_number (start1), make_number (end2),
4025 Qnil, Qnil);
4027 /* holds region 1 */
4028 if (len1_byte > 20000)
4029 temp = (unsigned char *) xmalloc (len1_byte);
4030 else
4031 temp = (unsigned char *) alloca (len1_byte);
4032 start1_addr = BYTE_POS_ADDR (start1_byte);
4033 start2_addr = BYTE_POS_ADDR (start2_byte);
4034 bcopy (start1_addr, temp, len1_byte);
4035 bcopy (start2_addr, start1_addr, len2_byte);
4036 bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
4037 bcopy (temp, start1_addr + len2_byte + len_mid, len1_byte);
4038 if (len1_byte > 20000)
4039 xfree (temp);
4040 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4041 len1, current_buffer, 0);
4042 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4043 len_mid, current_buffer, 0);
4044 graft_intervals_into_buffer (tmp_interval2, start1,
4045 len2, current_buffer, 0);
4048 update_compositions (start1, start1 + len2, CHECK_BORDER);
4049 update_compositions (end2 - len1, end2, CHECK_BORDER);
4052 /* When doing multiple transpositions, it might be nice
4053 to optimize this. Perhaps the markers in any one buffer
4054 should be organized in some sorted data tree. */
4055 if (NILP (leave_markers))
4057 transpose_markers (start1, end1, start2, end2,
4058 start1_byte, start1_byte + len1_byte,
4059 start2_byte, start2_byte + len2_byte);
4060 fix_overlays_in_range (start1, end2);
4063 return Qnil;
4067 void
4068 syms_of_editfns ()
4070 environbuf = 0;
4072 Qbuffer_access_fontify_functions
4073 = intern ("buffer-access-fontify-functions");
4074 staticpro (&Qbuffer_access_fontify_functions);
4076 DEFVAR_LISP ("inhibit-field-text-motion", &Vinhibit_field_text_motion,
4077 doc: /* Non-nil means text motion commands don't notice fields. */);
4078 Vinhibit_field_text_motion = Qnil;
4080 DEFVAR_LISP ("buffer-access-fontify-functions",
4081 &Vbuffer_access_fontify_functions,
4082 doc: /* List of functions called by `buffer-substring' to fontify if necessary.
4083 Each function is called with two arguments which specify the range
4084 of the buffer being accessed. */);
4085 Vbuffer_access_fontify_functions = Qnil;
4088 Lisp_Object obuf;
4089 extern Lisp_Object Vprin1_to_string_buffer;
4090 obuf = Fcurrent_buffer ();
4091 /* Do this here, because init_buffer_once is too early--it won't work. */
4092 Fset_buffer (Vprin1_to_string_buffer);
4093 /* Make sure buffer-access-fontify-functions is nil in this buffer. */
4094 Fset (Fmake_local_variable (intern ("buffer-access-fontify-functions")),
4095 Qnil);
4096 Fset_buffer (obuf);
4099 DEFVAR_LISP ("buffer-access-fontified-property",
4100 &Vbuffer_access_fontified_property,
4101 doc: /* Property which (if non-nil) indicates text has been fontified.
4102 `buffer-substring' need not call the `buffer-access-fontify-functions'
4103 functions if all the text being accessed has this property. */);
4104 Vbuffer_access_fontified_property = Qnil;
4106 DEFVAR_LISP ("system-name", &Vsystem_name,
4107 doc: /* The name of the machine Emacs is running on. */);
4109 DEFVAR_LISP ("user-full-name", &Vuser_full_name,
4110 doc: /* The full name of the user logged in. */);
4112 DEFVAR_LISP ("user-login-name", &Vuser_login_name,
4113 doc: /* The user's name, taken from environment variables if possible. */);
4115 DEFVAR_LISP ("user-real-login-name", &Vuser_real_login_name,
4116 doc: /* The user's name, based upon the real uid only. */);
4118 defsubr (&Spropertize);
4119 defsubr (&Schar_equal);
4120 defsubr (&Sgoto_char);
4121 defsubr (&Sstring_to_char);
4122 defsubr (&Schar_to_string);
4123 defsubr (&Sbuffer_substring);
4124 defsubr (&Sbuffer_substring_no_properties);
4125 defsubr (&Sbuffer_string);
4127 defsubr (&Spoint_marker);
4128 defsubr (&Smark_marker);
4129 defsubr (&Spoint);
4130 defsubr (&Sregion_beginning);
4131 defsubr (&Sregion_end);
4133 staticpro (&Qfield);
4134 Qfield = intern ("field");
4135 staticpro (&Qboundary);
4136 Qboundary = intern ("boundary");
4137 defsubr (&Sfield_beginning);
4138 defsubr (&Sfield_end);
4139 defsubr (&Sfield_string);
4140 defsubr (&Sfield_string_no_properties);
4141 defsubr (&Sdelete_field);
4142 defsubr (&Sconstrain_to_field);
4144 defsubr (&Sline_beginning_position);
4145 defsubr (&Sline_end_position);
4147 /* defsubr (&Smark); */
4148 /* defsubr (&Sset_mark); */
4149 defsubr (&Ssave_excursion);
4150 defsubr (&Ssave_current_buffer);
4152 defsubr (&Sbufsize);
4153 defsubr (&Spoint_max);
4154 defsubr (&Spoint_min);
4155 defsubr (&Spoint_min_marker);
4156 defsubr (&Spoint_max_marker);
4157 defsubr (&Sgap_position);
4158 defsubr (&Sgap_size);
4159 defsubr (&Sposition_bytes);
4160 defsubr (&Sbyte_to_position);
4162 defsubr (&Sbobp);
4163 defsubr (&Seobp);
4164 defsubr (&Sbolp);
4165 defsubr (&Seolp);
4166 defsubr (&Sfollowing_char);
4167 defsubr (&Sprevious_char);
4168 defsubr (&Schar_after);
4169 defsubr (&Schar_before);
4170 defsubr (&Sinsert);
4171 defsubr (&Sinsert_before_markers);
4172 defsubr (&Sinsert_and_inherit);
4173 defsubr (&Sinsert_and_inherit_before_markers);
4174 defsubr (&Sinsert_char);
4176 defsubr (&Suser_login_name);
4177 defsubr (&Suser_real_login_name);
4178 defsubr (&Suser_uid);
4179 defsubr (&Suser_real_uid);
4180 defsubr (&Suser_full_name);
4181 defsubr (&Semacs_pid);
4182 defsubr (&Scurrent_time);
4183 defsubr (&Sformat_time_string);
4184 defsubr (&Sfloat_time);
4185 defsubr (&Sdecode_time);
4186 defsubr (&Sencode_time);
4187 defsubr (&Scurrent_time_string);
4188 defsubr (&Scurrent_time_zone);
4189 defsubr (&Sset_time_zone_rule);
4190 defsubr (&Ssystem_name);
4191 defsubr (&Smessage);
4192 defsubr (&Smessage_box);
4193 defsubr (&Smessage_or_box);
4194 defsubr (&Scurrent_message);
4195 defsubr (&Sformat);
4197 defsubr (&Sinsert_buffer_substring);
4198 defsubr (&Scompare_buffer_substrings);
4199 defsubr (&Ssubst_char_in_region);
4200 defsubr (&Stranslate_region);
4201 defsubr (&Sdelete_region);
4202 defsubr (&Sdelete_and_extract_region);
4203 defsubr (&Swiden);
4204 defsubr (&Snarrow_to_region);
4205 defsubr (&Ssave_restriction);
4206 defsubr (&Stranspose_regions);