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