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