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