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