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