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