Fix bug #9221 with memory leak in bidi display.
[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 DEFUN ("format", Fformat, Sformat, 1, MANY, 0,
3508 doc: /* Format a string out of a format-string and arguments.
3509 The first argument is a format control string.
3510 The other arguments are substituted into it to make the result, a string.
3511
3512 The format control string may contain %-sequences meaning to substitute
3513 the next available argument:
3514
3515 %s means print a string argument. Actually, prints any object, with `princ'.
3516 %d means print as number in decimal (%o octal, %x hex).
3517 %X is like %x, but uses upper case.
3518 %e means print a number in exponential notation.
3519 %f means print a number in decimal-point notation.
3520 %g means print a number in exponential notation
3521 or decimal-point notation, whichever uses fewer characters.
3522 %c means print a number as a single character.
3523 %S means print any object as an s-expression (using `prin1').
3524
3525 The argument used for %d, %o, %x, %e, %f, %g or %c must be a number.
3526 Use %% to put a single % into the output.
3527
3528 A %-sequence may contain optional flag, width, and precision
3529 specifiers, as follows:
3530
3531 %<flags><width><precision>character
3532
3533 where flags is [+ #-0]+, width is [0-9]+, and precision is .[0-9]+
3534
3535 The + flag character inserts a + before any positive number, while a
3536 space inserts a space before any positive number; these flags only
3537 affect %d, %e, %f, and %g sequences, and the + flag takes precedence.
3538 The # flag means to use an alternate display form for %o, %x, %X, %e,
3539 %f, and %g sequences. The - and 0 flags affect the width specifier,
3540 as described below.
3541
3542 The width specifier supplies a lower limit for the length of the
3543 printed representation. The padding, if any, normally goes on the
3544 left, but it goes on the right if the - flag is present. The padding
3545 character is normally a space, but it is 0 if the 0 flag is present.
3546 The 0 flag is ignored if the - flag is present, or the format sequence
3547 is something other than %d, %e, %f, and %g.
3548
3549 For %e, %f, and %g sequences, the number after the "." in the
3550 precision specifier says how many decimal places to show; if zero, the
3551 decimal point itself is omitted. For %s and %S, the precision
3552 specifier truncates the string to the given width.
3553
3554 usage: (format STRING &rest OBJECTS) */)
3555 (ptrdiff_t nargs, Lisp_Object *args)
3556 {
3557 ptrdiff_t n; /* The number of the next arg to substitute */
3558 char initial_buffer[4000];
3559 char *buf = initial_buffer;
3560 EMACS_INT bufsize = sizeof initial_buffer;
3561 EMACS_INT max_bufsize = STRING_BYTES_BOUND + 1;
3562 char *p;
3563 Lisp_Object buf_save_value IF_LINT (= {0});
3564 register char *format, *end, *format_start;
3565 EMACS_INT formatlen, nchars;
3566 /* Nonzero if the format is multibyte. */
3567 int multibyte_format = 0;
3568 /* Nonzero if the output should be a multibyte string,
3569 which is true if any of the inputs is one. */
3570 int multibyte = 0;
3571 /* When we make a multibyte string, we must pay attention to the
3572 byte combining problem, i.e., a byte may be combined with a
3573 multibyte character of the previous string. This flag tells if we
3574 must consider such a situation or not. */
3575 int maybe_combine_byte;
3576 Lisp_Object val;
3577 int arg_intervals = 0;
3578 USE_SAFE_ALLOCA;
3579
3580 /* discarded[I] is 1 if byte I of the format
3581 string was not copied into the output.
3582 It is 2 if byte I was not the first byte of its character. */
3583 char *discarded;
3584
3585 /* Each element records, for one argument,
3586 the start and end bytepos in the output string,
3587 whether the argument has been converted to string (e.g., due to "%S"),
3588 and whether the argument is a string with intervals.
3589 info[0] is unused. Unused elements have -1 for start. */
3590 struct info
3591 {
3592 EMACS_INT start, end;
3593 int converted_to_string;
3594 int intervals;
3595 } *info = 0;
3596
3597 /* It should not be necessary to GCPRO ARGS, because
3598 the caller in the interpreter should take care of that. */
3599
3600 CHECK_STRING (args[0]);
3601 format_start = SSDATA (args[0]);
3602 formatlen = SBYTES (args[0]);
3603
3604 /* Allocate the info and discarded tables. */
3605 {
3606 ptrdiff_t i;
3607 if ((SIZE_MAX - formatlen) / sizeof (struct info) <= nargs)
3608 memory_full (SIZE_MAX);
3609 SAFE_ALLOCA (info, struct info *, (nargs + 1) * sizeof *info + formatlen);
3610 discarded = (char *) &info[nargs + 1];
3611 for (i = 0; i < nargs + 1; i++)
3612 {
3613 info[i].start = -1;
3614 info[i].intervals = info[i].converted_to_string = 0;
3615 }
3616 memset (discarded, 0, formatlen);
3617 }
3618
3619 /* Try to determine whether the result should be multibyte.
3620 This is not always right; sometimes the result needs to be multibyte
3621 because of an object that we will pass through prin1,
3622 and in that case, we won't know it here. */
3623 multibyte_format = STRING_MULTIBYTE (args[0]);
3624 multibyte = multibyte_format;
3625 for (n = 1; !multibyte && n < nargs; n++)
3626 if (STRINGP (args[n]) && STRING_MULTIBYTE (args[n]))
3627 multibyte = 1;
3628
3629 /* If we start out planning a unibyte result,
3630 then discover it has to be multibyte, we jump back to retry. */
3631 retry:
3632
3633 p = buf;
3634 nchars = 0;
3635 n = 0;
3636
3637 /* Scan the format and store result in BUF. */
3638 format = format_start;
3639 end = format + formatlen;
3640 maybe_combine_byte = 0;
3641
3642 while (format != end)
3643 {
3644 /* The values of N and FORMAT when the loop body is entered. */
3645 ptrdiff_t n0 = n;
3646 char *format0 = format;
3647
3648 /* Bytes needed to represent the output of this conversion. */
3649 EMACS_INT convbytes;
3650
3651 if (*format == '%')
3652 {
3653 /* General format specifications look like
3654
3655 '%' [flags] [field-width] [precision] format
3656
3657 where
3658
3659 flags ::= [-+0# ]+
3660 field-width ::= [0-9]+
3661 precision ::= '.' [0-9]*
3662
3663 If a field-width is specified, it specifies to which width
3664 the output should be padded with blanks, if the output
3665 string is shorter than field-width.
3666
3667 If precision is specified, it specifies the number of
3668 digits to print after the '.' for floats, or the max.
3669 number of chars to print from a string. */
3670
3671 int minus_flag = 0;
3672 int plus_flag = 0;
3673 int space_flag = 0;
3674 int sharp_flag = 0;
3675 int zero_flag = 0;
3676 EMACS_INT field_width;
3677 int precision_given;
3678 uintmax_t precision = UINTMAX_MAX;
3679 char *num_end;
3680 char conversion;
3681
3682 while (1)
3683 {
3684 switch (*++format)
3685 {
3686 case '-': minus_flag = 1; continue;
3687 case '+': plus_flag = 1; continue;
3688 case ' ': space_flag = 1; continue;
3689 case '#': sharp_flag = 1; continue;
3690 case '0': zero_flag = 1; continue;
3691 }
3692 break;
3693 }
3694
3695 /* Ignore flags when sprintf ignores them. */
3696 space_flag &= ~ plus_flag;
3697 zero_flag &= ~ minus_flag;
3698
3699 {
3700 uintmax_t w = strtoumax (format, &num_end, 10);
3701 if (max_bufsize <= w)
3702 string_overflow ();
3703 field_width = w;
3704 }
3705 precision_given = *num_end == '.';
3706 if (precision_given)
3707 precision = strtoumax (num_end + 1, &num_end, 10);
3708 format = num_end;
3709
3710 if (format == end)
3711 error ("Format string ends in middle of format specifier");
3712
3713 memset (&discarded[format0 - format_start], 1, format - format0);
3714 conversion = *format;
3715 if (conversion == '%')
3716 goto copy_char;
3717 discarded[format - format_start] = 1;
3718 format++;
3719
3720 ++n;
3721 if (! (n < nargs))
3722 error ("Not enough arguments for format string");
3723
3724 /* For 'S', prin1 the argument, and then treat like 's'.
3725 For 's', princ any argument that is not a string or
3726 symbol. But don't do this conversion twice, which might
3727 happen after retrying. */
3728 if ((conversion == 'S'
3729 || (conversion == 's'
3730 && ! STRINGP (args[n]) && ! SYMBOLP (args[n]))))
3731 {
3732 if (! info[n].converted_to_string)
3733 {
3734 Lisp_Object noescape = conversion == 'S' ? Qnil : Qt;
3735 args[n] = Fprin1_to_string (args[n], noescape);
3736 info[n].converted_to_string = 1;
3737 if (STRING_MULTIBYTE (args[n]) && ! multibyte)
3738 {
3739 multibyte = 1;
3740 goto retry;
3741 }
3742 }
3743 conversion = 's';
3744 }
3745 else if (conversion == 'c')
3746 {
3747 if (FLOATP (args[n]))
3748 {
3749 double d = XFLOAT_DATA (args[n]);
3750 args[n] = make_number (FIXNUM_OVERFLOW_P (d) ? -1 : d);
3751 }
3752
3753 if (INTEGERP (args[n]) && ! ASCII_CHAR_P (XINT (args[n])))
3754 {
3755 if (!multibyte)
3756 {
3757 multibyte = 1;
3758 goto retry;
3759 }
3760 args[n] = Fchar_to_string (args[n]);
3761 info[n].converted_to_string = 1;
3762 }
3763
3764 if (info[n].converted_to_string)
3765 conversion = 's';
3766 zero_flag = 0;
3767 }
3768
3769 if (SYMBOLP (args[n]))
3770 {
3771 args[n] = SYMBOL_NAME (args[n]);
3772 if (STRING_MULTIBYTE (args[n]) && ! multibyte)
3773 {
3774 multibyte = 1;
3775 goto retry;
3776 }
3777 }
3778
3779 if (conversion == 's')
3780 {
3781 /* handle case (precision[n] >= 0) */
3782
3783 EMACS_INT width, padding, nbytes;
3784 EMACS_INT nchars_string;
3785
3786 EMACS_INT prec = -1;
3787 if (precision_given && precision <= TYPE_MAXIMUM (EMACS_INT))
3788 prec = precision;
3789
3790 /* lisp_string_width ignores a precision of 0, but GNU
3791 libc functions print 0 characters when the precision
3792 is 0. Imitate libc behavior here. Changing
3793 lisp_string_width is the right thing, and will be
3794 done, but meanwhile we work with it. */
3795
3796 if (prec == 0)
3797 width = nchars_string = nbytes = 0;
3798 else
3799 {
3800 EMACS_INT nch, nby;
3801 width = lisp_string_width (args[n], prec, &nch, &nby);
3802 if (prec < 0)
3803 {
3804 nchars_string = SCHARS (args[n]);
3805 nbytes = SBYTES (args[n]);
3806 }
3807 else
3808 {
3809 nchars_string = nch;
3810 nbytes = nby;
3811 }
3812 }
3813
3814 convbytes = nbytes;
3815 if (convbytes && multibyte && ! STRING_MULTIBYTE (args[n]))
3816 convbytes = count_size_as_multibyte (SDATA (args[n]), nbytes);
3817
3818 padding = width < field_width ? field_width - width : 0;
3819
3820 if (max_bufsize - padding <= convbytes)
3821 string_overflow ();
3822 convbytes += padding;
3823 if (convbytes <= buf + bufsize - p)
3824 {
3825 if (! minus_flag)
3826 {
3827 memset (p, ' ', padding);
3828 p += padding;
3829 nchars += padding;
3830 }
3831
3832 if (p > buf
3833 && multibyte
3834 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
3835 && STRING_MULTIBYTE (args[n])
3836 && !CHAR_HEAD_P (SREF (args[n], 0)))
3837 maybe_combine_byte = 1;
3838
3839 p += copy_text (SDATA (args[n]), (unsigned char *) p,
3840 nbytes,
3841 STRING_MULTIBYTE (args[n]), multibyte);
3842
3843 info[n].start = nchars;
3844 nchars += nchars_string;
3845 info[n].end = nchars;
3846
3847 if (minus_flag)
3848 {
3849 memset (p, ' ', padding);
3850 p += padding;
3851 nchars += padding;
3852 }
3853
3854 /* If this argument has text properties, record where
3855 in the result string it appears. */
3856 if (STRING_INTERVALS (args[n]))
3857 info[n].intervals = arg_intervals = 1;
3858
3859 continue;
3860 }
3861 }
3862 else if (! (conversion == 'c' || conversion == 'd'
3863 || conversion == 'e' || conversion == 'f'
3864 || conversion == 'g' || conversion == 'i'
3865 || conversion == 'o' || conversion == 'x'
3866 || conversion == 'X'))
3867 error ("Invalid format operation %%%c",
3868 STRING_CHAR ((unsigned char *) format - 1));
3869 else if (! (INTEGERP (args[n]) || FLOATP (args[n])))
3870 error ("Format specifier doesn't match argument type");
3871 else
3872 {
3873 enum
3874 {
3875 /* Maximum precision for a %f conversion such that the
3876 trailing output digit might be nonzero. Any precisions
3877 larger than this will not yield useful information. */
3878 USEFUL_PRECISION_MAX =
3879 ((1 - DBL_MIN_EXP)
3880 * (FLT_RADIX == 2 || FLT_RADIX == 10 ? 1
3881 : FLT_RADIX == 16 ? 4
3882 : -1)),
3883
3884 /* Maximum number of bytes generated by any format, if
3885 precision is no more than DBL_USEFUL_PRECISION_MAX.
3886 On all practical hosts, %f is the worst case. */
3887 SPRINTF_BUFSIZE =
3888 sizeof "-." + (DBL_MAX_10_EXP + 1) + USEFUL_PRECISION_MAX,
3889
3890 /* Length of pM (that is, of pMd without the
3891 trailing "d"). */
3892 pMlen = sizeof pMd - 2
3893 };
3894 verify (0 < USEFUL_PRECISION_MAX);
3895
3896 int prec;
3897 EMACS_INT padding, sprintf_bytes;
3898 uintmax_t excess_precision, numwidth;
3899 uintmax_t leading_zeros = 0, trailing_zeros = 0;
3900
3901 char sprintf_buf[SPRINTF_BUFSIZE];
3902
3903 /* Copy of conversion specification, modified somewhat.
3904 At most three flags F can be specified at once. */
3905 char convspec[sizeof "%FFF.*d" + pMlen];
3906
3907 /* Avoid undefined behavior in underlying sprintf. */
3908 if (conversion == 'd' || conversion == 'i')
3909 sharp_flag = 0;
3910
3911 /* Create the copy of the conversion specification, with
3912 any width and precision removed, with ".*" inserted,
3913 and with pM inserted for integer formats. */
3914 {
3915 char *f = convspec;
3916 *f++ = '%';
3917 *f = '-'; f += minus_flag;
3918 *f = '+'; f += plus_flag;
3919 *f = ' '; f += space_flag;
3920 *f = '#'; f += sharp_flag;
3921 *f = '0'; f += zero_flag;
3922 *f++ = '.';
3923 *f++ = '*';
3924 if (conversion == 'd' || conversion == 'i'
3925 || conversion == 'o' || conversion == 'x'
3926 || conversion == 'X')
3927 {
3928 memcpy (f, pMd, pMlen);
3929 f += pMlen;
3930 zero_flag &= ~ precision_given;
3931 }
3932 *f++ = conversion;
3933 *f = '\0';
3934 }
3935
3936 prec = -1;
3937 if (precision_given)
3938 prec = min (precision, USEFUL_PRECISION_MAX);
3939
3940 /* Use sprintf to format this number into sprintf_buf. Omit
3941 padding and excess precision, though, because sprintf limits
3942 output length to INT_MAX.
3943
3944 There are four types of conversion: double, unsigned
3945 char (passed as int), wide signed int, and wide
3946 unsigned int. Treat them separately because the
3947 sprintf ABI is sensitive to which type is passed. Be
3948 careful about integer overflow, NaNs, infinities, and
3949 conversions; for example, the min and max macros are
3950 not suitable here. */
3951 if (conversion == 'e' || conversion == 'f' || conversion == 'g')
3952 {
3953 double x = (INTEGERP (args[n])
3954 ? XINT (args[n])
3955 : XFLOAT_DATA (args[n]));
3956 sprintf_bytes = sprintf (sprintf_buf, convspec, prec, x);
3957 }
3958 else if (conversion == 'c')
3959 {
3960 /* Don't use sprintf here, as it might mishandle prec. */
3961 sprintf_buf[0] = XINT (args[n]);
3962 sprintf_bytes = prec != 0;
3963 }
3964 else if (conversion == 'd')
3965 {
3966 /* For float, maybe we should use "%1.0f"
3967 instead so it also works for values outside
3968 the integer range. */
3969 printmax_t x;
3970 if (INTEGERP (args[n]))
3971 x = XINT (args[n]);
3972 else
3973 {
3974 double d = XFLOAT_DATA (args[n]);
3975 if (d < 0)
3976 {
3977 x = TYPE_MINIMUM (printmax_t);
3978 if (x < d)
3979 x = d;
3980 }
3981 else
3982 {
3983 x = TYPE_MAXIMUM (printmax_t);
3984 if (d < x)
3985 x = d;
3986 }
3987 }
3988 sprintf_bytes = sprintf (sprintf_buf, convspec, prec, x);
3989 }
3990 else
3991 {
3992 /* Don't sign-extend for octal or hex printing. */
3993 uprintmax_t x;
3994 if (INTEGERP (args[n]))
3995 x = XUINT (args[n]);
3996 else
3997 {
3998 double d = XFLOAT_DATA (args[n]);
3999 if (d < 0)
4000 x = 0;
4001 else
4002 {
4003 x = TYPE_MAXIMUM (uprintmax_t);
4004 if (d < x)
4005 x = d;
4006 }
4007 }
4008 sprintf_bytes = sprintf (sprintf_buf, convspec, prec, x);
4009 }
4010
4011 /* Now the length of the formatted item is known, except it omits
4012 padding and excess precision. Deal with excess precision
4013 first. This happens only when the format specifies
4014 ridiculously large precision. */
4015 excess_precision = precision - prec;
4016 if (excess_precision)
4017 {
4018 if (conversion == 'e' || conversion == 'f'
4019 || conversion == 'g')
4020 {
4021 if ((conversion == 'g' && ! sharp_flag)
4022 || ! ('0' <= sprintf_buf[sprintf_bytes - 1]
4023 && sprintf_buf[sprintf_bytes - 1] <= '9'))
4024 excess_precision = 0;
4025 else
4026 {
4027 if (conversion == 'g')
4028 {
4029 char *dot = strchr (sprintf_buf, '.');
4030 if (!dot)
4031 excess_precision = 0;
4032 }
4033 }
4034 trailing_zeros = excess_precision;
4035 }
4036 else
4037 leading_zeros = excess_precision;
4038 }
4039
4040 /* Compute the total bytes needed for this item, including
4041 excess precision and padding. */
4042 numwidth = sprintf_bytes + excess_precision;
4043 padding = numwidth < field_width ? field_width - numwidth : 0;
4044 if (max_bufsize - sprintf_bytes <= excess_precision
4045 || max_bufsize - padding <= numwidth)
4046 string_overflow ();
4047 convbytes = numwidth + padding;
4048
4049 if (convbytes <= buf + bufsize - p)
4050 {
4051 /* Copy the formatted item from sprintf_buf into buf,
4052 inserting padding and excess-precision zeros. */
4053
4054 char *src = sprintf_buf;
4055 char src0 = src[0];
4056 int exponent_bytes = 0;
4057 int signedp = src0 == '-' || src0 == '+' || src0 == ' ';
4058 int significand_bytes;
4059 if (zero_flag
4060 && ((src[signedp] >= '0' && src[signedp] <= '9')
4061 || (src[signedp] >= 'a' && src[signedp] <= 'f')
4062 || (src[signedp] >= 'A' && src[signedp] <= 'F')))
4063 {
4064 leading_zeros += padding;
4065 padding = 0;
4066 }
4067
4068 if (excess_precision
4069 && (conversion == 'e' || conversion == 'g'))
4070 {
4071 char *e = strchr (src, 'e');
4072 if (e)
4073 exponent_bytes = src + sprintf_bytes - e;
4074 }
4075
4076 if (! minus_flag)
4077 {
4078 memset (p, ' ', padding);
4079 p += padding;
4080 nchars += padding;
4081 }
4082
4083 *p = src0;
4084 src += signedp;
4085 p += signedp;
4086 memset (p, '0', leading_zeros);
4087 p += leading_zeros;
4088 significand_bytes = sprintf_bytes - signedp - exponent_bytes;
4089 memcpy (p, src, significand_bytes);
4090 p += significand_bytes;
4091 src += significand_bytes;
4092 memset (p, '0', trailing_zeros);
4093 p += trailing_zeros;
4094 memcpy (p, src, exponent_bytes);
4095 p += exponent_bytes;
4096
4097 info[n].start = nchars;
4098 nchars += leading_zeros + sprintf_bytes + trailing_zeros;
4099 info[n].end = nchars;
4100
4101 if (minus_flag)
4102 {
4103 memset (p, ' ', padding);
4104 p += padding;
4105 nchars += padding;
4106 }
4107
4108 continue;
4109 }
4110 }
4111 }
4112 else
4113 copy_char:
4114 {
4115 /* Copy a single character from format to buf. */
4116
4117 char *src = format;
4118 unsigned char str[MAX_MULTIBYTE_LENGTH];
4119
4120 if (multibyte_format)
4121 {
4122 /* Copy a whole multibyte character. */
4123 if (p > buf
4124 && !ASCII_BYTE_P (*((unsigned char *) p - 1))
4125 && !CHAR_HEAD_P (*format))
4126 maybe_combine_byte = 1;
4127
4128 do
4129 format++;
4130 while (! CHAR_HEAD_P (*format));
4131
4132 convbytes = format - format0;
4133 memset (&discarded[format0 + 1 - format_start], 2, convbytes - 1);
4134 }
4135 else
4136 {
4137 unsigned char uc = *format++;
4138 if (! multibyte || ASCII_BYTE_P (uc))
4139 convbytes = 1;
4140 else
4141 {
4142 int c = BYTE8_TO_CHAR (uc);
4143 convbytes = CHAR_STRING (c, str);
4144 src = (char *) str;
4145 }
4146 }
4147
4148 if (convbytes <= buf + bufsize - p)
4149 {
4150 memcpy (p, src, convbytes);
4151 p += convbytes;
4152 nchars++;
4153 continue;
4154 }
4155 }
4156
4157 /* There wasn't enough room to store this conversion or single
4158 character. CONVBYTES says how much room is needed. Allocate
4159 enough room (and then some) and do it again. */
4160 {
4161 EMACS_INT used = p - buf;
4162
4163 if (max_bufsize - used < convbytes)
4164 string_overflow ();
4165 bufsize = used + convbytes;
4166 bufsize = bufsize < max_bufsize / 2 ? bufsize * 2 : max_bufsize;
4167
4168 if (buf == initial_buffer)
4169 {
4170 buf = xmalloc (bufsize);
4171 sa_must_free = 1;
4172 buf_save_value = make_save_value (buf, 0);
4173 record_unwind_protect (safe_alloca_unwind, buf_save_value);
4174 memcpy (buf, initial_buffer, used);
4175 }
4176 else
4177 XSAVE_VALUE (buf_save_value)->pointer = buf = xrealloc (buf, bufsize);
4178
4179 p = buf + used;
4180 }
4181
4182 format = format0;
4183 n = n0;
4184 }
4185
4186 if (bufsize < p - buf)
4187 abort ();
4188
4189 if (maybe_combine_byte)
4190 nchars = multibyte_chars_in_text ((unsigned char *) buf, p - buf);
4191 val = make_specified_string (buf, nchars, p - buf, multibyte);
4192
4193 /* If we allocated BUF with malloc, free it too. */
4194 SAFE_FREE ();
4195
4196 /* If the format string has text properties, or any of the string
4197 arguments has text properties, set up text properties of the
4198 result string. */
4199
4200 if (STRING_INTERVALS (args[0]) || arg_intervals)
4201 {
4202 Lisp_Object len, new_len, props;
4203 struct gcpro gcpro1;
4204
4205 /* Add text properties from the format string. */
4206 len = make_number (SCHARS (args[0]));
4207 props = text_property_list (args[0], make_number (0), len, Qnil);
4208 GCPRO1 (props);
4209
4210 if (CONSP (props))
4211 {
4212 EMACS_INT bytepos = 0, position = 0, translated = 0;
4213 EMACS_INT argn = 1;
4214 Lisp_Object list;
4215
4216 /* Adjust the bounds of each text property
4217 to the proper start and end in the output string. */
4218
4219 /* Put the positions in PROPS in increasing order, so that
4220 we can do (effectively) one scan through the position
4221 space of the format string. */
4222 props = Fnreverse (props);
4223
4224 /* BYTEPOS is the byte position in the format string,
4225 POSITION is the untranslated char position in it,
4226 TRANSLATED is the translated char position in BUF,
4227 and ARGN is the number of the next arg we will come to. */
4228 for (list = props; CONSP (list); list = XCDR (list))
4229 {
4230 Lisp_Object item;
4231 EMACS_INT pos;
4232
4233 item = XCAR (list);
4234
4235 /* First adjust the property start position. */
4236 pos = XINT (XCAR (item));
4237
4238 /* Advance BYTEPOS, POSITION, TRANSLATED and ARGN
4239 up to this position. */
4240 for (; position < pos; bytepos++)
4241 {
4242 if (! discarded[bytepos])
4243 position++, translated++;
4244 else if (discarded[bytepos] == 1)
4245 {
4246 position++;
4247 if (translated == info[argn].start)
4248 {
4249 translated += info[argn].end - info[argn].start;
4250 argn++;
4251 }
4252 }
4253 }
4254
4255 XSETCAR (item, make_number (translated));
4256
4257 /* Likewise adjust the property end position. */
4258 pos = XINT (XCAR (XCDR (item)));
4259
4260 for (; position < pos; bytepos++)
4261 {
4262 if (! discarded[bytepos])
4263 position++, translated++;
4264 else if (discarded[bytepos] == 1)
4265 {
4266 position++;
4267 if (translated == info[argn].start)
4268 {
4269 translated += info[argn].end - info[argn].start;
4270 argn++;
4271 }
4272 }
4273 }
4274
4275 XSETCAR (XCDR (item), make_number (translated));
4276 }
4277
4278 add_text_properties_from_list (val, props, make_number (0));
4279 }
4280
4281 /* Add text properties from arguments. */
4282 if (arg_intervals)
4283 for (n = 1; n < nargs; ++n)
4284 if (info[n].intervals)
4285 {
4286 len = make_number (SCHARS (args[n]));
4287 new_len = make_number (info[n].end - info[n].start);
4288 props = text_property_list (args[n], make_number (0), len, Qnil);
4289 props = extend_property_ranges (props, new_len);
4290 /* If successive arguments have properties, be sure that
4291 the value of `composition' property be the copy. */
4292 if (n > 1 && info[n - 1].end)
4293 make_composition_value_copy (props);
4294 add_text_properties_from_list (val, props,
4295 make_number (info[n].start));
4296 }
4297
4298 UNGCPRO;
4299 }
4300
4301 return val;
4302 }
4303
4304 Lisp_Object
4305 format2 (const char *string1, Lisp_Object arg0, Lisp_Object arg1)
4306 {
4307 Lisp_Object args[3];
4308 args[0] = build_string (string1);
4309 args[1] = arg0;
4310 args[2] = arg1;
4311 return Fformat (3, args);
4312 }
4313 \f
4314 DEFUN ("char-equal", Fchar_equal, Schar_equal, 2, 2, 0,
4315 doc: /* Return t if two characters match, optionally ignoring case.
4316 Both arguments must be characters (i.e. integers).
4317 Case is ignored if `case-fold-search' is non-nil in the current buffer. */)
4318 (register Lisp_Object c1, Lisp_Object c2)
4319 {
4320 int i1, i2;
4321 /* Check they're chars, not just integers, otherwise we could get array
4322 bounds violations in downcase. */
4323 CHECK_CHARACTER (c1);
4324 CHECK_CHARACTER (c2);
4325
4326 if (XINT (c1) == XINT (c2))
4327 return Qt;
4328 if (NILP (BVAR (current_buffer, case_fold_search)))
4329 return Qnil;
4330
4331 i1 = XFASTINT (c1);
4332 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
4333 && ! ASCII_CHAR_P (i1))
4334 {
4335 MAKE_CHAR_MULTIBYTE (i1);
4336 }
4337 i2 = XFASTINT (c2);
4338 if (NILP (BVAR (current_buffer, enable_multibyte_characters))
4339 && ! ASCII_CHAR_P (i2))
4340 {
4341 MAKE_CHAR_MULTIBYTE (i2);
4342 }
4343 return (downcase (i1) == downcase (i2) ? Qt : Qnil);
4344 }
4345 \f
4346 /* Transpose the markers in two regions of the current buffer, and
4347 adjust the ones between them if necessary (i.e.: if the regions
4348 differ in size).
4349
4350 START1, END1 are the character positions of the first region.
4351 START1_BYTE, END1_BYTE are the byte positions.
4352 START2, END2 are the character positions of the second region.
4353 START2_BYTE, END2_BYTE are the byte positions.
4354
4355 Traverses the entire marker list of the buffer to do so, adding an
4356 appropriate amount to some, subtracting from some, and leaving the
4357 rest untouched. Most of this is copied from adjust_markers in insdel.c.
4358
4359 It's the caller's job to ensure that START1 <= END1 <= START2 <= END2. */
4360
4361 static void
4362 transpose_markers (EMACS_INT start1, EMACS_INT end1,
4363 EMACS_INT start2, EMACS_INT end2,
4364 EMACS_INT start1_byte, EMACS_INT end1_byte,
4365 EMACS_INT start2_byte, EMACS_INT end2_byte)
4366 {
4367 register EMACS_INT amt1, amt1_byte, amt2, amt2_byte, diff, diff_byte, mpos;
4368 register struct Lisp_Marker *marker;
4369
4370 /* Update point as if it were a marker. */
4371 if (PT < start1)
4372 ;
4373 else if (PT < end1)
4374 TEMP_SET_PT_BOTH (PT + (end2 - end1),
4375 PT_BYTE + (end2_byte - end1_byte));
4376 else if (PT < start2)
4377 TEMP_SET_PT_BOTH (PT + (end2 - start2) - (end1 - start1),
4378 (PT_BYTE + (end2_byte - start2_byte)
4379 - (end1_byte - start1_byte)));
4380 else if (PT < end2)
4381 TEMP_SET_PT_BOTH (PT - (start2 - start1),
4382 PT_BYTE - (start2_byte - start1_byte));
4383
4384 /* We used to adjust the endpoints here to account for the gap, but that
4385 isn't good enough. Even if we assume the caller has tried to move the
4386 gap out of our way, it might still be at start1 exactly, for example;
4387 and that places it `inside' the interval, for our purposes. The amount
4388 of adjustment is nontrivial if there's a `denormalized' marker whose
4389 position is between GPT and GPT + GAP_SIZE, so it's simpler to leave
4390 the dirty work to Fmarker_position, below. */
4391
4392 /* The difference between the region's lengths */
4393 diff = (end2 - start2) - (end1 - start1);
4394 diff_byte = (end2_byte - start2_byte) - (end1_byte - start1_byte);
4395
4396 /* For shifting each marker in a region by the length of the other
4397 region plus the distance between the regions. */
4398 amt1 = (end2 - start2) + (start2 - end1);
4399 amt2 = (end1 - start1) + (start2 - end1);
4400 amt1_byte = (end2_byte - start2_byte) + (start2_byte - end1_byte);
4401 amt2_byte = (end1_byte - start1_byte) + (start2_byte - end1_byte);
4402
4403 for (marker = BUF_MARKERS (current_buffer); marker; marker = marker->next)
4404 {
4405 mpos = marker->bytepos;
4406 if (mpos >= start1_byte && mpos < end2_byte)
4407 {
4408 if (mpos < end1_byte)
4409 mpos += amt1_byte;
4410 else if (mpos < start2_byte)
4411 mpos += diff_byte;
4412 else
4413 mpos -= amt2_byte;
4414 marker->bytepos = mpos;
4415 }
4416 mpos = marker->charpos;
4417 if (mpos >= start1 && mpos < end2)
4418 {
4419 if (mpos < end1)
4420 mpos += amt1;
4421 else if (mpos < start2)
4422 mpos += diff;
4423 else
4424 mpos -= amt2;
4425 }
4426 marker->charpos = mpos;
4427 }
4428 }
4429
4430 DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0,
4431 doc: /* Transpose region STARTR1 to ENDR1 with STARTR2 to ENDR2.
4432 The regions should not be overlapping, because the size of the buffer is
4433 never changed in a transposition.
4434
4435 Optional fifth arg LEAVE-MARKERS, if non-nil, means don't update
4436 any markers that happen to be located in the regions.
4437
4438 Transposing beyond buffer boundaries is an error. */)
4439 (Lisp_Object startr1, Lisp_Object endr1, Lisp_Object startr2, Lisp_Object endr2, Lisp_Object leave_markers)
4440 {
4441 register EMACS_INT start1, end1, start2, end2;
4442 EMACS_INT start1_byte, start2_byte, len1_byte, len2_byte;
4443 EMACS_INT gap, len1, len_mid, len2;
4444 unsigned char *start1_addr, *start2_addr, *temp;
4445
4446 INTERVAL cur_intv, tmp_interval1, tmp_interval_mid, tmp_interval2, tmp_interval3;
4447 Lisp_Object buf;
4448
4449 XSETBUFFER (buf, current_buffer);
4450 cur_intv = BUF_INTERVALS (current_buffer);
4451
4452 validate_region (&startr1, &endr1);
4453 validate_region (&startr2, &endr2);
4454
4455 start1 = XFASTINT (startr1);
4456 end1 = XFASTINT (endr1);
4457 start2 = XFASTINT (startr2);
4458 end2 = XFASTINT (endr2);
4459 gap = GPT;
4460
4461 /* Swap the regions if they're reversed. */
4462 if (start2 < end1)
4463 {
4464 register EMACS_INT glumph = start1;
4465 start1 = start2;
4466 start2 = glumph;
4467 glumph = end1;
4468 end1 = end2;
4469 end2 = glumph;
4470 }
4471
4472 len1 = end1 - start1;
4473 len2 = end2 - start2;
4474
4475 if (start2 < end1)
4476 error ("Transposed regions overlap");
4477 /* Nothing to change for adjacent regions with one being empty */
4478 else if ((start1 == end1 || start2 == end2) && end1 == start2)
4479 return Qnil;
4480
4481 /* The possibilities are:
4482 1. Adjacent (contiguous) regions, or separate but equal regions
4483 (no, really equal, in this case!), or
4484 2. Separate regions of unequal size.
4485
4486 The worst case is usually No. 2. It means that (aside from
4487 potential need for getting the gap out of the way), there also
4488 needs to be a shifting of the text between the two regions. So
4489 if they are spread far apart, we are that much slower... sigh. */
4490
4491 /* It must be pointed out that the really studly thing to do would
4492 be not to move the gap at all, but to leave it in place and work
4493 around it if necessary. This would be extremely efficient,
4494 especially considering that people are likely to do
4495 transpositions near where they are working interactively, which
4496 is exactly where the gap would be found. However, such code
4497 would be much harder to write and to read. So, if you are
4498 reading this comment and are feeling squirrely, by all means have
4499 a go! I just didn't feel like doing it, so I will simply move
4500 the gap the minimum distance to get it out of the way, and then
4501 deal with an unbroken array. */
4502
4503 /* Make sure the gap won't interfere, by moving it out of the text
4504 we will operate on. */
4505 if (start1 < gap && gap < end2)
4506 {
4507 if (gap - start1 < end2 - gap)
4508 move_gap (start1);
4509 else
4510 move_gap (end2);
4511 }
4512
4513 start1_byte = CHAR_TO_BYTE (start1);
4514 start2_byte = CHAR_TO_BYTE (start2);
4515 len1_byte = CHAR_TO_BYTE (end1) - start1_byte;
4516 len2_byte = CHAR_TO_BYTE (end2) - start2_byte;
4517
4518 #ifdef BYTE_COMBINING_DEBUG
4519 if (end1 == start2)
4520 {
4521 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
4522 len2_byte, start1, start1_byte)
4523 || count_combining_before (BYTE_POS_ADDR (start1_byte),
4524 len1_byte, end2, start2_byte + len2_byte)
4525 || count_combining_after (BYTE_POS_ADDR (start1_byte),
4526 len1_byte, end2, start2_byte + len2_byte))
4527 abort ();
4528 }
4529 else
4530 {
4531 if (count_combining_before (BYTE_POS_ADDR (start2_byte),
4532 len2_byte, start1, start1_byte)
4533 || count_combining_before (BYTE_POS_ADDR (start1_byte),
4534 len1_byte, start2, start2_byte)
4535 || count_combining_after (BYTE_POS_ADDR (start2_byte),
4536 len2_byte, end1, start1_byte + len1_byte)
4537 || count_combining_after (BYTE_POS_ADDR (start1_byte),
4538 len1_byte, end2, start2_byte + len2_byte))
4539 abort ();
4540 }
4541 #endif
4542
4543 /* Hmmm... how about checking to see if the gap is large
4544 enough to use as the temporary storage? That would avoid an
4545 allocation... interesting. Later, don't fool with it now. */
4546
4547 /* Working without memmove, for portability (sigh), so must be
4548 careful of overlapping subsections of the array... */
4549
4550 if (end1 == start2) /* adjacent regions */
4551 {
4552 modify_region (current_buffer, start1, end2, 0);
4553 record_change (start1, len1 + len2);
4554
4555 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4556 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4557 /* Don't use Fset_text_properties: that can cause GC, which can
4558 clobber objects stored in the tmp_intervals. */
4559 tmp_interval3 = validate_interval_range (buf, &startr1, &endr2, 0);
4560 if (!NULL_INTERVAL_P (tmp_interval3))
4561 set_text_properties_1 (startr1, endr2, Qnil, buf, tmp_interval3);
4562
4563 /* First region smaller than second. */
4564 if (len1_byte < len2_byte)
4565 {
4566 USE_SAFE_ALLOCA;
4567
4568 SAFE_ALLOCA (temp, unsigned char *, len2_byte);
4569
4570 /* Don't precompute these addresses. We have to compute them
4571 at the last minute, because the relocating allocator might
4572 have moved the buffer around during the xmalloc. */
4573 start1_addr = BYTE_POS_ADDR (start1_byte);
4574 start2_addr = BYTE_POS_ADDR (start2_byte);
4575
4576 memcpy (temp, start2_addr, len2_byte);
4577 memcpy (start1_addr + len2_byte, start1_addr, len1_byte);
4578 memcpy (start1_addr, temp, len2_byte);
4579 SAFE_FREE ();
4580 }
4581 else
4582 /* First region not smaller than second. */
4583 {
4584 USE_SAFE_ALLOCA;
4585
4586 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4587 start1_addr = BYTE_POS_ADDR (start1_byte);
4588 start2_addr = BYTE_POS_ADDR (start2_byte);
4589 memcpy (temp, start1_addr, len1_byte);
4590 memcpy (start1_addr, start2_addr, len2_byte);
4591 memcpy (start1_addr + len2_byte, temp, len1_byte);
4592 SAFE_FREE ();
4593 }
4594 graft_intervals_into_buffer (tmp_interval1, start1 + len2,
4595 len1, current_buffer, 0);
4596 graft_intervals_into_buffer (tmp_interval2, start1,
4597 len2, current_buffer, 0);
4598 update_compositions (start1, start1 + len2, CHECK_BORDER);
4599 update_compositions (start1 + len2, end2, CHECK_TAIL);
4600 }
4601 /* Non-adjacent regions, because end1 != start2, bleagh... */
4602 else
4603 {
4604 len_mid = start2_byte - (start1_byte + len1_byte);
4605
4606 if (len1_byte == len2_byte)
4607 /* Regions are same size, though, how nice. */
4608 {
4609 USE_SAFE_ALLOCA;
4610
4611 modify_region (current_buffer, start1, end1, 0);
4612 modify_region (current_buffer, start2, end2, 0);
4613 record_change (start1, len1);
4614 record_change (start2, len2);
4615 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4616 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4617
4618 tmp_interval3 = validate_interval_range (buf, &startr1, &endr1, 0);
4619 if (!NULL_INTERVAL_P (tmp_interval3))
4620 set_text_properties_1 (startr1, endr1, Qnil, buf, tmp_interval3);
4621
4622 tmp_interval3 = validate_interval_range (buf, &startr2, &endr2, 0);
4623 if (!NULL_INTERVAL_P (tmp_interval3))
4624 set_text_properties_1 (startr2, endr2, Qnil, buf, tmp_interval3);
4625
4626 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4627 start1_addr = BYTE_POS_ADDR (start1_byte);
4628 start2_addr = BYTE_POS_ADDR (start2_byte);
4629 memcpy (temp, start1_addr, len1_byte);
4630 memcpy (start1_addr, start2_addr, len2_byte);
4631 memcpy (start2_addr, temp, len1_byte);
4632 SAFE_FREE ();
4633
4634 graft_intervals_into_buffer (tmp_interval1, start2,
4635 len1, current_buffer, 0);
4636 graft_intervals_into_buffer (tmp_interval2, start1,
4637 len2, current_buffer, 0);
4638 }
4639
4640 else if (len1_byte < len2_byte) /* Second region larger than first */
4641 /* Non-adjacent & unequal size, area between must also be shifted. */
4642 {
4643 USE_SAFE_ALLOCA;
4644
4645 modify_region (current_buffer, start1, end2, 0);
4646 record_change (start1, (end2 - start1));
4647 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4648 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
4649 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4650
4651 tmp_interval3 = validate_interval_range (buf, &startr1, &endr2, 0);
4652 if (!NULL_INTERVAL_P (tmp_interval3))
4653 set_text_properties_1 (startr1, endr2, Qnil, buf, tmp_interval3);
4654
4655 /* holds region 2 */
4656 SAFE_ALLOCA (temp, unsigned char *, len2_byte);
4657 start1_addr = BYTE_POS_ADDR (start1_byte);
4658 start2_addr = BYTE_POS_ADDR (start2_byte);
4659 memcpy (temp, start2_addr, len2_byte);
4660 memcpy (start1_addr + len_mid + len2_byte, start1_addr, len1_byte);
4661 memmove (start1_addr + len2_byte, start1_addr + len1_byte, len_mid);
4662 memcpy (start1_addr, temp, len2_byte);
4663 SAFE_FREE ();
4664
4665 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4666 len1, current_buffer, 0);
4667 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4668 len_mid, current_buffer, 0);
4669 graft_intervals_into_buffer (tmp_interval2, start1,
4670 len2, current_buffer, 0);
4671 }
4672 else
4673 /* Second region smaller than first. */
4674 {
4675 USE_SAFE_ALLOCA;
4676
4677 record_change (start1, (end2 - start1));
4678 modify_region (current_buffer, start1, end2, 0);
4679
4680 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
4681 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
4682 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
4683
4684 tmp_interval3 = validate_interval_range (buf, &startr1, &endr2, 0);
4685 if (!NULL_INTERVAL_P (tmp_interval3))
4686 set_text_properties_1 (startr1, endr2, Qnil, buf, tmp_interval3);
4687
4688 /* holds region 1 */
4689 SAFE_ALLOCA (temp, unsigned char *, len1_byte);
4690 start1_addr = BYTE_POS_ADDR (start1_byte);
4691 start2_addr = BYTE_POS_ADDR (start2_byte);
4692 memcpy (temp, start1_addr, len1_byte);
4693 memcpy (start1_addr, start2_addr, len2_byte);
4694 memcpy (start1_addr + len2_byte, start1_addr + len1_byte, len_mid);
4695 memcpy (start1_addr + len2_byte + len_mid, temp, len1_byte);
4696 SAFE_FREE ();
4697
4698 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
4699 len1, current_buffer, 0);
4700 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
4701 len_mid, current_buffer, 0);
4702 graft_intervals_into_buffer (tmp_interval2, start1,
4703 len2, current_buffer, 0);
4704 }
4705
4706 update_compositions (start1, start1 + len2, CHECK_BORDER);
4707 update_compositions (end2 - len1, end2, CHECK_BORDER);
4708 }
4709
4710 /* When doing multiple transpositions, it might be nice
4711 to optimize this. Perhaps the markers in any one buffer
4712 should be organized in some sorted data tree. */
4713 if (NILP (leave_markers))
4714 {
4715 transpose_markers (start1, end1, start2, end2,
4716 start1_byte, start1_byte + len1_byte,
4717 start2_byte, start2_byte + len2_byte);
4718 fix_start_end_in_overlays (start1, end2);
4719 }
4720
4721 signal_after_change (start1, end2 - start1, end2 - start1);
4722 return Qnil;
4723 }
4724
4725 \f
4726 void
4727 syms_of_editfns (void)
4728 {
4729 environbuf = 0;
4730 initial_tz = 0;
4731
4732 DEFSYM (Qbuffer_access_fontify_functions, "buffer-access-fontify-functions");
4733
4734 DEFVAR_LISP ("inhibit-field-text-motion", Vinhibit_field_text_motion,
4735 doc: /* Non-nil means text motion commands don't notice fields. */);
4736 Vinhibit_field_text_motion = Qnil;
4737
4738 DEFVAR_LISP ("buffer-access-fontify-functions",
4739 Vbuffer_access_fontify_functions,
4740 doc: /* List of functions called by `buffer-substring' to fontify if necessary.
4741 Each function is called with two arguments which specify the range
4742 of the buffer being accessed. */);
4743 Vbuffer_access_fontify_functions = Qnil;
4744
4745 {
4746 Lisp_Object obuf;
4747 obuf = Fcurrent_buffer ();
4748 /* Do this here, because init_buffer_once is too early--it won't work. */
4749 Fset_buffer (Vprin1_to_string_buffer);
4750 /* Make sure buffer-access-fontify-functions is nil in this buffer. */
4751 Fset (Fmake_local_variable (intern_c_string ("buffer-access-fontify-functions")),
4752 Qnil);
4753 Fset_buffer (obuf);
4754 }
4755
4756 DEFVAR_LISP ("buffer-access-fontified-property",
4757 Vbuffer_access_fontified_property,
4758 doc: /* Property which (if non-nil) indicates text has been fontified.
4759 `buffer-substring' need not call the `buffer-access-fontify-functions'
4760 functions if all the text being accessed has this property. */);
4761 Vbuffer_access_fontified_property = Qnil;
4762
4763 DEFVAR_LISP ("system-name", Vsystem_name,
4764 doc: /* The host name of the machine Emacs is running on. */);
4765
4766 DEFVAR_LISP ("user-full-name", Vuser_full_name,
4767 doc: /* The full name of the user logged in. */);
4768
4769 DEFVAR_LISP ("user-login-name", Vuser_login_name,
4770 doc: /* The user's name, taken from environment variables if possible. */);
4771
4772 DEFVAR_LISP ("user-real-login-name", Vuser_real_login_name,
4773 doc: /* The user's name, based upon the real uid only. */);
4774
4775 DEFVAR_LISP ("operating-system-release", Voperating_system_release,
4776 doc: /* The release of the operating system Emacs is running on. */);
4777
4778 defsubr (&Spropertize);
4779 defsubr (&Schar_equal);
4780 defsubr (&Sgoto_char);
4781 defsubr (&Sstring_to_char);
4782 defsubr (&Schar_to_string);
4783 defsubr (&Sbyte_to_string);
4784 defsubr (&Sbuffer_substring);
4785 defsubr (&Sbuffer_substring_no_properties);
4786 defsubr (&Sbuffer_string);
4787
4788 defsubr (&Spoint_marker);
4789 defsubr (&Smark_marker);
4790 defsubr (&Spoint);
4791 defsubr (&Sregion_beginning);
4792 defsubr (&Sregion_end);
4793
4794 DEFSYM (Qfield, "field");
4795 DEFSYM (Qboundary, "boundary");
4796 defsubr (&Sfield_beginning);
4797 defsubr (&Sfield_end);
4798 defsubr (&Sfield_string);
4799 defsubr (&Sfield_string_no_properties);
4800 defsubr (&Sdelete_field);
4801 defsubr (&Sconstrain_to_field);
4802
4803 defsubr (&Sline_beginning_position);
4804 defsubr (&Sline_end_position);
4805
4806 /* defsubr (&Smark); */
4807 /* defsubr (&Sset_mark); */
4808 defsubr (&Ssave_excursion);
4809 defsubr (&Ssave_current_buffer);
4810
4811 defsubr (&Sbufsize);
4812 defsubr (&Spoint_max);
4813 defsubr (&Spoint_min);
4814 defsubr (&Spoint_min_marker);
4815 defsubr (&Spoint_max_marker);
4816 defsubr (&Sgap_position);
4817 defsubr (&Sgap_size);
4818 defsubr (&Sposition_bytes);
4819 defsubr (&Sbyte_to_position);
4820
4821 defsubr (&Sbobp);
4822 defsubr (&Seobp);
4823 defsubr (&Sbolp);
4824 defsubr (&Seolp);
4825 defsubr (&Sfollowing_char);
4826 defsubr (&Sprevious_char);
4827 defsubr (&Schar_after);
4828 defsubr (&Schar_before);
4829 defsubr (&Sinsert);
4830 defsubr (&Sinsert_before_markers);
4831 defsubr (&Sinsert_and_inherit);
4832 defsubr (&Sinsert_and_inherit_before_markers);
4833 defsubr (&Sinsert_char);
4834 defsubr (&Sinsert_byte);
4835
4836 defsubr (&Suser_login_name);
4837 defsubr (&Suser_real_login_name);
4838 defsubr (&Suser_uid);
4839 defsubr (&Suser_real_uid);
4840 defsubr (&Suser_full_name);
4841 defsubr (&Semacs_pid);
4842 defsubr (&Scurrent_time);
4843 defsubr (&Sget_internal_run_time);
4844 defsubr (&Sformat_time_string);
4845 defsubr (&Sfloat_time);
4846 defsubr (&Sdecode_time);
4847 defsubr (&Sencode_time);
4848 defsubr (&Scurrent_time_string);
4849 defsubr (&Scurrent_time_zone);
4850 defsubr (&Sset_time_zone_rule);
4851 defsubr (&Ssystem_name);
4852 defsubr (&Smessage);
4853 defsubr (&Smessage_box);
4854 defsubr (&Smessage_or_box);
4855 defsubr (&Scurrent_message);
4856 defsubr (&Sformat);
4857
4858 defsubr (&Sinsert_buffer_substring);
4859 defsubr (&Scompare_buffer_substrings);
4860 defsubr (&Ssubst_char_in_region);
4861 defsubr (&Stranslate_region_internal);
4862 defsubr (&Sdelete_region);
4863 defsubr (&Sdelete_and_extract_region);
4864 defsubr (&Swiden);
4865 defsubr (&Snarrow_to_region);
4866 defsubr (&Ssave_restriction);
4867 defsubr (&Stranspose_regions);
4868 }