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