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