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