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