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