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