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