(elisp.dvi): Don't depend on texindex or on elisp.tps.
[bpt/emacs.git] / src / editfns.c
CommitLineData
35692fe0 1/* Lisp functions pertaining to editing.
31c8f881 2 Copyright (C) 1985,86,87,89,93,94,95,96,97,98 Free Software Foundation, Inc.
35692fe0
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
7c938215 8the Free Software Foundation; either version 2, or (at your option)
35692fe0
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
5a7670bf
RS
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
35692fe0
JB
20
21
738429d1
JB
22#include <sys/types.h>
23
18160b98 24#include <config.h>
bfb61299
JB
25
26#ifdef VMS
956ace37 27#include "vms-pwd.h"
bfb61299 28#else
35692fe0 29#include <pwd.h>
bfb61299
JB
30#endif
31
dfcf069d
AS
32#ifdef STDC_HEADERS
33#include <stdlib.h>
34#endif
35
36#ifdef HAVE_UNISTD_H
37#include <unistd.h>
38#endif
39
35692fe0 40#include "lisp.h"
74d6d8c5 41#include "intervals.h"
35692fe0 42#include "buffer.h"
fb8106e8 43#include "charset.h"
35692fe0
JB
44#include "window.h"
45
956ace37 46#include "systime.h"
35692fe0
JB
47
48#define min(a, b) ((a) < (b) ? (a) : (b))
49#define max(a, b) ((a) > (b) ? (a) : (b))
50
a03eaf1c
RS
51#ifndef NULL
52#define NULL 0
53#endif
54
c59b5089
PE
55extern char **environ;
56extern Lisp_Object make_time ();
b1b0ee5a 57extern void insert_from_buffer ();
94751666 58static int tm_diff ();
260e2e2a 59static void update_buffer_properties ();
b771d0da 60size_t emacs_strftime ();
a92ae0ce 61void set_time_zone_rule ();
260e2e2a
KH
62
63Lisp_Object Vbuffer_access_fontify_functions;
64Lisp_Object Qbuffer_access_fontify_functions;
65Lisp_Object Vbuffer_access_fontified_property;
b1b0ee5a 66
e3ed8469
KH
67Lisp_Object Fuser_full_name ();
68
35692fe0
JB
69/* Some static data, and a function to initialize it for each run */
70
71Lisp_Object Vsystem_name;
35b34f72
KH
72Lisp_Object Vuser_real_login_name; /* login name of current user ID */
73Lisp_Object Vuser_full_name; /* full name of current user */
74Lisp_Object Vuser_login_name; /* user name from LOGNAME or USER */
35692fe0
JB
75
76void
77init_editfns ()
78{
52b14ac0 79 char *user_name;
35692fe0
JB
80 register unsigned char *p, *q, *r;
81 struct passwd *pw; /* password entry for the current user */
35692fe0
JB
82 Lisp_Object tem;
83
84 /* Set up system_name even when dumping. */
ac988277 85 init_system_name ();
35692fe0
JB
86
87#ifndef CANNOT_DUMP
88 /* Don't bother with this on initial start when just dumping out */
89 if (!initialized)
90 return;
91#endif /* not CANNOT_DUMP */
92
93 pw = (struct passwd *) getpwuid (getuid ());
87485d6f
MW
94#ifdef MSDOS
95 /* We let the real user name default to "root" because that's quite
96 accurate on MSDOG and because it lets Emacs find the init file.
97 (The DVX libraries override the Djgpp libraries here.) */
35b34f72 98 Vuser_real_login_name = build_string (pw ? pw->pw_name : "root");
87485d6f 99#else
35b34f72 100 Vuser_real_login_name = build_string (pw ? pw->pw_name : "unknown");
87485d6f 101#endif
35692fe0 102
52b14ac0
JB
103 /* Get the effective user name, by consulting environment variables,
104 or the effective uid if those are unset. */
2c9ae24e 105 user_name = (char *) getenv ("LOGNAME");
35692fe0 106 if (!user_name)
4691c06d
RS
107#ifdef WINDOWSNT
108 user_name = (char *) getenv ("USERNAME"); /* it's USERNAME on NT */
109#else /* WINDOWSNT */
2c9ae24e 110 user_name = (char *) getenv ("USER");
4691c06d 111#endif /* WINDOWSNT */
52b14ac0
JB
112 if (!user_name)
113 {
114 pw = (struct passwd *) getpwuid (geteuid ());
115 user_name = (char *) (pw ? pw->pw_name : "unknown");
116 }
35b34f72 117 Vuser_login_name = build_string (user_name);
35692fe0 118
52b14ac0
JB
119 /* If the user name claimed in the environment vars differs from
120 the real uid, use the claimed name to find the full name. */
35b34f72 121 tem = Fstring_equal (Vuser_login_name, Vuser_real_login_name);
3415b0e9
RS
122 Vuser_full_name = Fuser_full_name (NILP (tem)? make_number (geteuid())
123 : Vuser_login_name);
35692fe0 124
8f1e2d16 125 p = (unsigned char *) getenv ("NAME");
9d36d071
RS
126 if (p)
127 Vuser_full_name = build_string (p);
3347526c
RS
128 else if (NILP (Vuser_full_name))
129 Vuser_full_name = build_string ("unknown");
35692fe0
JB
130}
131\f
132DEFUN ("char-to-string", Fchar_to_string, Schar_to_string, 1, 1, 0,
5f75e666 133 "Convert arg CHAR to a string containing that character.")
2591ec64
EN
134 (character)
135 Lisp_Object character;
35692fe0 136{
fb8106e8 137 int len;
d11ba98c 138 unsigned char workbuf[4], *str;
fb8106e8 139
2591ec64 140 CHECK_NUMBER (character, 0);
35692fe0 141
fb8106e8 142 len = CHAR_STRING (XFASTINT (character), workbuf, str);
5f75e666 143 return make_string_from_bytes (str, 1, len);
35692fe0
JB
144}
145
146DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0,
fb8106e8
KH
147 "Convert arg STRING to a character, the first character of that string.\n\
148A multibyte character is handled correctly.")
2591ec64
EN
149 (string)
150 register Lisp_Object string;
35692fe0
JB
151{
152 register Lisp_Object val;
153 register struct Lisp_String *p;
2591ec64 154 CHECK_STRING (string, 0);
2591ec64 155 p = XSTRING (string);
35692fe0 156 if (p->size)
dc3620af 157 XSETFASTINT (val, STRING_CHAR (p->data, STRING_BYTES (p)));
35692fe0 158 else
55561c63 159 XSETFASTINT (val, 0);
35692fe0
JB
160 return val;
161}
162\f
163static Lisp_Object
ec1c14f6
RS
164buildmark (charpos, bytepos)
165 int charpos, bytepos;
35692fe0
JB
166{
167 register Lisp_Object mark;
168 mark = Fmake_marker ();
ec1c14f6 169 set_marker_both (mark, Qnil, charpos, bytepos);
35692fe0
JB
170 return mark;
171}
172
173DEFUN ("point", Fpoint, Spoint, 0, 0, 0,
174 "Return value of point, as an integer.\n\
175Beginning of buffer is position (point-min)")
176 ()
177{
178 Lisp_Object temp;
6ec8bbd2 179 XSETFASTINT (temp, PT);
35692fe0
JB
180 return temp;
181}
182
183DEFUN ("point-marker", Fpoint_marker, Spoint_marker, 0, 0, 0,
184 "Return value of point, as a marker object.")
185 ()
186{
ec1c14f6 187 return buildmark (PT, PT_BYTE);
35692fe0
JB
188}
189
190int
191clip_to_bounds (lower, num, upper)
192 int lower, num, upper;
193{
194 if (num < lower)
195 return lower;
196 else if (num > upper)
197 return upper;
198 else
199 return num;
200}
201
202DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ",
203 "Set point to POSITION, a number or marker.\n\
fb8106e8
KH
204Beginning of buffer is position (point-min), end is (point-max).\n\
205If the position is in the middle of a multibyte form,\n\
206the actual point is set at the head of the multibyte form\n\
207except in the case that `enable-multibyte-characters' is nil.")
2591ec64
EN
208 (position)
209 register Lisp_Object position;
35692fe0 210{
fb8106e8
KH
211 int pos;
212 unsigned char *p;
213
72ef82ec
RS
214 if (MARKERP (position)
215 && current_buffer == XMARKER (position)->buffer)
ec1c14f6
RS
216 {
217 pos = marker_position (position);
218 if (pos < BEGV)
219 SET_PT_BOTH (BEGV, BEGV_BYTE);
220 else if (pos > ZV)
221 SET_PT_BOTH (ZV, ZV_BYTE);
222 else
223 SET_PT_BOTH (pos, marker_byte_position (position));
224
225 return position;
226 }
227
2591ec64 228 CHECK_NUMBER_COERCE_MARKER (position, 0);
35692fe0 229
fb8106e8 230 pos = clip_to_bounds (BEGV, XINT (position), ZV);
fb8106e8 231 SET_PT (pos);
2591ec64 232 return position;
35692fe0
JB
233}
234
235static Lisp_Object
236region_limit (beginningp)
237 int beginningp;
238{
646d9d18 239 extern Lisp_Object Vmark_even_if_inactive; /* Defined in callint.c. */
35692fe0 240 register Lisp_Object m;
c9dd14e1
RM
241 if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive)
242 && NILP (current_buffer->mark_active))
243 Fsignal (Qmark_inactive, Qnil);
35692fe0 244 m = Fmarker_position (current_buffer->mark);
56a98455 245 if (NILP (m)) error ("There is no region now");
6ec8bbd2
KH
246 if ((PT < XFASTINT (m)) == beginningp)
247 return (make_number (PT));
35692fe0
JB
248 else
249 return (m);
250}
251
252DEFUN ("region-beginning", Fregion_beginning, Sregion_beginning, 0, 0, 0,
253 "Return position of beginning of region, as an integer.")
254 ()
255{
256 return (region_limit (1));
257}
258
259DEFUN ("region-end", Fregion_end, Sregion_end, 0, 0, 0,
260 "Return position of end of region, as an integer.")
261 ()
262{
263 return (region_limit (0));
264}
265
35692fe0
JB
266DEFUN ("mark-marker", Fmark_marker, Smark_marker, 0, 0, 0,
267 "Return this buffer's mark, as a marker object.\n\
268Watch out! Moving this marker changes the mark position.\n\
269If you set the marker not to point anywhere, the buffer will have no mark.")
270 ()
271{
272 return current_buffer->mark;
273}
c9ed721d
RS
274\f
275DEFUN ("line-beginning-position", Fline_beginning_position, Sline_beginning_position,
276 0, 1, 0,
277 "Return the character position of the first character on the current line.\n\
278With argument N not nil or 1, move forward N - 1 lines first.\n\
279If scan reaches end of buffer, return that position.\n\
280This function does not move point.")
281 (n)
282 Lisp_Object n;
283{
ec1c14f6 284 register int orig, orig_byte, end;
c9ed721d
RS
285
286 if (NILP (n))
287 XSETFASTINT (n, 1);
288 else
289 CHECK_NUMBER (n, 0);
290
291 orig = PT;
ec1c14f6 292 orig_byte = PT_BYTE;
c9ed721d
RS
293 Fforward_line (make_number (XINT (n) - 1));
294 end = PT;
ec1c14f6 295 SET_PT_BOTH (orig, orig_byte);
35692fe0 296
c9ed721d
RS
297 return make_number (end);
298}
299
300DEFUN ("line-end-position", Fline_end_position, Sline_end_position,
301 0, 1, 0,
302 "Return the character position of the last character on the current line.\n\
303With argument N not nil or 1, move forward N - 1 lines first.\n\
304If scan reaches end of buffer, return that position.\n\
305This function does not move point.")
306 (n)
307 Lisp_Object n;
308{
309 if (NILP (n))
310 XSETFASTINT (n, 1);
311 else
312 CHECK_NUMBER (n, 0);
313
314 return make_number (find_before_next_newline
315 (PT, 0, XINT (n) - (XINT (n) <= 0)));
316}
317\f
35692fe0
JB
318Lisp_Object
319save_excursion_save ()
320{
0e2c9c70
JB
321 register int visible = (XBUFFER (XWINDOW (selected_window)->buffer)
322 == current_buffer);
35692fe0
JB
323
324 return Fcons (Fpoint_marker (),
aea4a109 325 Fcons (Fcopy_marker (current_buffer->mark, Qnil),
9772455e
RS
326 Fcons (visible ? Qt : Qnil,
327 current_buffer->mark_active)));
35692fe0
JB
328}
329
330Lisp_Object
331save_excursion_restore (info)
4ad8681a 332 Lisp_Object info;
35692fe0 333{
4ad8681a
RS
334 Lisp_Object tem, tem1, omark, nmark;
335 struct gcpro gcpro1, gcpro2, gcpro3;
35692fe0
JB
336
337 tem = Fmarker_buffer (Fcar (info));
338 /* If buffer being returned to is now deleted, avoid error */
339 /* Otherwise could get error here while unwinding to top level
340 and crash */
341 /* In that case, Fmarker_buffer returns nil now. */
56a98455 342 if (NILP (tem))
35692fe0 343 return Qnil;
4ad8681a
RS
344
345 omark = nmark = Qnil;
346 GCPRO3 (info, omark, nmark);
347
35692fe0
JB
348 Fset_buffer (tem);
349 tem = Fcar (info);
350 Fgoto_char (tem);
351 unchain_marker (tem);
352 tem = Fcar (Fcdr (info));
03d18690 353 omark = Fmarker_position (current_buffer->mark);
35692fe0 354 Fset_marker (current_buffer->mark, tem, Fcurrent_buffer ());
03d18690 355 nmark = Fmarker_position (tem);
35692fe0
JB
356 unchain_marker (tem);
357 tem = Fcdr (Fcdr (info));
ef580991
RS
358#if 0 /* We used to make the current buffer visible in the selected window
359 if that was true previously. That avoids some anomalies.
360 But it creates others, and it wasn't documented, and it is simpler
361 and cleaner never to alter the window/buffer connections. */
9772455e
RS
362 tem1 = Fcar (tem);
363 if (!NILP (tem1)
0e2c9c70 364 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
35692fe0 365 Fswitch_to_buffer (Fcurrent_buffer (), Qnil);
ef580991 366#endif /* 0 */
9772455e
RS
367
368 tem1 = current_buffer->mark_active;
369 current_buffer->mark_active = Fcdr (tem);
9fed2b18
RS
370 if (!NILP (Vrun_hooks))
371 {
03d18690
RS
372 /* If mark is active now, and either was not active
373 or was at a different place, run the activate hook. */
9fed2b18 374 if (! NILP (current_buffer->mark_active))
03d18690
RS
375 {
376 if (! EQ (omark, nmark))
377 call1 (Vrun_hooks, intern ("activate-mark-hook"));
378 }
379 /* If mark has ceased to be active, run deactivate hook. */
9fed2b18
RS
380 else if (! NILP (tem1))
381 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
382 }
4ad8681a 383 UNGCPRO;
35692fe0
JB
384 return Qnil;
385}
386
387DEFUN ("save-excursion", Fsave_excursion, Ssave_excursion, 0, UNEVALLED, 0,
388 "Save point, mark, and current buffer; execute BODY; restore those things.\n\
389Executes BODY just like `progn'.\n\
390The values of point, mark and the current buffer are restored\n\
9772455e 391even in case of abnormal exit (throw or error).\n\
85cac557
RS
392The state of activation of the mark is also restored.\n\
393\n\
394This construct does not save `deactivate-mark', and therefore\n\
395functions that change the buffer will still cause deactivation\n\
396of the mark at the end of the command. To prevent that, bind\n\
397`deactivate-mark' with `let'.")
35692fe0
JB
398 (args)
399 Lisp_Object args;
400{
401 register Lisp_Object val;
402 int count = specpdl_ptr - specpdl;
403
404 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4bc8c7d2
RS
405
406 val = Fprogn (args);
407 return unbind_to (count, val);
408}
409
410DEFUN ("save-current-buffer", Fsave_current_buffer, Ssave_current_buffer, 0, UNEVALLED, 0,
411 "Save the current buffer; execute BODY; restore the current buffer.\n\
412Executes BODY just like `progn'.")
413 (args)
414 Lisp_Object args;
415{
416 register Lisp_Object val;
417 int count = specpdl_ptr - specpdl;
418
cb5e5f74 419 record_unwind_protect (set_buffer_if_live, Fcurrent_buffer ());
4bc8c7d2 420
35692fe0
JB
421 val = Fprogn (args);
422 return unbind_to (count, val);
423}
424\f
425DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 0, 0,
426 "Return the number of characters in the current buffer.")
427 ()
428{
429 Lisp_Object temp;
55561c63 430 XSETFASTINT (temp, Z - BEG);
35692fe0
JB
431 return temp;
432}
433
434DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0,
435 "Return the minimum permissible value of point in the current buffer.\n\
4c390850 436This is 1, unless narrowing (a buffer restriction) is in effect.")
35692fe0
JB
437 ()
438{
439 Lisp_Object temp;
55561c63 440 XSETFASTINT (temp, BEGV);
35692fe0
JB
441 return temp;
442}
443
444DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0,
445 "Return a marker to the minimum permissible value of point in this buffer.\n\
4c390850 446This is the beginning, unless narrowing (a buffer restriction) is in effect.")
35692fe0
JB
447 ()
448{
ec1c14f6 449 return buildmark (BEGV, BEGV_BYTE);
35692fe0
JB
450}
451
452DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0,
453 "Return the maximum permissible value of point in the current buffer.\n\
4c390850
RS
454This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\
455is in effect, in which case it is less.")
35692fe0
JB
456 ()
457{
458 Lisp_Object temp;
55561c63 459 XSETFASTINT (temp, ZV);
35692fe0
JB
460 return temp;
461}
462
463DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0,
464 "Return a marker to the maximum permissible value of point in this buffer.\n\
4c390850
RS
465This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\
466is in effect, in which case it is less.")
35692fe0
JB
467 ()
468{
ec1c14f6 469 return buildmark (ZV, ZV_BYTE);
35692fe0
JB
470}
471
c86212b9
RS
472DEFUN ("gap-position", Fgap_position, Sgap_position, 0, 0, 0,
473 "Return the position of the gap, in the current buffer.\n\
474See also `gap-size'.")
475 ()
476{
477 Lisp_Object temp;
478 XSETFASTINT (temp, GPT);
479 return temp;
480}
481
482DEFUN ("gap-size", Fgap_size, Sgap_size, 0, 0, 0,
483 "Return the size of the current buffer's gap.\n\
484See also `gap-position'.")
485 ()
486{
487 Lisp_Object temp;
488 XSETFASTINT (temp, GAP_SIZE);
489 return temp;
490}
491
7df74da6
RS
492DEFUN ("position-bytes", Fposition_bytes, Sposition_bytes, 1, 1, 0,
493 "Return the byte position for character position POSITION.")
494 (position)
80e01f8d 495 Lisp_Object position;
7df74da6 496{
fa8a5a15
KH
497 CHECK_NUMBER_COERCE_MARKER (position, 1);
498 return make_number (CHAR_TO_BYTE (XINT (position)));
7df74da6
RS
499}
500\f
850a8179
JB
501DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
502 "Return the character following point, as a number.\n\
fb8106e8
KH
503At the end of the buffer or accessible region, return 0.\n\
504If `enable-multibyte-characters' is nil or point is not\n\
505 at character boundary, multibyte form is ignored,\n\
506 and only one byte following point is returned as a character.")
35692fe0
JB
507 ()
508{
509 Lisp_Object temp;
6ec8bbd2 510 if (PT >= ZV)
55561c63 511 XSETFASTINT (temp, 0);
850a8179 512 else
ec1c14f6 513 XSETFASTINT (temp, FETCH_CHAR (PT_BYTE));
35692fe0
JB
514 return temp;
515}
516
850a8179
JB
517DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
518 "Return the character preceding point, as a number.\n\
fb8106e8
KH
519At the beginning of the buffer or accessible region, return 0.\n\
520If `enable-multibyte-characters' is nil or point is not\n\
521 at character boundary, multi-byte form is ignored,\n\
522 and only one byte preceding point is returned as a character.")
35692fe0
JB
523 ()
524{
525 Lisp_Object temp;
6ec8bbd2 526 if (PT <= BEGV)
55561c63 527 XSETFASTINT (temp, 0);
fb8106e8
KH
528 else if (!NILP (current_buffer->enable_multibyte_characters))
529 {
ec1c14f6 530 int pos = PT_BYTE;
fb8106e8
KH
531 DEC_POS (pos);
532 XSETFASTINT (temp, FETCH_CHAR (pos));
533 }
35692fe0 534 else
ec1c14f6 535 XSETFASTINT (temp, FETCH_BYTE (PT_BYTE - 1));
35692fe0
JB
536 return temp;
537}
538
539DEFUN ("bobp", Fbobp, Sbobp, 0, 0, 0,
ec1c14f6 540 "Return t if point is at the beginning of the buffer.\n\
35692fe0
JB
541If the buffer is narrowed, this means the beginning of the narrowed part.")
542 ()
543{
6ec8bbd2 544 if (PT == BEGV)
35692fe0
JB
545 return Qt;
546 return Qnil;
547}
548
549DEFUN ("eobp", Feobp, Seobp, 0, 0, 0,
ec1c14f6 550 "Return t if point is at the end of the buffer.\n\
35692fe0
JB
551If the buffer is narrowed, this means the end of the narrowed part.")
552 ()
553{
6ec8bbd2 554 if (PT == ZV)
35692fe0
JB
555 return Qt;
556 return Qnil;
557}
558
559DEFUN ("bolp", Fbolp, Sbolp, 0, 0, 0,
ec1c14f6 560 "Return t if point is at the beginning of a line.")
35692fe0
JB
561 ()
562{
ec1c14f6 563 if (PT == BEGV || FETCH_BYTE (PT_BYTE - 1) == '\n')
35692fe0
JB
564 return Qt;
565 return Qnil;
566}
567
568DEFUN ("eolp", Feolp, Seolp, 0, 0, 0,
ec1c14f6 569 "Return t if point is at the end of a line.\n\
35692fe0
JB
570`End of a line' includes point being at the end of the buffer.")
571 ()
572{
ec1c14f6 573 if (PT == ZV || FETCH_BYTE (PT_BYTE) == '\n')
35692fe0
JB
574 return Qt;
575 return Qnil;
576}
577
fa1d3816 578DEFUN ("char-after", Fchar_after, Schar_after, 0, 1, 0,
35692fe0
JB
579 "Return character in current buffer at position POS.\n\
580POS is an integer or a buffer pointer.\n\
fb8106e8
KH
581If POS is out of range, the value is nil.\n\
582If `enable-multibyte-characters' is nil or POS is not at character boundary,\n\
583 multi-byte form is ignored, and only one byte at POS\n\
584 is returned as a character.")
35692fe0
JB
585 (pos)
586 Lisp_Object pos;
587{
ec1c14f6 588 register int pos_byte;
35692fe0 589 register Lisp_Object val;
35692fe0 590
fa1d3816 591 if (NILP (pos))
85cac557
RS
592 pos_byte = PT_BYTE;
593 else if (MARKERP (pos))
594 {
595 pos_byte = marker_byte_position (pos);
596 if (pos_byte < BEGV_BYTE || pos_byte >= ZV_BYTE)
597 return Qnil;
598 }
fa1d3816
RS
599 else
600 {
601 CHECK_NUMBER_COERCE_MARKER (pos, 0);
b98ef0dc 602 if (XINT (pos) < BEGV || XINT (pos) >= ZV)
85cac557 603 return Qnil;
ec1c14f6
RS
604
605 pos_byte = CHAR_TO_BYTE (XINT (pos));
fa1d3816 606 }
35692fe0 607
ec1c14f6 608 return make_number (FETCH_CHAR (pos_byte));
35692fe0 609}
fb8106e8 610
fa1d3816 611DEFUN ("char-before", Fchar_before, Schar_before, 0, 1, 0,
fb8106e8
KH
612 "Return character in current buffer preceding position POS.\n\
613POS is an integer or a buffer pointer.\n\
614If POS is out of range, the value is nil.\n\
615If `enable-multibyte-characters' is nil or POS is not at character boundary,\n\
616multi-byte form is ignored, and only one byte preceding POS\n\
617is returned as a character.")
618 (pos)
619 Lisp_Object pos;
620{
621 register Lisp_Object val;
ec1c14f6 622 register int pos_byte;
fb8106e8 623
fa1d3816 624 if (NILP (pos))
ec1c14f6
RS
625 pos_byte = PT_BYTE;
626 else if (MARKERP (pos))
85cac557
RS
627 {
628 pos_byte = marker_byte_position (pos);
629
630 if (pos_byte <= BEGV_BYTE || pos_byte > ZV_BYTE)
631 return Qnil;
632 }
fa1d3816
RS
633 else
634 {
635 CHECK_NUMBER_COERCE_MARKER (pos, 0);
fb8106e8 636
b98ef0dc 637 if (XINT (pos) <= BEGV || XINT (pos) > ZV)
85cac557
RS
638 return Qnil;
639
ec1c14f6 640 pos_byte = CHAR_TO_BYTE (XINT (pos));
fa1d3816 641 }
fb8106e8
KH
642
643 if (!NILP (current_buffer->enable_multibyte_characters))
644 {
ec1c14f6
RS
645 DEC_POS (pos_byte);
646 XSETFASTINT (val, FETCH_CHAR (pos_byte));
fb8106e8
KH
647 }
648 else
649 {
ec1c14f6
RS
650 pos_byte--;
651 XSETFASTINT (val, FETCH_BYTE (pos_byte));
fb8106e8
KH
652 }
653 return val;
654}
35692fe0 655\f
87485d6f 656DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 1, 0,
35692fe0
JB
657 "Return the name under which the user logged in, as a string.\n\
658This is based on the effective uid, not the real uid.\n\
2c9ae24e 659Also, if the environment variable LOGNAME or USER is set,\n\
87485d6f
MW
660that determines the value of this function.\n\n\
661If optional argument UID is an integer, return the login name of the user\n\
662with that uid, or nil if there is no such user.")
663 (uid)
664 Lisp_Object uid;
35692fe0 665{
87485d6f
MW
666 struct passwd *pw;
667
f8a0e364
RS
668 /* Set up the user name info if we didn't do it before.
669 (That can happen if Emacs is dumpable
670 but you decide to run `temacs -l loadup' and not dump. */
35b34f72 671 if (INTEGERP (Vuser_login_name))
f8a0e364 672 init_editfns ();
87485d6f
MW
673
674 if (NILP (uid))
35b34f72 675 return Vuser_login_name;
87485d6f
MW
676
677 CHECK_NUMBER (uid, 0);
678 pw = (struct passwd *) getpwuid (XINT (uid));
679 return (pw ? build_string (pw->pw_name) : Qnil);
35692fe0
JB
680}
681
682DEFUN ("user-real-login-name", Fuser_real_login_name, Suser_real_login_name,
683 0, 0, 0,
684 "Return the name of the user's real uid, as a string.\n\
9658bdd0 685This ignores the environment variables LOGNAME and USER, so it differs from\n\
b1da234a 686`user-login-name' when running under `su'.")
35692fe0
JB
687 ()
688{
f8a0e364
RS
689 /* Set up the user name info if we didn't do it before.
690 (That can happen if Emacs is dumpable
691 but you decide to run `temacs -l loadup' and not dump. */
35b34f72 692 if (INTEGERP (Vuser_login_name))
f8a0e364 693 init_editfns ();
35b34f72 694 return Vuser_real_login_name;
35692fe0
JB
695}
696
697DEFUN ("user-uid", Fuser_uid, Suser_uid, 0, 0, 0,
698 "Return the effective uid of Emacs, as an integer.")
699 ()
700{
701 return make_number (geteuid ());
702}
703
704DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0,
705 "Return the real uid of Emacs, as an integer.")
706 ()
707{
708 return make_number (getuid ());
709}
710
c9ed721d
RS
711DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 1, 0,
712 "Return the full name of the user logged in, as a string.\n\
713If optional argument UID is an integer, return the full name of the user\n\
ca38bbb2 714with that uid, or \"unknown\" if there is no such user.\n\
3415b0e9
RS
715If UID is a string, return the full name of the user with that login\n\
716name, or \"unknown\" if no such user could be found.")
c9ed721d
RS
717 (uid)
718 Lisp_Object uid;
35692fe0 719{
c9ed721d 720 struct passwd *pw;
b0e92acd 721 register unsigned char *p, *q;
3415b0e9
RS
722 extern char *index ();
723 Lisp_Object full;
c9ed721d
RS
724
725 if (NILP (uid))
3415b0e9
RS
726 return Vuser_full_name;
727 else if (NUMBERP (uid))
728 pw = (struct passwd *) getpwuid (XINT (uid));
729 else if (STRINGP (uid))
730 pw = (struct passwd *) getpwnam (XSTRING (uid)->data);
731 else
732 error ("Invalid UID specification");
c9ed721d 733
3415b0e9 734 if (!pw)
3347526c 735 return Qnil;
3415b0e9
RS
736
737 p = (unsigned char *) USER_FULL_NAME;
738 /* Chop off everything after the first comma. */
739 q = (unsigned char *) index (p, ',');
740 full = make_string (p, q ? q - p : strlen (p));
741
742#ifdef AMPERSAND_FULL_NAME
743 p = XSTRING (full)->data;
744 q = (unsigned char *) index (p, '&');
745 /* Substitute the login name for the &, upcasing the first character. */
746 if (q)
747 {
b0e92acd 748 register unsigned char *r;
3415b0e9
RS
749 Lisp_Object login;
750
751 login = Fuser_login_name (make_number (pw->pw_uid));
752 r = (unsigned char *) alloca (strlen (p) + XSTRING (login)->size + 1);
753 bcopy (p, r, q - p);
754 r[q - p] = 0;
755 strcat (r, XSTRING (login)->data);
756 r[q - p] = UPCASE (r[q - p]);
757 strcat (r, q + 1);
758 full = build_string (r);
759 }
760#endif /* AMPERSAND_FULL_NAME */
761
762 return full;
35692fe0
JB
763}
764
765DEFUN ("system-name", Fsystem_name, Ssystem_name, 0, 0, 0,
766 "Return the name of the machine you are running on, as a string.")
767 ()
768{
769 return Vsystem_name;
770}
771
ac988277
KH
772/* For the benefit of callers who don't want to include lisp.h */
773char *
774get_system_name ()
775{
3d976a9a
RS
776 if (STRINGP (Vsystem_name))
777 return (char *) XSTRING (Vsystem_name)->data;
778 else
779 return "";
ac988277
KH
780}
781
7fd233b3
RS
782DEFUN ("emacs-pid", Femacs_pid, Semacs_pid, 0, 0, 0,
783 "Return the process ID of Emacs, as an integer.")
784 ()
785{
786 return make_number (getpid ());
787}
788
d940e0e4 789DEFUN ("current-time", Fcurrent_time, Scurrent_time, 0, 0, 0,
e983fdb2 790 "Return the current time, as the number of seconds since 1970-01-01 00:00:00.\n\
956ace37
JB
791The time is returned as a list of three integers. The first has the\n\
792most significant 16 bits of the seconds, while the second has the\n\
793least significant 16 bits. The third integer gives the microsecond\n\
794count.\n\
795\n\
796The microsecond count is zero on systems that do not provide\n\
797resolution finer than a second.")
d940e0e4
JB
798 ()
799{
956ace37
JB
800 EMACS_TIME t;
801 Lisp_Object result[3];
802
803 EMACS_GET_TIME (t);
d2fd0445
KH
804 XSETINT (result[0], (EMACS_SECS (t) >> 16) & 0xffff);
805 XSETINT (result[1], (EMACS_SECS (t) >> 0) & 0xffff);
806 XSETINT (result[2], EMACS_USECS (t));
956ace37
JB
807
808 return Flist (3, result);
d940e0e4
JB
809}
810\f
811
e3120ab5
JB
812static int
813lisp_time_argument (specified_time, result)
814 Lisp_Object specified_time;
815 time_t *result;
816{
817 if (NILP (specified_time))
818 return time (result) != -1;
819 else
820 {
821 Lisp_Object high, low;
822 high = Fcar (specified_time);
823 CHECK_NUMBER (high, 0);
824 low = Fcdr (specified_time);
ae683129 825 if (CONSP (low))
e3120ab5
JB
826 low = Fcar (low);
827 CHECK_NUMBER (low, 0);
828 *result = (XINT (high) << 16) + (XINT (low) & 0xffff);
829 return *result >> 16 == XINT (high);
830 }
831}
832
3efcc98a 833/*
b48382a0
RS
834DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string, 1, 3, 0,
835 "Use FORMAT-STRING to format the time TIME, or now if omitted.\n\
836TIME is specified as (HIGH LOW . IGNORED) or (HIGH . LOW), as returned by\n\
837`current-time' or `file-attributes'.\n\
838The third, optional, argument UNIVERSAL, if non-nil, means describe TIME\n\
839as Universal Time; nil means describe TIME in the local time zone.\n\
840The value is a copy of FORMAT-STRING, but with certain constructs replaced\n\
841by text that describes the specified date and time in TIME:\n\
a82d387c 842\n\
b48382a0
RS
843%Y is the year, %y within the century, %C the century.\n\
844%G is the year corresponding to the ISO week, %g within the century.\n\
b771d0da
PE
845%m is the numeric month.\n\
846%b and %h are the locale's abbreviated month name, %B the full name.\n\
b48382a0
RS
847%d is the day of the month, zero-padded, %e is blank-padded.\n\
848%u is the numeric day of week from 1 (Monday) to 7, %w from 0 (Sunday) to 6.\n\
b771d0da 849%a is the locale's abbreviated name of the day of week, %A the full name.\n\
b48382a0
RS
850%U is the week number starting on Sunday, %W starting on Monday,\n\
851 %V according to ISO 8601.\n\
852%j is the day of the year.\n\
853\n\
854%H is the hour on a 24-hour clock, %I is on a 12-hour clock, %k is like %H\n\
855 only blank-padded, %l is like %I blank-padded.\n\
b771d0da 856%p is the locale's equivalent of either AM or PM.\n\
b48382a0
RS
857%M is the minute.\n\
858%S is the second.\n\
859%Z is the time zone name, %z is the numeric form.\n\
860%s is the number of seconds since 1970-01-01 00:00:00 +0000.\n\
861\n\
862%c is the locale's date and time format.\n\
863%x is the locale's \"preferred\" date format.\n\
864%D is like \"%m/%d/%y\".\n\
865\n\
866%R is like \"%H:%M\", %T is like \"%H:%M:%S\", %r is like \"%I:%M:%S %p\".\n\
867%X is the locale's \"preferred\" time format.\n\
868\n\
b771d0da 869Finally, %n is a newline, %t is a tab, %% is a literal %.\n\
b48382a0 870\n\
3efcc98a 871Certain flags and modifiers are available with some format controls.\n\
b48382a0
RS
872The flags are `_' and `-'. For certain characters X, %_X is like %X,\n\
873but padded with blanks; %-X is like %X, but without padding.\n\
874%NX (where N stands for an integer) is like %X,\n\
875but takes up at least N (a number) positions.\n\
876The modifiers are `E' and `O'. For certain characters X,\n\
877%EX is a locale's alternative version of %X;\n\
878%OX is like %X, but uses the locale's number symbols.\n\
879\n\
880For example, to produce full ISO 8601 format, use \"%Y-%m-%dT%T%z\".")
726ed0da 881 (format_string, time, universal)
3efcc98a
RS
882*/
883
884DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string, 1, 3, 0,
885 0 /* See immediately above */)
b48382a0
RS
886 (format_string, time, universal)
887 Lisp_Object format_string, time, universal;
a82d387c
RS
888{
889 time_t value;
890 int size;
891
892 CHECK_STRING (format_string, 1);
893
894 if (! lisp_time_argument (time, &value))
895 error ("Invalid time specification");
896
897 /* This is probably enough. */
dc3620af 898 size = STRING_BYTES (XSTRING (format_string)) * 6 + 50;
a82d387c
RS
899
900 while (1)
901 {
b48382a0
RS
902 char *buf = (char *) alloca (size + 1);
903 int result;
904
bfbcc5ee 905 buf[0] = '\1';
b48382a0
RS
906 result = emacs_strftime (buf, size, XSTRING (format_string)->data,
907 (NILP (universal) ? localtime (&value)
908 : gmtime (&value)));
bfbcc5ee 909 if ((result > 0 && result < size) || (result == 0 && buf[0] == '\0'))
a82d387c 910 return build_string (buf);
b48382a0
RS
911
912 /* If buffer was too small, make it bigger and try again. */
bfbcc5ee 913 result = emacs_strftime (NULL, 0x7fffffff, XSTRING (format_string)->data,
b48382a0
RS
914 (NILP (universal) ? localtime (&value)
915 : gmtime (&value)));
916 size = result + 1;
a82d387c
RS
917 }
918}
919
4691c06d
RS
920DEFUN ("decode-time", Fdecode_time, Sdecode_time, 0, 1, 0,
921 "Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).\n\
922The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED)\n\
923or (HIGH . LOW), as from `current-time' and `file-attributes', or `nil'\n\
924to use the current time. The list has the following nine members:\n\
145b0681
RS
925SEC is an integer between 0 and 60; SEC is 60 for a leap second, which\n\
926only some operating systems support. MINUTE is an integer between 0 and 59.\n\
4691c06d
RS
927HOUR is an integer between 0 and 23. DAY is an integer between 1 and 31.\n\
928MONTH is an integer between 1 and 12. YEAR is an integer indicating the\n\
929four-digit year. DOW is the day of week, an integer between 0 and 6, where\n\
9300 is Sunday. DST is t if daylight savings time is effect, otherwise nil.\n\
931ZONE is an integer indicating the number of seconds east of Greenwich.\n\
2c6c7c72 932\(Note that Common Lisp has different meanings for DOW and ZONE.)")
4691c06d
RS
933 (specified_time)
934 Lisp_Object specified_time;
935{
936 time_t time_spec;
3c887943 937 struct tm save_tm;
4691c06d
RS
938 struct tm *decoded_time;
939 Lisp_Object list_args[9];
940
941 if (! lisp_time_argument (specified_time, &time_spec))
942 error ("Invalid time specification");
943
944 decoded_time = localtime (&time_spec);
3c887943
KH
945 XSETFASTINT (list_args[0], decoded_time->tm_sec);
946 XSETFASTINT (list_args[1], decoded_time->tm_min);
947 XSETFASTINT (list_args[2], decoded_time->tm_hour);
948 XSETFASTINT (list_args[3], decoded_time->tm_mday);
949 XSETFASTINT (list_args[4], decoded_time->tm_mon + 1);
236ebf35 950 XSETINT (list_args[5], decoded_time->tm_year + 1900);
3c887943 951 XSETFASTINT (list_args[6], decoded_time->tm_wday);
4691c06d 952 list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil;
3c887943
KH
953
954 /* Make a copy, in case gmtime modifies the struct. */
955 save_tm = *decoded_time;
956 decoded_time = gmtime (&time_spec);
957 if (decoded_time == 0)
958 list_args[8] = Qnil;
959 else
94751666 960 XSETINT (list_args[8], tm_diff (&save_tm, decoded_time));
4691c06d
RS
961 return Flist (9, list_args);
962}
963
6ee9061c 964DEFUN ("encode-time", Fencode_time, Sencode_time, 6, MANY, 0,
2591ec64 965 "Convert SECOND, MINUTE, HOUR, DAY, MONTH, YEAR and ZONE to internal time.\n\
6ee9061c
RS
966This is the reverse operation of `decode-time', which see.\n\
967ZONE defaults to the current time zone rule. This can\n\
085e9fcb 968be a string or t (as from `set-time-zone-rule'), or it can be a list\n\
7459d65b 969\(as from `current-time-zone') or an integer (as from `decode-time')\n\
c59b5089 970applied without consideration for daylight savings time.\n\
6ee9061c
RS
971\n\
972You can pass more than 7 arguments; then the first six arguments\n\
973are used as SECOND through YEAR, and the *last* argument is used as ZONE.\n\
974The intervening arguments are ignored.\n\
975This feature lets (apply 'encode-time (decode-time ...)) work.\n\
976\n\
c59b5089
PE
977Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed;\n\
978for example, a DAY of 0 means the day preceding the given month.\n\
01ba8cce 979Year numbers less than 100 are treated just like other year numbers.\n\
c59b5089 980If you want them to stand for years in this century, you must do that yourself.")
6ee9061c
RS
981 (nargs, args)
982 int nargs;
983 register Lisp_Object *args;
cce7b8a0 984{
1b8fa736 985 time_t time;
c59b5089 986 struct tm tm;
60653898 987 Lisp_Object zone = (nargs > 6 ? args[nargs - 1] : Qnil);
6ee9061c
RS
988
989 CHECK_NUMBER (args[0], 0); /* second */
990 CHECK_NUMBER (args[1], 1); /* minute */
991 CHECK_NUMBER (args[2], 2); /* hour */
992 CHECK_NUMBER (args[3], 3); /* day */
993 CHECK_NUMBER (args[4], 4); /* month */
994 CHECK_NUMBER (args[5], 5); /* year */
995
996 tm.tm_sec = XINT (args[0]);
997 tm.tm_min = XINT (args[1]);
998 tm.tm_hour = XINT (args[2]);
999 tm.tm_mday = XINT (args[3]);
1000 tm.tm_mon = XINT (args[4]) - 1;
1001 tm.tm_year = XINT (args[5]) - 1900;
c59b5089
PE
1002 tm.tm_isdst = -1;
1003
1004 if (CONSP (zone))
1005 zone = Fcar (zone);
1b8fa736 1006 if (NILP (zone))
c59b5089
PE
1007 time = mktime (&tm);
1008 else
1b8fa736 1009 {
c59b5089
PE
1010 char tzbuf[100];
1011 char *tzstring;
1012 char **oldenv = environ, **newenv;
1013
2e34157c 1014 if (EQ (zone, Qt))
085e9fcb
EN
1015 tzstring = "UTC0";
1016 else if (STRINGP (zone))
4d4c1514 1017 tzstring = (char *) XSTRING (zone)->data;
c59b5089 1018 else if (INTEGERP (zone))
1b8fa736 1019 {
c59b5089
PE
1020 int abszone = abs (XINT (zone));
1021 sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
1022 abszone / (60*60), (abszone/60) % 60, abszone % 60);
1023 tzstring = tzbuf;
1b8fa736 1024 }
c59b5089
PE
1025 else
1026 error ("Invalid time zone specification");
1027
1028 /* Set TZ before calling mktime; merely adjusting mktime's returned
1029 value doesn't suffice, since that would mishandle leap seconds. */
1030 set_time_zone_rule (tzstring);
1031
1032 time = mktime (&tm);
1033
1034 /* Restore TZ to previous value. */
1035 newenv = environ;
1036 environ = oldenv;
c0efcacf 1037 xfree (newenv);
c59b5089
PE
1038#ifdef LOCALTIME_CACHE
1039 tzset ();
1040#endif
1b8fa736 1041 }
1b8fa736 1042
c59b5089
PE
1043 if (time == (time_t) -1)
1044 error ("Specified time is not representable");
1045
1046 return make_time (time);
cce7b8a0
RS
1047}
1048
2148f2b4 1049DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 1, 0,
35692fe0 1050 "Return the current time, as a human-readable string.\n\
2148f2b4
RS
1051Programs can use this function to decode a time,\n\
1052since the number of columns in each field is fixed.\n\
1053The format is `Sun Sep 16 01:03:52 1973'.\n\
7a8630da
RS
1054However, see also the functions `decode-time' and `format-time-string'\n\
1055which provide a much more powerful and general facility.\n\
1056\n\
2148f2b4
RS
1057If an argument is given, it specifies a time to format\n\
1058instead of the current time. The argument should have the form:\n\
1059 (HIGH . LOW)\n\
1060or the form:\n\
1061 (HIGH LOW . IGNORED).\n\
1062Thus, you can use times obtained from `current-time'\n\
1063and from `file-attributes'.")
1064 (specified_time)
1065 Lisp_Object specified_time;
1066{
e3120ab5 1067 time_t value;
35692fe0 1068 char buf[30];
2148f2b4
RS
1069 register char *tem;
1070
e3120ab5
JB
1071 if (! lisp_time_argument (specified_time, &value))
1072 value = -1;
2148f2b4 1073 tem = (char *) ctime (&value);
35692fe0
JB
1074
1075 strncpy (buf, tem, 24);
1076 buf[24] = 0;
1077
1078 return build_string (buf);
1079}
c2662aea 1080
94751666 1081#define TM_YEAR_BASE 1900
e3120ab5 1082
94751666
PE
1083/* Yield A - B, measured in seconds.
1084 This function is copied from the GNU C Library. */
1085static int
1086tm_diff (a, b)
e3120ab5
JB
1087 struct tm *a, *b;
1088{
94751666
PE
1089 /* Compute intervening leap days correctly even if year is negative.
1090 Take care to avoid int overflow in leap day calculations,
1091 but it's OK to assume that A and B are close to each other. */
1092 int a4 = (a->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (a->tm_year & 3);
1093 int b4 = (b->tm_year >> 2) + (TM_YEAR_BASE >> 2) - ! (b->tm_year & 3);
1094 int a100 = a4 / 25 - (a4 % 25 < 0);
1095 int b100 = b4 / 25 - (b4 % 25 < 0);
1096 int a400 = a100 >> 2;
1097 int b400 = b100 >> 2;
1098 int intervening_leap_days = (a4 - b4) - (a100 - b100) + (a400 - b400);
1099 int years = a->tm_year - b->tm_year;
1100 int days = (365 * years + intervening_leap_days
1101 + (a->tm_yday - b->tm_yday));
1102 return (60 * (60 * (24 * days + (a->tm_hour - b->tm_hour))
1103 + (a->tm_min - b->tm_min))
8e718b4e 1104 + (a->tm_sec - b->tm_sec));
e3120ab5
JB
1105}
1106
1107DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 1, 0,
1108 "Return the offset and name for the local time zone.\n\
1109This returns a list of the form (OFFSET NAME).\n\
1110OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).\n\
1111 A negative value means west of Greenwich.\n\
1112NAME is a string giving the name of the time zone.\n\
1113If an argument is given, it specifies when the time zone offset is determined\n\
1114instead of using the current time. The argument should have the form:\n\
1115 (HIGH . LOW)\n\
1116or the form:\n\
1117 (HIGH LOW . IGNORED).\n\
1118Thus, you can use times obtained from `current-time'\n\
1119and from `file-attributes'.\n\
773c1fd3
JB
1120\n\
1121Some operating systems cannot provide all this information to Emacs;\n\
2d88f747 1122in this case, `current-time-zone' returns a list containing nil for\n\
773c1fd3 1123the data it can't find.")
e3120ab5
JB
1124 (specified_time)
1125 Lisp_Object specified_time;
c2662aea 1126{
e3120ab5
JB
1127 time_t value;
1128 struct tm *t;
c2662aea 1129
e3120ab5 1130 if (lisp_time_argument (specified_time, &value)
2d88f747 1131 && (t = gmtime (&value)) != 0)
e3120ab5 1132 {
2d88f747 1133 struct tm gmt;
94751666 1134 int offset;
e3120ab5 1135 char *s, buf[6];
2d88f747
RS
1136
1137 gmt = *t; /* Make a copy, in case localtime modifies *t. */
1138 t = localtime (&value);
94751666 1139 offset = tm_diff (t, &gmt);
e3120ab5
JB
1140 s = 0;
1141#ifdef HAVE_TM_ZONE
1142 if (t->tm_zone)
5fd4de15 1143 s = (char *)t->tm_zone;
a7971c39
RS
1144#else /* not HAVE_TM_ZONE */
1145#ifdef HAVE_TZNAME
1146 if (t->tm_isdst == 0 || t->tm_isdst == 1)
1147 s = tzname[t->tm_isdst];
c2662aea 1148#endif
a7971c39 1149#endif /* not HAVE_TM_ZONE */
e3120ab5
JB
1150 if (!s)
1151 {
1152 /* No local time zone name is available; use "+-NNNN" instead. */
00fc94d0 1153 int am = (offset < 0 ? -offset : offset) / 60;
e3120ab5
JB
1154 sprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60, am%60);
1155 s = buf;
1156 }
1157 return Fcons (make_number (offset), Fcons (build_string (s), Qnil));
1158 }
1159 else
09dbcf71 1160 return Fmake_list (make_number (2), Qnil);
c2662aea
JB
1161}
1162
260e2e2a
KH
1163/* This holds the value of `environ' produced by the previous
1164 call to Fset_time_zone_rule, or 0 if Fset_time_zone_rule
1165 has never been called. */
1166static char **environbuf;
1167
143cb9a9
RS
1168DEFUN ("set-time-zone-rule", Fset_time_zone_rule, Sset_time_zone_rule, 1, 1, 0,
1169 "Set the local time zone using TZ, a string specifying a time zone rule.\n\
085e9fcb
EN
1170If TZ is nil, use implementation-defined default time zone information.\n\
1171If TZ is t, use Universal Time.")
143cb9a9
RS
1172 (tz)
1173 Lisp_Object tz;
1174{
143cb9a9
RS
1175 char *tzstring;
1176
1177 if (NILP (tz))
1178 tzstring = 0;
2e34157c 1179 else if (EQ (tz, Qt))
085e9fcb 1180 tzstring = "UTC0";
143cb9a9
RS
1181 else
1182 {
1183 CHECK_STRING (tz, 0);
4d4c1514 1184 tzstring = (char *) XSTRING (tz)->data;
143cb9a9
RS
1185 }
1186
c59b5089
PE
1187 set_time_zone_rule (tzstring);
1188 if (environbuf)
1189 free (environbuf);
1190 environbuf = environ;
1191
1192 return Qnil;
1193}
1194
e0bf9faf
PE
1195#ifdef LOCALTIME_CACHE
1196
1197/* These two values are known to load tz files in buggy implementations,
1198 i.e. Solaris 1 executables running under either Solaris 1 or Solaris 2.
1155c453
RS
1199 Their values shouldn't matter in non-buggy implementations.
1200 We don't use string literals for these strings,
1201 since if a string in the environment is in readonly
1202 storage, it runs afoul of bugs in SVR4 and Solaris 2.3.
1203 See Sun bugs 1113095 and 1114114, ``Timezone routines
1204 improperly modify environment''. */
1205
e0bf9faf
PE
1206static char set_time_zone_rule_tz1[] = "TZ=GMT+0";
1207static char set_time_zone_rule_tz2[] = "TZ=GMT+1";
1208
1209#endif
1155c453 1210
c59b5089
PE
1211/* Set the local time zone rule to TZSTRING.
1212 This allocates memory into `environ', which it is the caller's
1213 responsibility to free. */
a92ae0ce 1214void
c59b5089
PE
1215set_time_zone_rule (tzstring)
1216 char *tzstring;
1217{
1218 int envptrs;
1219 char **from, **to, **newenv;
1220
aafe5147 1221 /* Make the ENVIRON vector longer with room for TZSTRING. */
143cb9a9
RS
1222 for (from = environ; *from; from++)
1223 continue;
1224 envptrs = from - environ + 2;
1225 newenv = to = (char **) xmalloc (envptrs * sizeof (char *)
1226 + (tzstring ? strlen (tzstring) + 4 : 0));
aafe5147
RS
1227
1228 /* Add TZSTRING to the end of environ, as a value for TZ. */
143cb9a9
RS
1229 if (tzstring)
1230 {
1231 char *t = (char *) (to + envptrs);
1232 strcpy (t, "TZ=");
1233 strcat (t, tzstring);
1234 *to++ = t;
1235 }
1236
aafe5147
RS
1237 /* Copy the old environ vector elements into NEWENV,
1238 but don't copy the TZ variable.
1239 So we have only one definition of TZ, which came from TZSTRING. */
143cb9a9
RS
1240 for (from = environ; *from; from++)
1241 if (strncmp (*from, "TZ=", 3) != 0)
1242 *to++ = *from;
1243 *to = 0;
1244
1245 environ = newenv;
143cb9a9 1246
aafe5147
RS
1247 /* If we do have a TZSTRING, NEWENV points to the vector slot where
1248 the TZ variable is stored. If we do not have a TZSTRING,
1249 TO points to the vector slot which has the terminating null. */
1250
143cb9a9 1251#ifdef LOCALTIME_CACHE
aafe5147
RS
1252 {
1253 /* In SunOS 4.1.3_U1 and 4.1.4, if TZ has a value like
1254 "US/Pacific" that loads a tz file, then changes to a value like
1255 "XXX0" that does not load a tz file, and then changes back to
1256 its original value, the last change is (incorrectly) ignored.
1257 Also, if TZ changes twice in succession to values that do
1258 not load a tz file, tzset can dump core (see Sun bug#1225179).
1259 The following code works around these bugs. */
1260
aafe5147
RS
1261 if (tzstring)
1262 {
1263 /* Temporarily set TZ to a value that loads a tz file
1264 and that differs from tzstring. */
1265 char *tz = *newenv;
1155c453
RS
1266 *newenv = (strcmp (tzstring, set_time_zone_rule_tz1 + 3) == 0
1267 ? set_time_zone_rule_tz2 : set_time_zone_rule_tz1);
aafe5147
RS
1268 tzset ();
1269 *newenv = tz;
1270 }
1271 else
1272 {
1273 /* The implied tzstring is unknown, so temporarily set TZ to
1274 two different values that each load a tz file. */
1155c453 1275 *to = set_time_zone_rule_tz1;
aafe5147
RS
1276 to[1] = 0;
1277 tzset ();
1155c453 1278 *to = set_time_zone_rule_tz2;
aafe5147
RS
1279 tzset ();
1280 *to = 0;
1281 }
1282
1283 /* Now TZ has the desired value, and tzset can be invoked safely. */
1284 }
1285
143cb9a9
RS
1286 tzset ();
1287#endif
143cb9a9 1288}
35692fe0 1289\f
fb8106e8
KH
1290/* Insert NARGS Lisp objects in the array ARGS by calling INSERT_FUNC
1291 (if a type of object is Lisp_Int) or INSERT_FROM_STRING_FUNC (if a
1292 type of object is Lisp_String). INHERIT is passed to
1293 INSERT_FROM_STRING_FUNC as the last argument. */
1294
d11ba98c 1295void
fb8106e8
KH
1296general_insert_function (insert_func, insert_from_string_func,
1297 inherit, nargs, args)
d11ba98c 1298 void (*insert_func) P_ ((unsigned char *, int));
1f24f4fd 1299 void (*insert_from_string_func) P_ ((Lisp_Object, int, int, int, int, int));
fb8106e8
KH
1300 int inherit, nargs;
1301 register Lisp_Object *args;
1302{
1303 register int argnum;
1304 register Lisp_Object val;
1305
1306 for (argnum = 0; argnum < nargs; argnum++)
1307 {
1308 val = args[argnum];
1309 retry:
1310 if (INTEGERP (val))
1311 {
d11ba98c 1312 unsigned char workbuf[4], *str;
fb8106e8
KH
1313 int len;
1314
1315 if (!NILP (current_buffer->enable_multibyte_characters))
1316 len = CHAR_STRING (XFASTINT (val), workbuf, str);
1317 else
1318 workbuf[0] = XINT (val), str = workbuf, len = 1;
1319 (*insert_func) (str, len);
1320 }
1321 else if (STRINGP (val))
1322 {
1f24f4fd
RS
1323 (*insert_from_string_func) (val, 0, 0,
1324 XSTRING (val)->size,
dc3620af 1325 STRING_BYTES (XSTRING (val)),
1f24f4fd 1326 inherit);
fb8106e8
KH
1327 }
1328 else
1329 {
1330 val = wrong_type_argument (Qchar_or_string_p, val);
1331 goto retry;
1332 }
1333 }
1334}
1335
35692fe0
JB
1336void
1337insert1 (arg)
1338 Lisp_Object arg;
1339{
1340 Finsert (1, &arg);
1341}
1342
52b14ac0
JB
1343
1344/* Callers passing one argument to Finsert need not gcpro the
1345 argument "array", since the only element of the array will
1346 not be used after calling insert or insert_from_string, so
1347 we don't care if it gets trashed. */
1348
35692fe0
JB
1349DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0,
1350 "Insert the arguments, either strings or characters, at point.\n\
24d6bf26 1351Point and before-insertion markers move forward to end up\n\
fb8106e8 1352 after the inserted text.\n\
24d6bf26
RS
1353Any other markers at the point of insertion remain before the text.\n\
1354\n\
1355If the current buffer is multibyte, unibyte strings are converted\n\
1356to multibyte for insertion (see `unibyte-char-to-multibyte').\n\
1357If the current buffer is unibyte, multiibyte strings are converted\n\
1358to unibyte for insertion.")
35692fe0
JB
1359 (nargs, args)
1360 int nargs;
1361 register Lisp_Object *args;
1362{
fb8106e8 1363 general_insert_function (insert, insert_from_string, 0, nargs, args);
be91036a
RS
1364 return Qnil;
1365}
1366
1367DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit,
1368 0, MANY, 0,
1369 "Insert the arguments at point, inheriting properties from adjoining text.\n\
24d6bf26 1370Point and before-insertion markers move forward to end up\n\
fb8106e8 1371 after the inserted text.\n\
24d6bf26
RS
1372Any other markers at the point of insertion remain before the text.\n\
1373\n\
1374If the current buffer is multibyte, unibyte strings are converted\n\
1375to multibyte for insertion (see `unibyte-char-to-multibyte').\n\
1376If the current buffer is unibyte, multiibyte strings are converted\n\
1377to unibyte for insertion.")
be91036a
RS
1378 (nargs, args)
1379 int nargs;
1380 register Lisp_Object *args;
1381{
fb8106e8
KH
1382 general_insert_function (insert_and_inherit, insert_from_string, 1,
1383 nargs, args);
35692fe0
JB
1384 return Qnil;
1385}
1386
1387DEFUN ("insert-before-markers", Finsert_before_markers, Sinsert_before_markers, 0, MANY, 0,
1388 "Insert strings or characters at point, relocating markers after the text.\n\
24d6bf26
RS
1389Point and markers move forward to end up after the inserted text.\n\
1390\n\
1391If the current buffer is multibyte, unibyte strings are converted\n\
1392to multibyte for insertion (see `unibyte-char-to-multibyte').\n\
1393If the current buffer is unibyte, multiibyte strings are converted\n\
1394to unibyte for insertion.")
35692fe0
JB
1395 (nargs, args)
1396 int nargs;
1397 register Lisp_Object *args;
1398{
fb8106e8
KH
1399 general_insert_function (insert_before_markers,
1400 insert_from_string_before_markers, 0,
1401 nargs, args);
be91036a
RS
1402 return Qnil;
1403}
1404
a0d76c27
EN
1405DEFUN ("insert-before-markers-and-inherit", Finsert_and_inherit_before_markers,
1406 Sinsert_and_inherit_before_markers, 0, MANY, 0,
be91036a 1407 "Insert text at point, relocating markers and inheriting properties.\n\
24d6bf26
RS
1408Point and markers move forward to end up after the inserted text.\n\
1409\n\
1410If the current buffer is multibyte, unibyte strings are converted\n\
1411to multibyte for insertion (see `unibyte-char-to-multibyte').\n\
1412If the current buffer is unibyte, multiibyte strings are converted\n\
1413to unibyte for insertion.")
be91036a
RS
1414 (nargs, args)
1415 int nargs;
1416 register Lisp_Object *args;
1417{
fb8106e8
KH
1418 general_insert_function (insert_before_markers_and_inherit,
1419 insert_from_string_before_markers, 1,
1420 nargs, args);
35692fe0
JB
1421 return Qnil;
1422}
1423\f
e2eeabbb 1424DEFUN ("insert-char", Finsert_char, Sinsert_char, 2, 3, 0,
2591ec64 1425 "Insert COUNT (second arg) copies of CHARACTER (first arg).\n\
e2eeabbb 1426Both arguments are required.\n\
ba88b322 1427Point, and before-insertion markers, are relocated as in the function `insert'.\n\
e2eeabbb
RS
1428The optional third arg INHERIT, if non-nil, says to inherit text properties\n\
1429from adjoining text, if those properties are sticky.")
2591ec64
EN
1430 (character, count, inherit)
1431 Lisp_Object character, count, inherit;
35692fe0
JB
1432{
1433 register unsigned char *string;
1434 register int strlen;
1435 register int i, n;
fb8106e8
KH
1436 int len;
1437 unsigned char workbuf[4], *str;
35692fe0 1438
2591ec64 1439 CHECK_NUMBER (character, 0);
35692fe0
JB
1440 CHECK_NUMBER (count, 1);
1441
fb8106e8
KH
1442 if (!NILP (current_buffer->enable_multibyte_characters))
1443 len = CHAR_STRING (XFASTINT (character), workbuf, str);
1444 else
1445 workbuf[0] = XFASTINT (character), str = workbuf, len = 1;
1446 n = XINT (count) * len;
35692fe0
JB
1447 if (n <= 0)
1448 return Qnil;
fb8106e8 1449 strlen = min (n, 256 * len);
35692fe0
JB
1450 string = (unsigned char *) alloca (strlen);
1451 for (i = 0; i < strlen; i++)
fb8106e8 1452 string[i] = str[i % len];
35692fe0
JB
1453 while (n >= strlen)
1454 {
54e42e2d 1455 QUIT;
e2eeabbb
RS
1456 if (!NILP (inherit))
1457 insert_and_inherit (string, strlen);
1458 else
1459 insert (string, strlen);
35692fe0
JB
1460 n -= strlen;
1461 }
1462 if (n > 0)
83951f1e
KH
1463 {
1464 if (!NILP (inherit))
1465 insert_and_inherit (string, n);
1466 else
1467 insert (string, n);
1468 }
35692fe0
JB
1469 return Qnil;
1470}
1471
1472\f
ffd56f97
JB
1473/* Making strings from buffer contents. */
1474
1475/* Return a Lisp_String containing the text of the current buffer from
74d6d8c5 1476 START to END. If text properties are in use and the current buffer
eb8c3be9 1477 has properties in the range specified, the resulting string will also
260e2e2a 1478 have them, if PROPS is nonzero.
ffd56f97
JB
1479
1480 We don't want to use plain old make_string here, because it calls
1481 make_uninit_string, which can cause the buffer arena to be
1482 compacted. make_string has no way of knowing that the data has
1483 been moved, and thus copies the wrong data into the string. This
1484 doesn't effect most of the other users of make_string, so it should
1485 be left as is. But we should use this function when conjuring
1486 buffer substrings. */
74d6d8c5 1487
ffd56f97 1488Lisp_Object
260e2e2a 1489make_buffer_string (start, end, props)
ffd56f97 1490 int start, end;
260e2e2a 1491 int props;
ffd56f97 1492{
ec1c14f6
RS
1493 int start_byte = CHAR_TO_BYTE (start);
1494 int end_byte = CHAR_TO_BYTE (end);
ffd56f97 1495
88441c8e
RS
1496 return make_buffer_string_both (start, start_byte, end, end_byte, props);
1497}
1498
1499/* Return a Lisp_String containing the text of the current buffer from
1500 START / START_BYTE to END / END_BYTE.
1501
1502 If text properties are in use and the current buffer
1503 has properties in the range specified, the resulting string will also
1504 have them, if PROPS is nonzero.
1505
1506 We don't want to use plain old make_string here, because it calls
1507 make_uninit_string, which can cause the buffer arena to be
1508 compacted. make_string has no way of knowing that the data has
1509 been moved, and thus copies the wrong data into the string. This
1510 doesn't effect most of the other users of make_string, so it should
1511 be left as is. But we should use this function when conjuring
1512 buffer substrings. */
1513
1514Lisp_Object
1515make_buffer_string_both (start, start_byte, end, end_byte, props)
1516 int start, start_byte, end, end_byte;
1517 int props;
1518{
1519 Lisp_Object result, tem, tem1;
1520
ffd56f97
JB
1521 if (start < GPT && GPT < end)
1522 move_gap (start);
1523
5f75e666
RS
1524 if (! NILP (current_buffer->enable_multibyte_characters))
1525 result = make_uninit_multibyte_string (end - start, end_byte - start_byte);
1526 else
1527 result = make_uninit_string (end - start);
ec1c14f6
RS
1528 bcopy (BYTE_POS_ADDR (start_byte), XSTRING (result)->data,
1529 end_byte - start_byte);
ffd56f97 1530
260e2e2a 1531 /* If desired, update and copy the text properties. */
60b96ee7 1532#ifdef USE_TEXT_PROPERTIES
260e2e2a
KH
1533 if (props)
1534 {
1535 update_buffer_properties (start, end);
1536
1537 tem = Fnext_property_change (make_number (start), Qnil, make_number (end));
1538 tem1 = Ftext_properties_at (make_number (start), Qnil);
1539
1540 if (XINT (tem) != end || !NILP (tem1))
ec1c14f6
RS
1541 copy_intervals_to_string (result, current_buffer, start,
1542 end - start);
260e2e2a 1543 }
60b96ee7 1544#endif
74d6d8c5 1545
ffd56f97
JB
1546 return result;
1547}
35692fe0 1548
260e2e2a
KH
1549/* Call Vbuffer_access_fontify_functions for the range START ... END
1550 in the current buffer, if necessary. */
1551
1552static void
1553update_buffer_properties (start, end)
1554 int start, end;
1555{
1556#ifdef USE_TEXT_PROPERTIES
1557 /* If this buffer has some access functions,
1558 call them, specifying the range of the buffer being accessed. */
1559 if (!NILP (Vbuffer_access_fontify_functions))
1560 {
1561 Lisp_Object args[3];
1562 Lisp_Object tem;
1563
1564 args[0] = Qbuffer_access_fontify_functions;
1565 XSETINT (args[1], start);
1566 XSETINT (args[2], end);
1567
1568 /* But don't call them if we can tell that the work
1569 has already been done. */
1570 if (!NILP (Vbuffer_access_fontified_property))
1571 {
1572 tem = Ftext_property_any (args[1], args[2],
1573 Vbuffer_access_fontified_property,
1574 Qnil, Qnil);
1575 if (! NILP (tem))
ced1d19a 1576 Frun_hook_with_args (3, args);
260e2e2a
KH
1577 }
1578 else
ced1d19a 1579 Frun_hook_with_args (3, args);
260e2e2a
KH
1580 }
1581#endif
1582}
1583
35692fe0
JB
1584DEFUN ("buffer-substring", Fbuffer_substring, Sbuffer_substring, 2, 2, 0,
1585 "Return the contents of part of the current buffer as a string.\n\
1586The two arguments START and END are character positions;\n\
24d6bf26
RS
1587they can be in either order.\n\
1588The string returned is multibyte if the buffer is multibyte.")
2591ec64
EN
1589 (start, end)
1590 Lisp_Object start, end;
35692fe0 1591{
2591ec64 1592 register int b, e;
35692fe0 1593
2591ec64
EN
1594 validate_region (&start, &end);
1595 b = XINT (start);
1596 e = XINT (end);
35692fe0 1597
2591ec64 1598 return make_buffer_string (b, e, 1);
260e2e2a
KH
1599}
1600
1601DEFUN ("buffer-substring-no-properties", Fbuffer_substring_no_properties,
1602 Sbuffer_substring_no_properties, 2, 2, 0,
1603 "Return the characters of part of the buffer, without the text properties.\n\
1604The two arguments START and END are character positions;\n\
1605they can be in either order.")
2591ec64
EN
1606 (start, end)
1607 Lisp_Object start, end;
260e2e2a 1608{
2591ec64 1609 register int b, e;
260e2e2a 1610
2591ec64
EN
1611 validate_region (&start, &end);
1612 b = XINT (start);
1613 e = XINT (end);
260e2e2a 1614
2591ec64 1615 return make_buffer_string (b, e, 0);
35692fe0
JB
1616}
1617
1618DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0,
af7bd86c
KH
1619 "Return the contents of the current buffer as a string.\n\
1620If narrowing is in effect, this function returns only the visible part\n\
1621of the buffer.")
35692fe0
JB
1622 ()
1623{
260e2e2a 1624 return make_buffer_string (BEGV, ZV, 1);
35692fe0
JB
1625}
1626
1627DEFUN ("insert-buffer-substring", Finsert_buffer_substring, Sinsert_buffer_substring,
1628 1, 3, 0,
83ea6fc2 1629 "Insert before point a substring of the contents of buffer BUFFER.\n\
35692fe0
JB
1630BUFFER may be a buffer or a buffer name.\n\
1631Arguments START and END are character numbers specifying the substring.\n\
1632They default to the beginning and the end of BUFFER.")
2591ec64
EN
1633 (buf, start, end)
1634 Lisp_Object buf, start, end;
35692fe0 1635{
2591ec64 1636 register int b, e, temp;
260e2e2a 1637 register struct buffer *bp, *obuf;
3fff2dfa 1638 Lisp_Object buffer;
35692fe0 1639
3fff2dfa
RS
1640 buffer = Fget_buffer (buf);
1641 if (NILP (buffer))
1642 nsberror (buf);
1643 bp = XBUFFER (buffer);
93b62e82
KH
1644 if (NILP (bp->name))
1645 error ("Selecting deleted buffer");
35692fe0 1646
2591ec64
EN
1647 if (NILP (start))
1648 b = BUF_BEGV (bp);
35692fe0
JB
1649 else
1650 {
2591ec64
EN
1651 CHECK_NUMBER_COERCE_MARKER (start, 0);
1652 b = XINT (start);
35692fe0 1653 }
2591ec64
EN
1654 if (NILP (end))
1655 e = BUF_ZV (bp);
35692fe0
JB
1656 else
1657 {
2591ec64
EN
1658 CHECK_NUMBER_COERCE_MARKER (end, 1);
1659 e = XINT (end);
35692fe0
JB
1660 }
1661
2591ec64
EN
1662 if (b > e)
1663 temp = b, b = e, e = temp;
35692fe0 1664
2591ec64
EN
1665 if (!(BUF_BEGV (bp) <= b && e <= BUF_ZV (bp)))
1666 args_out_of_range (start, end);
35692fe0 1667
260e2e2a
KH
1668 obuf = current_buffer;
1669 set_buffer_internal_1 (bp);
2591ec64 1670 update_buffer_properties (b, e);
260e2e2a
KH
1671 set_buffer_internal_1 (obuf);
1672
2591ec64 1673 insert_from_buffer (bp, b, e - b, 0);
35692fe0
JB
1674 return Qnil;
1675}
e9cf2084
RS
1676
1677DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
1678 6, 6, 0,
1679 "Compare two substrings of two buffers; return result as number.\n\
1680the value is -N if first string is less after N-1 chars,\n\
1681+N if first string is greater after N-1 chars, or 0 if strings match.\n\
1682Each substring is represented as three arguments: BUFFER, START and END.\n\
1683That makes six args in all, three for each substring.\n\n\
1684The value of `case-fold-search' in the current buffer\n\
1685determines whether case is significant or ignored.")
1686 (buffer1, start1, end1, buffer2, start2, end2)
1687 Lisp_Object buffer1, start1, end1, buffer2, start2, end2;
1688{
07422a12 1689 register int begp1, endp1, begp2, endp2, temp;
e9cf2084 1690 register struct buffer *bp1, *bp2;
2a8b0ff0 1691 register Lisp_Object *trt
e9cf2084 1692 = (!NILP (current_buffer->case_fold_search)
2a8b0ff0 1693 ? XCHAR_TABLE (current_buffer->case_canon_table)->contents : 0);
ec1c14f6 1694 int chars = 0;
07422a12 1695 int i1, i2, i1_byte, i2_byte;
e9cf2084
RS
1696
1697 /* Find the first buffer and its substring. */
1698
1699 if (NILP (buffer1))
1700 bp1 = current_buffer;
1701 else
1702 {
3fff2dfa
RS
1703 Lisp_Object buf1;
1704 buf1 = Fget_buffer (buffer1);
1705 if (NILP (buf1))
1706 nsberror (buffer1);
1707 bp1 = XBUFFER (buf1);
93b62e82
KH
1708 if (NILP (bp1->name))
1709 error ("Selecting deleted buffer");
e9cf2084
RS
1710 }
1711
1712 if (NILP (start1))
1713 begp1 = BUF_BEGV (bp1);
1714 else
1715 {
1716 CHECK_NUMBER_COERCE_MARKER (start1, 1);
1717 begp1 = XINT (start1);
1718 }
1719 if (NILP (end1))
1720 endp1 = BUF_ZV (bp1);
1721 else
1722 {
1723 CHECK_NUMBER_COERCE_MARKER (end1, 2);
1724 endp1 = XINT (end1);
1725 }
1726
1727 if (begp1 > endp1)
1728 temp = begp1, begp1 = endp1, endp1 = temp;
1729
1730 if (!(BUF_BEGV (bp1) <= begp1
1731 && begp1 <= endp1
1732 && endp1 <= BUF_ZV (bp1)))
1733 args_out_of_range (start1, end1);
1734
1735 /* Likewise for second substring. */
1736
1737 if (NILP (buffer2))
1738 bp2 = current_buffer;
1739 else
1740 {
3fff2dfa
RS
1741 Lisp_Object buf2;
1742 buf2 = Fget_buffer (buffer2);
1743 if (NILP (buf2))
1744 nsberror (buffer2);
3b1fdd85 1745 bp2 = XBUFFER (buf2);
93b62e82
KH
1746 if (NILP (bp2->name))
1747 error ("Selecting deleted buffer");
e9cf2084
RS
1748 }
1749
1750 if (NILP (start2))
1751 begp2 = BUF_BEGV (bp2);
1752 else
1753 {
1754 CHECK_NUMBER_COERCE_MARKER (start2, 4);
1755 begp2 = XINT (start2);
1756 }
1757 if (NILP (end2))
1758 endp2 = BUF_ZV (bp2);
1759 else
1760 {
1761 CHECK_NUMBER_COERCE_MARKER (end2, 5);
1762 endp2 = XINT (end2);
1763 }
1764
1765 if (begp2 > endp2)
1766 temp = begp2, begp2 = endp2, endp2 = temp;
1767
1768 if (!(BUF_BEGV (bp2) <= begp2
1769 && begp2 <= endp2
1770 && endp2 <= BUF_ZV (bp2)))
1771 args_out_of_range (start2, end2);
1772
07422a12
RS
1773 i1 = begp1;
1774 i2 = begp2;
1775 i1_byte = buf_charpos_to_bytepos (bp1, i1);
1776 i2_byte = buf_charpos_to_bytepos (bp2, i2);
e9cf2084 1777
07422a12 1778 while (i1 < endp1 && i2 < endp2)
e9cf2084 1779 {
07422a12
RS
1780 /* When we find a mismatch, we must compare the
1781 characters, not just the bytes. */
1782 int c1, c2;
ec1c14f6 1783
07422a12
RS
1784 if (! NILP (bp1->enable_multibyte_characters))
1785 {
1786 c1 = BUF_FETCH_MULTIBYTE_CHAR (bp1, i1_byte);
1787 BUF_INC_POS (bp1, i1_byte);
1788 i1++;
1789 }
1790 else
1791 {
1792 c1 = BUF_FETCH_BYTE (bp1, i1);
1793 c1 = unibyte_char_to_multibyte (c1);
1794 i1++;
1795 }
1796
1797 if (! NILP (bp2->enable_multibyte_characters))
1798 {
1799 c2 = BUF_FETCH_MULTIBYTE_CHAR (bp2, i2_byte);
1800 BUF_INC_POS (bp2, i2_byte);
1801 i2++;
1802 }
1803 else
1804 {
1805 c2 = BUF_FETCH_BYTE (bp2, i2);
1806 c2 = unibyte_char_to_multibyte (c2);
1807 i2++;
1808 }
ec1c14f6 1809
e9cf2084
RS
1810 if (trt)
1811 {
1b10fb77
RS
1812 c1 = XINT (trt[c1]);
1813 c2 = XINT (trt[c2]);
e9cf2084
RS
1814 }
1815 if (c1 < c2)
ec1c14f6 1816 return make_number (- 1 - chars);
e9cf2084 1817 if (c1 > c2)
ec1c14f6 1818 return make_number (chars + 1);
07422a12
RS
1819
1820 chars++;
e9cf2084
RS
1821 }
1822
1823 /* The strings match as far as they go.
1824 If one is shorter, that one is less. */
07422a12 1825 if (chars < endp1 - begp1)
ec1c14f6 1826 return make_number (chars + 1);
07422a12 1827 else if (chars < endp2 - begp2)
ec1c14f6 1828 return make_number (- chars - 1);
e9cf2084
RS
1829
1830 /* Same length too => they are equal. */
1831 return make_number (0);
1832}
35692fe0 1833\f
d5a539cd
RS
1834static Lisp_Object
1835subst_char_in_region_unwind (arg)
1836 Lisp_Object arg;
1837{
1838 return current_buffer->undo_list = arg;
1839}
1840
c8e76b47
RS
1841static Lisp_Object
1842subst_char_in_region_unwind_1 (arg)
1843 Lisp_Object arg;
1844{
1845 return current_buffer->filename = arg;
1846}
1847
35692fe0
JB
1848DEFUN ("subst-char-in-region", Fsubst_char_in_region,
1849 Ssubst_char_in_region, 4, 5, 0,
1850 "From START to END, replace FROMCHAR with TOCHAR each time it occurs.\n\
1851If optional arg NOUNDO is non-nil, don't record this change for undo\n\
fb8106e8
KH
1852and don't mark the buffer as really changed.\n\
1853Both characters must have the same length of multi-byte form.")
35692fe0
JB
1854 (start, end, fromchar, tochar, noundo)
1855 Lisp_Object start, end, fromchar, tochar, noundo;
1856{
84246b95 1857 register int pos, pos_byte, stop, i, len, end_byte;
60b96ee7 1858 int changed = 0;
fb8106e8 1859 unsigned char fromwork[4], *fromstr, towork[4], *tostr, *p;
d5a539cd 1860 int count = specpdl_ptr - specpdl;
35692fe0
JB
1861
1862 validate_region (&start, &end);
1863 CHECK_NUMBER (fromchar, 2);
1864 CHECK_NUMBER (tochar, 3);
1865
fb8106e8
KH
1866 if (! NILP (current_buffer->enable_multibyte_characters))
1867 {
1868 len = CHAR_STRING (XFASTINT (fromchar), fromwork, fromstr);
1869 if (CHAR_STRING (XFASTINT (tochar), towork, tostr) != len)
1870 error ("Characters in subst-char-in-region have different byte-lengths");
1871 }
1872 else
1873 {
1874 len = 1;
1875 fromwork[0] = XFASTINT (fromchar), fromstr = fromwork;
1876 towork[0] = XFASTINT (tochar), tostr = towork;
1877 }
1878
84246b95
KH
1879 pos = XINT (start);
1880 pos_byte = CHAR_TO_BYTE (pos);
ec1c14f6
RS
1881 stop = CHAR_TO_BYTE (XINT (end));
1882 end_byte = stop;
35692fe0 1883
d5a539cd
RS
1884 /* If we don't want undo, turn off putting stuff on the list.
1885 That's faster than getting rid of things,
c8e76b47
RS
1886 and it prevents even the entry for a first change.
1887 Also inhibit locking the file. */
d5a539cd
RS
1888 if (!NILP (noundo))
1889 {
1890 record_unwind_protect (subst_char_in_region_unwind,
1891 current_buffer->undo_list);
1892 current_buffer->undo_list = Qt;
c8e76b47
RS
1893 /* Don't do file-locking. */
1894 record_unwind_protect (subst_char_in_region_unwind_1,
1895 current_buffer->filename);
1896 current_buffer->filename = Qnil;
d5a539cd
RS
1897 }
1898
84246b95 1899 if (pos_byte < GPT_BYTE)
ec1c14f6 1900 stop = min (stop, GPT_BYTE);
fb8106e8 1901 while (1)
35692fe0 1902 {
84246b95 1903 if (pos_byte >= stop)
fb8106e8 1904 {
84246b95 1905 if (pos_byte >= end_byte) break;
ec1c14f6 1906 stop = end_byte;
fb8106e8 1907 }
84246b95 1908 p = BYTE_POS_ADDR (pos_byte);
fb8106e8
KH
1909 if (p[0] == fromstr[0]
1910 && (len == 1
1911 || (p[1] == fromstr[1]
1912 && (len == 2 || (p[2] == fromstr[2]
1913 && (len == 3 || p[3] == fromstr[3]))))))
35692fe0 1914 {
60b96ee7
RS
1915 if (! changed)
1916 {
fb8106e8 1917 modify_region (current_buffer, XINT (start), XINT (end));
7653d030
RS
1918
1919 if (! NILP (noundo))
1920 {
1e158d25
RS
1921 if (MODIFF - 1 == SAVE_MODIFF)
1922 SAVE_MODIFF++;
7653d030
RS
1923 if (MODIFF - 1 == current_buffer->auto_save_modified)
1924 current_buffer->auto_save_modified++;
1925 }
1926
fb8106e8 1927 changed = 1;
60b96ee7
RS
1928 }
1929
56a98455 1930 if (NILP (noundo))
84246b95 1931 record_change (pos, 1);
fb8106e8 1932 for (i = 0; i < len; i++) *p++ = tostr[i];
35692fe0 1933 }
84246b95 1934 INC_BOTH (pos, pos_byte);
35692fe0
JB
1935 }
1936
60b96ee7
RS
1937 if (changed)
1938 signal_after_change (XINT (start),
84246b95 1939 XINT (end) - XINT (start), XINT (end) - XINT (start));
60b96ee7 1940
d5a539cd 1941 unbind_to (count, Qnil);
35692fe0
JB
1942 return Qnil;
1943}
1944
1945DEFUN ("translate-region", Ftranslate_region, Stranslate_region, 3, 3, 0,
1946 "From START to END, translate characters according to TABLE.\n\
1947TABLE is a string; the Nth character in it is the mapping\n\
1f24f4fd
RS
1948for the character with code N.\n\
1949This function does not alter multibyte characters.\n\
1950It returns the number of characters changed.")
35692fe0
JB
1951 (start, end, table)
1952 Lisp_Object start;
1953 Lisp_Object end;
1954 register Lisp_Object table;
1955{
ec1c14f6 1956 register int pos_byte, stop; /* Limits of the region. */
35692fe0 1957 register unsigned char *tt; /* Trans table. */
35692fe0
JB
1958 register int nc; /* New character. */
1959 int cnt; /* Number of changes made. */
35692fe0 1960 int size; /* Size of translate table. */
1f24f4fd 1961 int pos;
35692fe0
JB
1962
1963 validate_region (&start, &end);
1964 CHECK_STRING (table, 2);
1965
dc3620af 1966 size = STRING_BYTES (XSTRING (table));
35692fe0
JB
1967 tt = XSTRING (table)->data;
1968
ec1c14f6
RS
1969 pos_byte = CHAR_TO_BYTE (XINT (start));
1970 stop = CHAR_TO_BYTE (XINT (end));
1971 modify_region (current_buffer, XINT (start), XINT (end));
1f24f4fd 1972 pos = XINT (start);
35692fe0
JB
1973
1974 cnt = 0;
1f24f4fd 1975 for (; pos_byte < stop; )
35692fe0 1976 {
ec1c14f6 1977 register unsigned char *p = BYTE_POS_ADDR (pos_byte);
1f24f4fd
RS
1978 int len;
1979 int oc;
ec1c14f6 1980
1f24f4fd
RS
1981 oc = STRING_CHAR_AND_LENGTH (p, stop - pos_byte, len);
1982 if (oc < size && len == 1)
35692fe0
JB
1983 {
1984 nc = tt[oc];
1985 if (nc != oc)
1986 {
1f24f4fd 1987 record_change (pos, 1);
ec1c14f6 1988 *p = nc;
1f24f4fd 1989 signal_after_change (pos, 1, 1);
35692fe0
JB
1990 ++cnt;
1991 }
1992 }
1f24f4fd
RS
1993 pos_byte += len;
1994 pos++;
35692fe0
JB
1995 }
1996
ec1c14f6 1997 return make_number (cnt);
35692fe0
JB
1998}
1999
2000DEFUN ("delete-region", Fdelete_region, Sdelete_region, 2, 2, "r",
2001 "Delete the text between point and mark.\n\
2002When called from a program, expects two arguments,\n\
2003positions (integers or markers) specifying the stretch to be deleted.")
2591ec64
EN
2004 (start, end)
2005 Lisp_Object start, end;
35692fe0 2006{
2591ec64
EN
2007 validate_region (&start, &end);
2008 del_range (XINT (start), XINT (end));
35692fe0
JB
2009 return Qnil;
2010}
2011\f
2012DEFUN ("widen", Fwiden, Swiden, 0, 0, "",
2013 "Remove restrictions (narrowing) from current buffer.\n\
2014This allows the buffer's full text to be seen and edited.")
2015 ()
2016{
2cad2e34
RS
2017 if (BEG != BEGV || Z != ZV)
2018 current_buffer->clip_changed = 1;
35692fe0 2019 BEGV = BEG;
ec1c14f6
RS
2020 BEGV_BYTE = BEG_BYTE;
2021 SET_BUF_ZV_BOTH (current_buffer, Z, Z_BYTE);
52b14ac0
JB
2022 /* Changing the buffer bounds invalidates any recorded current column. */
2023 invalidate_current_column ();
35692fe0
JB
2024 return Qnil;
2025}
2026
2027DEFUN ("narrow-to-region", Fnarrow_to_region, Snarrow_to_region, 2, 2, "r",
2028 "Restrict editing in this buffer to the current region.\n\
2029The rest of the text becomes temporarily invisible and untouchable\n\
2030but is not deleted; if you save the buffer in a file, the invisible\n\
2031text is included in the file. \\[widen] makes all visible again.\n\
2032See also `save-restriction'.\n\
2033\n\
2034When calling from a program, pass two arguments; positions (integers\n\
2035or markers) bounding the text that should remain visible.")
2591ec64
EN
2036 (start, end)
2037 register Lisp_Object start, end;
35692fe0 2038{
2591ec64
EN
2039 CHECK_NUMBER_COERCE_MARKER (start, 0);
2040 CHECK_NUMBER_COERCE_MARKER (end, 1);
35692fe0 2041
2591ec64 2042 if (XINT (start) > XINT (end))
35692fe0 2043 {
b5a6948e 2044 Lisp_Object tem;
2591ec64 2045 tem = start; start = end; end = tem;
35692fe0
JB
2046 }
2047
2591ec64
EN
2048 if (!(BEG <= XINT (start) && XINT (start) <= XINT (end) && XINT (end) <= Z))
2049 args_out_of_range (start, end);
35692fe0 2050
2cad2e34
RS
2051 if (BEGV != XFASTINT (start) || ZV != XFASTINT (end))
2052 current_buffer->clip_changed = 1;
2053
ec1c14f6 2054 SET_BUF_BEGV (current_buffer, XFASTINT (start));
2591ec64 2055 SET_BUF_ZV (current_buffer, XFASTINT (end));
6ec8bbd2 2056 if (PT < XFASTINT (start))
2591ec64 2057 SET_PT (XFASTINT (start));
6ec8bbd2 2058 if (PT > XFASTINT (end))
2591ec64 2059 SET_PT (XFASTINT (end));
52b14ac0
JB
2060 /* Changing the buffer bounds invalidates any recorded current column. */
2061 invalidate_current_column ();
35692fe0
JB
2062 return Qnil;
2063}
2064
2065Lisp_Object
2066save_restriction_save ()
2067{
2068 register Lisp_Object bottom, top;
2069 /* Note: I tried using markers here, but it does not win
2070 because insertion at the end of the saved region
2071 does not advance mh and is considered "outside" the saved region. */
55561c63
KH
2072 XSETFASTINT (bottom, BEGV - BEG);
2073 XSETFASTINT (top, Z - ZV);
35692fe0
JB
2074
2075 return Fcons (Fcurrent_buffer (), Fcons (bottom, top));
2076}
2077
2078Lisp_Object
2079save_restriction_restore (data)
2080 Lisp_Object data;
2081{
2082 register struct buffer *buf;
2083 register int newhead, newtail;
2084 register Lisp_Object tem;
2cad2e34 2085 int obegv, ozv;
35692fe0
JB
2086
2087 buf = XBUFFER (XCONS (data)->car);
2088
2089 data = XCONS (data)->cdr;
2090
2091 tem = XCONS (data)->car;
2092 newhead = XINT (tem);
2093 tem = XCONS (data)->cdr;
2094 newtail = XINT (tem);
2095 if (newhead + newtail > BUF_Z (buf) - BUF_BEG (buf))
2096 {
2097 newhead = 0;
2098 newtail = 0;
2099 }
2cad2e34
RS
2100
2101 obegv = BUF_BEGV (buf);
2102 ozv = BUF_ZV (buf);
2103
ec1c14f6 2104 SET_BUF_BEGV (buf, BUF_BEG (buf) + newhead);
35692fe0 2105 SET_BUF_ZV (buf, BUF_Z (buf) - newtail);
2cad2e34
RS
2106
2107 if (obegv != BUF_BEGV (buf) || ozv != BUF_ZV (buf))
2108 current_buffer->clip_changed = 1;
35692fe0
JB
2109
2110 /* If point is outside the new visible range, move it inside. */
ec1c14f6
RS
2111 SET_BUF_PT_BOTH (buf,
2112 clip_to_bounds (BUF_BEGV (buf), BUF_PT (buf), BUF_ZV (buf)),
2113 clip_to_bounds (BUF_BEGV_BYTE (buf), BUF_PT_BYTE (buf),
2114 BUF_ZV_BYTE (buf)));
35692fe0
JB
2115
2116 return Qnil;
2117}
2118
2119DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0,
2120 "Execute BODY, saving and restoring current buffer's restrictions.\n\
2121The buffer's restrictions make parts of the beginning and end invisible.\n\
2122\(They are set up with `narrow-to-region' and eliminated with `widen'.)\n\
2123This special form, `save-restriction', saves the current buffer's restrictions\n\
2124when it is entered, and restores them when it is exited.\n\
2125So any `narrow-to-region' within BODY lasts only until the end of the form.\n\
2126The old restrictions settings are restored\n\
2127even in case of abnormal exit (throw or error).\n\
2128\n\
2129The value returned is the value of the last form in BODY.\n\
2130\n\
2131`save-restriction' can get confused if, within the BODY, you widen\n\
2132and then make changes outside the area within the saved restrictions.\n\
2133\n\
2134Note: if you are using both `save-excursion' and `save-restriction',\n\
2135use `save-excursion' outermost:\n\
2136 (save-excursion (save-restriction ...))")
2137 (body)
2138 Lisp_Object body;
2139{
2140 register Lisp_Object val;
2141 int count = specpdl_ptr - specpdl;
2142
2143 record_unwind_protect (save_restriction_restore, save_restriction_save ());
2144 val = Fprogn (body);
2145 return unbind_to (count, val);
2146}
2147\f
671fbc4d
KH
2148/* Buffer for the most recent text displayed by Fmessage. */
2149static char *message_text;
2150
2151/* Allocated length of that buffer. */
2152static int message_length;
2153
35692fe0
JB
2154DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
2155 "Print a one-line message at the bottom of the screen.\n\
98fc5c3c
RS
2156The first argument is a format control string, and the rest are data\n\
2157to be formatted under control of the string. See `format' for details.\n\
2158\n\
ccdac5be
JB
2159If the first argument is nil, clear any existing message; let the\n\
2160minibuffer contents show.")
35692fe0
JB
2161 (nargs, args)
2162 int nargs;
2163 Lisp_Object *args;
2164{
ccdac5be 2165 if (NILP (args[0]))
f0250249
JB
2166 {
2167 message (0);
2168 return Qnil;
2169 }
ccdac5be
JB
2170 else
2171 {
2172 register Lisp_Object val;
2173 val = Fformat (nargs, args);
671fbc4d
KH
2174 /* Copy the data so that it won't move when we GC. */
2175 if (! message_text)
2176 {
2177 message_text = (char *)xmalloc (80);
2178 message_length = 80;
2179 }
dc3620af 2180 if (STRING_BYTES (XSTRING (val)) > message_length)
671fbc4d 2181 {
dc3620af 2182 message_length = STRING_BYTES (XSTRING (val));
671fbc4d
KH
2183 message_text = (char *)xrealloc (message_text, message_length);
2184 }
dc3620af
RS
2185 bcopy (XSTRING (val)->data, message_text, STRING_BYTES (XSTRING (val)));
2186 message2 (message_text, STRING_BYTES (XSTRING (val)),
1f24f4fd 2187 STRING_MULTIBYTE (val));
ccdac5be
JB
2188 return val;
2189 }
35692fe0
JB
2190}
2191
cacc3e2c
RS
2192DEFUN ("message-box", Fmessage_box, Smessage_box, 1, MANY, 0,
2193 "Display a message, in a dialog box if possible.\n\
2194If a dialog box is not available, use the echo area.\n\
f8250f01
RS
2195The first argument is a format control string, and the rest are data\n\
2196to be formatted under control of the string. See `format' for details.\n\
2197\n\
cacc3e2c
RS
2198If the first argument is nil, clear any existing message; let the\n\
2199minibuffer contents show.")
2200 (nargs, args)
2201 int nargs;
2202 Lisp_Object *args;
2203{
2204 if (NILP (args[0]))
2205 {
2206 message (0);
2207 return Qnil;
2208 }
2209 else
2210 {
2211 register Lisp_Object val;
2212 val = Fformat (nargs, args);
f8250f01 2213#ifdef HAVE_MENUS
cacc3e2c
RS
2214 {
2215 Lisp_Object pane, menu, obj;
2216 struct gcpro gcpro1;
2217 pane = Fcons (Fcons (build_string ("OK"), Qt), Qnil);
2218 GCPRO1 (pane);
2219 menu = Fcons (val, pane);
2220 obj = Fx_popup_dialog (Qt, menu);
2221 UNGCPRO;
2222 return val;
2223 }
f8250f01 2224#else /* not HAVE_MENUS */
cacc3e2c
RS
2225 /* Copy the data so that it won't move when we GC. */
2226 if (! message_text)
2227 {
2228 message_text = (char *)xmalloc (80);
2229 message_length = 80;
2230 }
dc3620af 2231 if (STRING_BYTES (XSTRING (val)) > message_length)
cacc3e2c 2232 {
dc3620af 2233 message_length = STRING_BYTES (XSTRING (val));
cacc3e2c
RS
2234 message_text = (char *)xrealloc (message_text, message_length);
2235 }
dc3620af 2236 bcopy (XSTRING (val)->data, message_text, STRING_BYTES (XSTRING (val)));
d13a8480
RS
2237 message2 (message_text, STRING_BYTES (XSTRING (val)),
2238 STRING_MULTIBYTE (val));
cacc3e2c 2239 return val;
f8250f01 2240#endif /* not HAVE_MENUS */
cacc3e2c
RS
2241 }
2242}
f8250f01 2243#ifdef HAVE_MENUS
cacc3e2c
RS
2244extern Lisp_Object last_nonmenu_event;
2245#endif
f8250f01 2246
cacc3e2c
RS
2247DEFUN ("message-or-box", Fmessage_or_box, Smessage_or_box, 1, MANY, 0,
2248 "Display a message in a dialog box or in the echo area.\n\
2249If this command was invoked with the mouse, use a dialog box.\n\
2250Otherwise, use the echo area.\n\
f8250f01
RS
2251The first argument is a format control string, and the rest are data\n\
2252to be formatted under control of the string. See `format' for details.\n\
cacc3e2c 2253\n\
cacc3e2c
RS
2254If the first argument is nil, clear any existing message; let the\n\
2255minibuffer contents show.")
2256 (nargs, args)
2257 int nargs;
2258 Lisp_Object *args;
2259{
f8250f01 2260#ifdef HAVE_MENUS
cacc3e2c 2261 if (NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
0a56ee6b 2262 return Fmessage_box (nargs, args);
cacc3e2c
RS
2263#endif
2264 return Fmessage (nargs, args);
2265}
2266
b14dda8a
RS
2267DEFUN ("current-message", Fcurrent_message, Scurrent_message, 0, 0, 0,
2268 "Return the string currently displayed in the echo area, or nil if none.")
2269 ()
2270{
2271 return (echo_area_glyphs
2272 ? make_string (echo_area_glyphs, echo_area_glyphs_length)
2273 : Qnil);
2274}
2275
1f24f4fd
RS
2276/* Number of bytes that STRING will occupy when put into the result.
2277 MULTIBYTE is nonzero if the result should be multibyte. */
2278
2279#define CONVERTED_BYTE_SIZE(MULTIBYTE, STRING) \
2280 (((MULTIBYTE) && ! STRING_MULTIBYTE (STRING)) \
8d6179dc 2281 ? count_size_as_multibyte (XSTRING (STRING)->data, \
dc3620af
RS
2282 STRING_BYTES (XSTRING (STRING))) \
2283 : STRING_BYTES (XSTRING (STRING)))
1f24f4fd 2284
35692fe0
JB
2285DEFUN ("format", Fformat, Sformat, 1, MANY, 0,
2286 "Format a string out of a control-string and arguments.\n\
2287The first argument is a control string.\n\
2288The other arguments are substituted into it to make the result, a string.\n\
2289It may contain %-sequences meaning to substitute the next argument.\n\
2290%s means print a string argument. Actually, prints any object, with `princ'.\n\
2291%d means print as number in decimal (%o octal, %x hex).\n\
9db1775a
RS
2292%e means print a number in exponential notation.\n\
2293%f means print a number in decimal-point notation.\n\
2294%g means print a number in exponential notation\n\
2295 or decimal-point notation, whichever uses fewer characters.\n\
35692fe0
JB
2296%c means print a number as a single character.\n\
2297%S means print any object as an s-expression (using prin1).\n\
9db1775a 2298 The argument used for %d, %o, %x, %e, %f, %g or %c must be a number.\n\
52b14ac0 2299Use %% to put a single % into the output.")
35692fe0
JB
2300 (nargs, args)
2301 int nargs;
2302 register Lisp_Object *args;
2303{
2304 register int n; /* The number of the next arg to substitute */
e781c49e 2305 register int total; /* An estimate of the final length */
1f24f4fd 2306 char *buf, *p;
35692fe0 2307 register unsigned char *format, *end;
1f24f4fd
RS
2308 int length, nchars;
2309 /* Nonzero if the output should be a multibyte string,
2310 which is true if any of the inputs is one. */
2311 int multibyte = 0;
2312 unsigned char *this_format;
e781c49e 2313 int longest_format;
8d6179dc 2314 Lisp_Object val;
1f24f4fd 2315
35692fe0 2316 extern char *index ();
1f24f4fd 2317
35692fe0
JB
2318 /* It should not be necessary to GCPRO ARGS, because
2319 the caller in the interpreter should take care of that. */
2320
e781c49e
RS
2321 /* Try to determine whether the result should be multibyte.
2322 This is not always right; sometimes the result needs to be multibyte
2323 because of an object that we will pass through prin1,
2324 and in that case, we won't know it here. */
1f24f4fd
RS
2325 for (n = 0; n < nargs; n++)
2326 if (STRINGP (args[n]) && STRING_MULTIBYTE (args[n]))
2327 multibyte = 1;
2328
35692fe0 2329 CHECK_STRING (args[0], 0);
e781c49e
RS
2330
2331 /* If we start out planning a unibyte result,
2332 and later find it has to be multibyte, we jump back to retry. */
2333 retry:
2334
35692fe0 2335 format = XSTRING (args[0])->data;
dc3620af 2336 end = format + STRING_BYTES (XSTRING (args[0]));
e781c49e 2337 longest_format = 0;
1f24f4fd
RS
2338
2339 /* Make room in result for all the non-%-codes in the control string. */
e781c49e 2340 total = 5 + CONVERTED_BYTE_SIZE (multibyte, args[0]);
1f24f4fd
RS
2341
2342 /* Add to TOTAL enough space to hold the converted arguments. */
35692fe0
JB
2343
2344 n = 0;
2345 while (format != end)
2346 if (*format++ == '%')
2347 {
1f24f4fd
RS
2348 int minlen, thissize = 0;
2349 unsigned char *this_format_start = format - 1;
35692fe0
JB
2350
2351 /* Process a numeric arg and skip it. */
2352 minlen = atoi (format);
537dfb13
RS
2353 if (minlen < 0)
2354 minlen = - minlen;
2355
35692fe0
JB
2356 while ((*format >= '0' && *format <= '9')
2357 || *format == '-' || *format == ' ' || *format == '.')
2358 format++;
2359
1f24f4fd
RS
2360 if (format - this_format_start + 1 > longest_format)
2361 longest_format = format - this_format_start + 1;
2362
35692fe0
JB
2363 if (*format == '%')
2364 format++;
2365 else if (++n >= nargs)
537dfb13 2366 error ("Not enough arguments for format string");
35692fe0
JB
2367 else if (*format == 'S')
2368 {
2369 /* For `S', prin1 the argument and then treat like a string. */
2370 register Lisp_Object tem;
2371 tem = Fprin1_to_string (args[n], Qnil);
e781c49e
RS
2372 if (STRING_MULTIBYTE (tem) && ! multibyte)
2373 {
2374 multibyte = 1;
2375 goto retry;
2376 }
35692fe0
JB
2377 args[n] = tem;
2378 goto string;
2379 }
ae683129 2380 else if (SYMBOLP (args[n]))
35692fe0 2381 {
d2fd0445 2382 XSETSTRING (args[n], XSYMBOL (args[n])->name);
7df74da6
RS
2383 if (STRING_MULTIBYTE (args[n]) && ! multibyte)
2384 {
2385 multibyte = 1;
2386 goto retry;
2387 }
35692fe0
JB
2388 goto string;
2389 }
ae683129 2390 else if (STRINGP (args[n]))
35692fe0
JB
2391 {
2392 string:
b22e7ecc
KH
2393 if (*format != 's' && *format != 'S')
2394 error ("format specifier doesn't match argument type");
1f24f4fd 2395 thissize = CONVERTED_BYTE_SIZE (multibyte, args[n]);
35692fe0
JB
2396 }
2397 /* Would get MPV otherwise, since Lisp_Int's `point' to low memory. */
ae683129 2398 else if (INTEGERP (args[n]) && *format != 's')
35692fe0 2399 {
4746118a 2400#ifdef LISP_FLOAT_TYPE
eb8c3be9 2401 /* The following loop assumes the Lisp type indicates
35692fe0
JB
2402 the proper way to pass the argument.
2403 So make sure we have a flonum if the argument should
2404 be a double. */
2405 if (*format == 'e' || *format == 'f' || *format == 'g')
2406 args[n] = Ffloat (args[n]);
4746118a 2407#endif
f49a2d74 2408 thissize = 30;
25c9e7fb
RS
2409 if (*format == 'c'
2410 && (! SINGLE_BYTE_CHAR_P (XINT (args[n]))
2411 || XINT (args[n]) == 0))
f49a2d74
KH
2412 {
2413 if (! multibyte)
2414 {
2415 multibyte = 1;
2416 goto retry;
2417 }
2418 args[n] = Fchar_to_string (args[n]);
dc3620af 2419 thissize = STRING_BYTES (XSTRING (args[n]));
f49a2d74 2420 }
35692fe0 2421 }
4746118a 2422#ifdef LISP_FLOAT_TYPE
ae683129 2423 else if (FLOATP (args[n]) && *format != 's')
35692fe0
JB
2424 {
2425 if (! (*format == 'e' || *format == 'f' || *format == 'g'))
247422ce 2426 args[n] = Ftruncate (args[n], Qnil);
1f24f4fd 2427 thissize = 60;
35692fe0 2428 }
4746118a 2429#endif
35692fe0
JB
2430 else
2431 {
2432 /* Anything but a string, convert to a string using princ. */
2433 register Lisp_Object tem;
2434 tem = Fprin1_to_string (args[n], Qt);
a4e91443 2435 if (STRING_MULTIBYTE (tem) & ! multibyte)
e781c49e
RS
2436 {
2437 multibyte = 1;
2438 goto retry;
2439 }
35692fe0
JB
2440 args[n] = tem;
2441 goto string;
2442 }
1f24f4fd
RS
2443
2444 if (thissize < minlen)
2445 thissize = minlen;
2446
2447 total += thissize + 4;
35692fe0
JB
2448 }
2449
e781c49e
RS
2450 /* Now we can no longer jump to retry.
2451 TOTAL and LONGEST_FORMAT are known for certain. */
2452
1f24f4fd 2453 this_format = (unsigned char *) alloca (longest_format + 1);
50aa2f90 2454
1f24f4fd
RS
2455 /* Allocate the space for the result.
2456 Note that TOTAL is an overestimate. */
2457 if (total < 1000)
2458 buf = (unsigned char *) alloca (total + 1);
2459 else
2460 buf = (unsigned char *) xmalloc (total + 1);
35692fe0 2461
1f24f4fd
RS
2462 p = buf;
2463 nchars = 0;
2464 n = 0;
35692fe0 2465
1f24f4fd
RS
2466 /* Scan the format and store result in BUF. */
2467 format = XSTRING (args[0])->data;
2468 while (format != end)
2469 {
2470 if (*format == '%')
2471 {
2472 int minlen;
25c9e7fb 2473 int negative = 0;
1f24f4fd 2474 unsigned char *this_format_start = format;
35692fe0 2475
1f24f4fd 2476 format++;
fb893977 2477
1f24f4fd
RS
2478 /* Process a numeric arg and skip it. */
2479 minlen = atoi (format);
2480 if (minlen < 0)
25c9e7fb 2481 minlen = - minlen, negative = 1;
35692fe0 2482
1f24f4fd
RS
2483 while ((*format >= '0' && *format <= '9')
2484 || *format == '-' || *format == ' ' || *format == '.')
2485 format++;
35692fe0 2486
1f24f4fd
RS
2487 if (*format++ == '%')
2488 {
2489 *p++ = '%';
2490 nchars++;
2491 continue;
2492 }
2493
2494 ++n;
2495
2496 if (STRINGP (args[n]))
2497 {
25c9e7fb
RS
2498 int padding, nbytes;
2499 int width = strwidth (XSTRING (args[n])->data,
dc3620af 2500 STRING_BYTES (XSTRING (args[n])));
25c9e7fb
RS
2501
2502 /* If spec requires it, pad on right with spaces. */
2503 padding = minlen - width;
2504 if (! negative)
2505 while (padding-- > 0)
2506 {
2507 *p++ = ' ';
2508 nchars++;
2509 }
1f24f4fd
RS
2510
2511 nbytes = copy_text (XSTRING (args[n])->data, p,
dc3620af 2512 STRING_BYTES (XSTRING (args[n])),
1f24f4fd
RS
2513 STRING_MULTIBYTE (args[n]), multibyte);
2514 p += nbytes;
2515 nchars += XSTRING (args[n])->size;
2516
25c9e7fb
RS
2517 if (negative)
2518 while (padding-- > 0)
2519 {
2520 *p++ = ' ';
2521 nchars++;
2522 }
1f24f4fd
RS
2523 }
2524 else if (INTEGERP (args[n]) || FLOATP (args[n]))
2525 {
2526 int this_nchars;
2527
2528 bcopy (this_format_start, this_format,
2529 format - this_format_start);
2530 this_format[format - this_format_start] = 0;
2531
d0183d38
RS
2532 if (INTEGERP (args[n]))
2533 sprintf (p, this_format, XINT (args[n]));
2534 else
2535 sprintf (p, this_format, XFLOAT (args[n])->data);
1f24f4fd
RS
2536
2537 this_nchars = strlen (p);
2538 p += this_nchars;
2539 nchars += this_nchars;
2540 }
2541 }
7df74da6
RS
2542 else if (STRING_MULTIBYTE (args[0]))
2543 {
2544 /* Copy a whole multibyte character. */
2545 *p++ = *format++;
2546 while (! CHAR_HEAD_P (*format)) *p++ = *format++;
2547 nchars++;
2548 }
2549 else if (multibyte)
1f24f4fd
RS
2550 {
2551 /* Convert a single-byte character to multibyte. */
2552 int len = copy_text (format, p, 1, 0, 1);
2553
2554 p += len;
2555 format++;
2556 nchars++;
2557 }
2558 else
2559 *p++ = *format++, nchars++;
2560 }
2561
5f75e666 2562 val = make_specified_string (buf, nchars, p - buf, multibyte);
8d6179dc 2563
1f24f4fd
RS
2564 /* If we allocated BUF with malloc, free it too. */
2565 if (total >= 1000)
2566 xfree (buf);
35692fe0 2567
8d6179dc 2568 return val;
35692fe0
JB
2569}
2570
2571/* VARARGS 1 */
2572Lisp_Object
2573#ifdef NO_ARG_ARRAY
2574format1 (string1, arg0, arg1, arg2, arg3, arg4)
679e18b1 2575 EMACS_INT arg0, arg1, arg2, arg3, arg4;
35692fe0
JB
2576#else
2577format1 (string1)
2578#endif
2579 char *string1;
2580{
2581 char buf[100];
2582#ifdef NO_ARG_ARRAY
679e18b1 2583 EMACS_INT args[5];
35692fe0
JB
2584 args[0] = arg0;
2585 args[1] = arg1;
2586 args[2] = arg2;
2587 args[3] = arg3;
2588 args[4] = arg4;
e3670faa 2589 doprnt (buf, sizeof buf, string1, (char *)0, 5, (char **) args);
35692fe0 2590#else
ea4d2909 2591 doprnt (buf, sizeof buf, string1, (char *)0, 5, &string1 + 1);
35692fe0
JB
2592#endif
2593 return build_string (buf);
2594}
2595\f
2596DEFUN ("char-equal", Fchar_equal, Schar_equal, 2, 2, 0,
2597 "Return t if two characters match, optionally ignoring case.\n\
2598Both arguments must be characters (i.e. integers).\n\
2599Case is ignored if `case-fold-search' is non-nil in the current buffer.")
2600 (c1, c2)
2601 register Lisp_Object c1, c2;
2602{
1b5d98bb 2603 int i1, i2;
35692fe0
JB
2604 CHECK_NUMBER (c1, 0);
2605 CHECK_NUMBER (c2, 1);
2606
1b5d98bb 2607 if (XINT (c1) == XINT (c2))
35692fe0 2608 return Qt;
1b5d98bb
RS
2609 if (NILP (current_buffer->case_fold_search))
2610 return Qnil;
2611
2612 /* Do these in separate statements,
2613 then compare the variables.
2614 because of the way DOWNCASE uses temp variables. */
2615 i1 = DOWNCASE (XFASTINT (c1));
2616 i2 = DOWNCASE (XFASTINT (c2));
2617 return (i1 == i2 ? Qt : Qnil);
35692fe0 2618}
b229b8d1
RS
2619\f
2620/* Transpose the markers in two regions of the current buffer, and
2621 adjust the ones between them if necessary (i.e.: if the regions
2622 differ in size).
2623
ec1c14f6
RS
2624 START1, END1 are the character positions of the first region.
2625 START1_BYTE, END1_BYTE are the byte positions.
2626 START2, END2 are the character positions of the second region.
2627 START2_BYTE, END2_BYTE are the byte positions.
2628
b229b8d1
RS
2629 Traverses the entire marker list of the buffer to do so, adding an
2630 appropriate amount to some, subtracting from some, and leaving the
2631 rest untouched. Most of this is copied from adjust_markers in insdel.c.
2632
ec1c14f6 2633 It's the caller's job to ensure that START1 <= END1 <= START2 <= END2. */
b229b8d1
RS
2634
2635void
ec1c14f6
RS
2636transpose_markers (start1, end1, start2, end2,
2637 start1_byte, end1_byte, start2_byte, end2_byte)
b229b8d1 2638 register int start1, end1, start2, end2;
ec1c14f6 2639 register int start1_byte, end1_byte, start2_byte, end2_byte;
b229b8d1 2640{
ec1c14f6 2641 register int amt1, amt1_byte, amt2, amt2_byte, diff, diff_byte, mpos;
b229b8d1 2642 register Lisp_Object marker;
b229b8d1 2643
03240d11 2644 /* Update point as if it were a marker. */
8de1d5f0
KH
2645 if (PT < start1)
2646 ;
2647 else if (PT < end1)
ec1c14f6
RS
2648 TEMP_SET_PT_BOTH (PT + (end2 - end1),
2649 PT_BYTE + (end2_byte - end1_byte));
8de1d5f0 2650 else if (PT < start2)
ec1c14f6
RS
2651 TEMP_SET_PT_BOTH (PT + (end2 - start2) - (end1 - start1),
2652 (PT_BYTE + (end2_byte - start2_byte)
2653 - (end1_byte - start1_byte)));
8de1d5f0 2654 else if (PT < end2)
ec1c14f6
RS
2655 TEMP_SET_PT_BOTH (PT - (start2 - start1),
2656 PT_BYTE - (start2_byte - start1_byte));
8de1d5f0 2657
03240d11
KH
2658 /* We used to adjust the endpoints here to account for the gap, but that
2659 isn't good enough. Even if we assume the caller has tried to move the
2660 gap out of our way, it might still be at start1 exactly, for example;
2661 and that places it `inside' the interval, for our purposes. The amount
2662 of adjustment is nontrivial if there's a `denormalized' marker whose
2663 position is between GPT and GPT + GAP_SIZE, so it's simpler to leave
2664 the dirty work to Fmarker_position, below. */
b229b8d1
RS
2665
2666 /* The difference between the region's lengths */
2667 diff = (end2 - start2) - (end1 - start1);
ec1c14f6 2668 diff_byte = (end2_byte - start2_byte) - (end1_byte - start1_byte);
b229b8d1
RS
2669
2670 /* For shifting each marker in a region by the length of the other
ec1c14f6 2671 region plus the distance between the regions. */
b229b8d1
RS
2672 amt1 = (end2 - start2) + (start2 - end1);
2673 amt2 = (end1 - start1) + (start2 - end1);
ec1c14f6
RS
2674 amt1_byte = (end2_byte - start2_byte) + (start2_byte - end1_byte);
2675 amt2_byte = (end1_byte - start1_byte) + (start2_byte - end1_byte);
b229b8d1 2676
1e158d25 2677 for (marker = BUF_MARKERS (current_buffer); !NILP (marker);
03240d11 2678 marker = XMARKER (marker)->chain)
b229b8d1 2679 {
ec1c14f6
RS
2680 mpos = marker_byte_position (marker);
2681 if (mpos >= start1_byte && mpos < end2_byte)
2682 {
2683 if (mpos < end1_byte)
2684 mpos += amt1_byte;
2685 else if (mpos < start2_byte)
2686 mpos += diff_byte;
2687 else
2688 mpos -= amt2_byte;
f3e1f752 2689 XMARKER (marker)->bytepos = mpos;
ec1c14f6
RS
2690 }
2691 mpos = XMARKER (marker)->charpos;
03240d11
KH
2692 if (mpos >= start1 && mpos < end2)
2693 {
2694 if (mpos < end1)
2695 mpos += amt1;
2696 else if (mpos < start2)
2697 mpos += diff;
2698 else
2699 mpos -= amt2;
03240d11 2700 }
ec1c14f6 2701 XMARKER (marker)->charpos = mpos;
b229b8d1
RS
2702 }
2703}
2704
2705DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0,
2706 "Transpose region START1 to END1 with START2 to END2.\n\
2707The regions may not be overlapping, because the size of the buffer is\n\
2708never changed in a transposition.\n\
2709\n\
ec1c14f6 2710Optional fifth arg LEAVE_MARKERS, if non-nil, means don't update\n\
b229b8d1
RS
2711any markers that happen to be located in the regions.\n\
2712\n\
2713Transposing beyond buffer boundaries is an error.")
2714 (startr1, endr1, startr2, endr2, leave_markers)
2715 Lisp_Object startr1, endr1, startr2, endr2, leave_markers;
2716{
ec1c14f6
RS
2717 register int start1, end1, start2, end2;
2718 int start1_byte, start2_byte, len1_byte, len2_byte;
2719 int gap, len1, len_mid, len2;
3c6bc7d0 2720 unsigned char *start1_addr, *start2_addr, *temp;
dc3620af
RS
2721 int combined_before_bytes_1, combined_after_bytes_1;
2722 int combined_before_bytes_2, combined_after_bytes_2;
2723 struct gcpro gcpro1, gcpro2;
b229b8d1
RS
2724
2725#ifdef USE_TEXT_PROPERTIES
2726 INTERVAL cur_intv, tmp_interval1, tmp_interval_mid, tmp_interval2;
1e158d25 2727 cur_intv = BUF_INTERVALS (current_buffer);
b229b8d1
RS
2728#endif /* USE_TEXT_PROPERTIES */
2729
2730 validate_region (&startr1, &endr1);
2731 validate_region (&startr2, &endr2);
2732
2733 start1 = XFASTINT (startr1);
2734 end1 = XFASTINT (endr1);
2735 start2 = XFASTINT (startr2);
2736 end2 = XFASTINT (endr2);
2737 gap = GPT;
2738
2739 /* Swap the regions if they're reversed. */
2740 if (start2 < end1)
2741 {
2742 register int glumph = start1;
2743 start1 = start2;
2744 start2 = glumph;
2745 glumph = end1;
2746 end1 = end2;
2747 end2 = glumph;
2748 }
2749
b229b8d1
RS
2750 len1 = end1 - start1;
2751 len2 = end2 - start2;
2752
2753 if (start2 < end1)
dc3620af 2754 error ("Transposed regions overlap");
b229b8d1 2755 else if (start1 == end1 || start2 == end2)
dc3620af 2756 error ("Transposed region has length 0");
b229b8d1
RS
2757
2758 /* The possibilities are:
2759 1. Adjacent (contiguous) regions, or separate but equal regions
2760 (no, really equal, in this case!), or
2761 2. Separate regions of unequal size.
2762
2763 The worst case is usually No. 2. It means that (aside from
2764 potential need for getting the gap out of the way), there also
2765 needs to be a shifting of the text between the two regions. So
2766 if they are spread far apart, we are that much slower... sigh. */
2767
2768 /* It must be pointed out that the really studly thing to do would
2769 be not to move the gap at all, but to leave it in place and work
2770 around it if necessary. This would be extremely efficient,
2771 especially considering that people are likely to do
2772 transpositions near where they are working interactively, which
2773 is exactly where the gap would be found. However, such code
2774 would be much harder to write and to read. So, if you are
2775 reading this comment and are feeling squirrely, by all means have
2776 a go! I just didn't feel like doing it, so I will simply move
2777 the gap the minimum distance to get it out of the way, and then
2778 deal with an unbroken array. */
3c6bc7d0
RS
2779
2780 /* Make sure the gap won't interfere, by moving it out of the text
2781 we will operate on. */
2782 if (start1 < gap && gap < end2)
2783 {
2784 if (gap - start1 < end2 - gap)
2785 move_gap (start1);
2786 else
2787 move_gap (end2);
2788 }
ec1c14f6
RS
2789
2790 start1_byte = CHAR_TO_BYTE (start1);
2791 start2_byte = CHAR_TO_BYTE (start2);
2792 len1_byte = CHAR_TO_BYTE (end1) - start1_byte;
2793 len2_byte = CHAR_TO_BYTE (end2) - start2_byte;
dc3620af
RS
2794
2795 if (end1 == start2)
2796 {
2797 combined_before_bytes_2
2798 = count_combining_before (BYTE_POS_ADDR (start2_byte),
2799 len2_byte, start1, start1_byte);
2800 combined_before_bytes_1
2801 = count_combining_before (BYTE_POS_ADDR (start1_byte),
2802 len1_byte, end2, start2_byte + len2_byte);
2803 combined_after_bytes_1
2804 = count_combining_after (BYTE_POS_ADDR (start1_byte),
2805 len1_byte, end2, start2_byte + len2_byte);
2806 combined_after_bytes_2 = 0;
2807 }
2808 else
2809 {
2810 combined_before_bytes_2
2811 = count_combining_before (BYTE_POS_ADDR (start2_byte),
2812 len2_byte, start1, start1_byte);
2813 combined_before_bytes_1
2814 = count_combining_before (BYTE_POS_ADDR (start1_byte),
2815 len1_byte, start2, start2_byte);
2816 combined_after_bytes_2
2817 = count_combining_after (BYTE_POS_ADDR (start2_byte),
2818 len2_byte, end1, start1_byte + len1_byte);
2819 combined_after_bytes_1
2820 = count_combining_after (BYTE_POS_ADDR (start1_byte),
2821 len1_byte, end2, start2_byte + len2_byte);
2822 }
2823
2824 /* If any combining is going to happen, do this the stupid way,
2825 because replace handles combining properly. */
2826 if (combined_before_bytes_1 || combined_before_bytes_2
2827 || combined_after_bytes_1 || combined_after_bytes_2)
2828 {
2829 Lisp_Object text1, text2;
2830
2831 text1 = text2 = Qnil;
2832 GCPRO2 (text1, text2);
2833
2834 text1 = make_buffer_string_both (start1, start1_byte,
2835 end1, start1_byte + len1_byte, 1);
2836 text2 = make_buffer_string_both (start2, start2_byte,
2837 end2, start2_byte + len2_byte, 1);
2838
2839 transpose_markers (start1, end1, start2, end2,
2840 start1_byte, start1_byte + len1_byte,
2841 start2_byte, start2_byte + len2_byte);
2842
8daf7106
AS
2843 replace_range (start2, end2, text1, 1, 0, 1);
2844 replace_range (start1, end1, text2, 1, 0, 1);
dc3620af
RS
2845
2846 UNGCPRO;
2847 return Qnil;
2848 }
b229b8d1
RS
2849
2850 /* Hmmm... how about checking to see if the gap is large
2851 enough to use as the temporary storage? That would avoid an
2852 allocation... interesting. Later, don't fool with it now. */
2853
2854 /* Working without memmove, for portability (sigh), so must be
2855 careful of overlapping subsections of the array... */
2856
2857 if (end1 == start2) /* adjacent regions */
2858 {
b229b8d1
RS
2859 modify_region (current_buffer, start1, end2);
2860 record_change (start1, len1 + len2);
2861
2862#ifdef USE_TEXT_PROPERTIES
2863 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
2864 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
09dbcf71
RS
2865 Fset_text_properties (make_number (start1), make_number (end2),
2866 Qnil, Qnil);
b229b8d1
RS
2867#endif /* USE_TEXT_PROPERTIES */
2868
2869 /* First region smaller than second. */
ec1c14f6 2870 if (len1_byte < len2_byte)
b229b8d1 2871 {
3c6bc7d0
RS
2872 /* We use alloca only if it is small,
2873 because we want to avoid stack overflow. */
ec1c14f6
RS
2874 if (len2_byte > 20000)
2875 temp = (unsigned char *) xmalloc (len2_byte);
3c6bc7d0 2876 else
ec1c14f6 2877 temp = (unsigned char *) alloca (len2_byte);
03240d11
KH
2878
2879 /* Don't precompute these addresses. We have to compute them
2880 at the last minute, because the relocating allocator might
2881 have moved the buffer around during the xmalloc. */
ec1c14f6
RS
2882 start1_addr = BUF_CHAR_ADDRESS (current_buffer, start1_byte);
2883 start2_addr = BUF_CHAR_ADDRESS (current_buffer, start2_byte);
03240d11 2884
ec1c14f6
RS
2885 bcopy (start2_addr, temp, len2_byte);
2886 bcopy (start1_addr, start1_addr + len2_byte, len1_byte);
2887 bcopy (temp, start1_addr, len2_byte);
2888 if (len2_byte > 20000)
3c6bc7d0 2889 free (temp);
b229b8d1
RS
2890 }
2891 else
2892 /* First region not smaller than second. */
2893 {
ec1c14f6
RS
2894 if (len1_byte > 20000)
2895 temp = (unsigned char *) xmalloc (len1_byte);
3c6bc7d0 2896 else
ec1c14f6
RS
2897 temp = (unsigned char *) alloca (len1_byte);
2898 start1_addr = BUF_CHAR_ADDRESS (current_buffer, start1_byte);
2899 start2_addr = BUF_CHAR_ADDRESS (current_buffer, start2_byte);
2900 bcopy (start1_addr, temp, len1_byte);
2901 bcopy (start2_addr, start1_addr, len2_byte);
2902 bcopy (temp, start1_addr + len2_byte, len1_byte);
2903 if (len1_byte > 20000)
3c6bc7d0 2904 free (temp);
b229b8d1
RS
2905 }
2906#ifdef USE_TEXT_PROPERTIES
2907 graft_intervals_into_buffer (tmp_interval1, start1 + len2,
2908 len1, current_buffer, 0);
2909 graft_intervals_into_buffer (tmp_interval2, start1,
2910 len2, current_buffer, 0);
2911#endif /* USE_TEXT_PROPERTIES */
2912 }
2913 /* Non-adjacent regions, because end1 != start2, bleagh... */
2914 else
2915 {
ec1c14f6
RS
2916 len_mid = start2_byte - (start1_byte + len1_byte);
2917
2918 if (len1_byte == len2_byte)
b229b8d1
RS
2919 /* Regions are same size, though, how nice. */
2920 {
2921 modify_region (current_buffer, start1, end1);
2922 modify_region (current_buffer, start2, end2);
2923 record_change (start1, len1);
2924 record_change (start2, len2);
2925#ifdef USE_TEXT_PROPERTIES
2926 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
2927 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
09dbcf71
RS
2928 Fset_text_properties (make_number (start1), make_number (end1),
2929 Qnil, Qnil);
2930 Fset_text_properties (make_number (start2), make_number (end2),
2931 Qnil, Qnil);
b229b8d1
RS
2932#endif /* USE_TEXT_PROPERTIES */
2933
ec1c14f6
RS
2934 if (len1_byte > 20000)
2935 temp = (unsigned char *) xmalloc (len1_byte);
3c6bc7d0 2936 else
ec1c14f6
RS
2937 temp = (unsigned char *) alloca (len1_byte);
2938 start1_addr = BUF_CHAR_ADDRESS (current_buffer, start1_byte);
2939 start2_addr = BUF_CHAR_ADDRESS (current_buffer, start2_byte);
2940 bcopy (start1_addr, temp, len1_byte);
2941 bcopy (start2_addr, start1_addr, len2_byte);
2942 bcopy (temp, start2_addr, len1_byte);
2943 if (len1_byte > 20000)
3c6bc7d0 2944 free (temp);
b229b8d1
RS
2945#ifdef USE_TEXT_PROPERTIES
2946 graft_intervals_into_buffer (tmp_interval1, start2,
2947 len1, current_buffer, 0);
2948 graft_intervals_into_buffer (tmp_interval2, start1,
2949 len2, current_buffer, 0);
2950#endif /* USE_TEXT_PROPERTIES */
2951 }
2952
ec1c14f6 2953 else if (len1_byte < len2_byte) /* Second region larger than first */
b229b8d1
RS
2954 /* Non-adjacent & unequal size, area between must also be shifted. */
2955 {
b229b8d1
RS
2956 modify_region (current_buffer, start1, end2);
2957 record_change (start1, (end2 - start1));
2958#ifdef USE_TEXT_PROPERTIES
2959 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
2960 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
2961 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
09dbcf71
RS
2962 Fset_text_properties (make_number (start1), make_number (end2),
2963 Qnil, Qnil);
b229b8d1
RS
2964#endif /* USE_TEXT_PROPERTIES */
2965
3c6bc7d0 2966 /* holds region 2 */
ec1c14f6
RS
2967 if (len2_byte > 20000)
2968 temp = (unsigned char *) xmalloc (len2_byte);
3c6bc7d0 2969 else
ec1c14f6
RS
2970 temp = (unsigned char *) alloca (len2_byte);
2971 start1_addr = BUF_CHAR_ADDRESS (current_buffer, start1_byte);
2972 start2_addr = BUF_CHAR_ADDRESS (current_buffer, start2_byte);
2973 bcopy (start2_addr, temp, len2_byte);
2974 bcopy (start1_addr, start1_addr + len_mid + len2_byte, len1_byte);
2975 safe_bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
2976 bcopy (temp, start1_addr, len2_byte);
2977 if (len2_byte > 20000)
3c6bc7d0 2978 free (temp);
b229b8d1
RS
2979#ifdef USE_TEXT_PROPERTIES
2980 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
2981 len1, current_buffer, 0);
2982 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
2983 len_mid, current_buffer, 0);
2984 graft_intervals_into_buffer (tmp_interval2, start1,
2985 len2, current_buffer, 0);
2986#endif /* USE_TEXT_PROPERTIES */
2987 }
2988 else
2989 /* Second region smaller than first. */
2990 {
b229b8d1
RS
2991 record_change (start1, (end2 - start1));
2992 modify_region (current_buffer, start1, end2);
2993
2994#ifdef USE_TEXT_PROPERTIES
2995 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
2996 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
2997 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
09dbcf71
RS
2998 Fset_text_properties (make_number (start1), make_number (end2),
2999 Qnil, Qnil);
b229b8d1
RS
3000#endif /* USE_TEXT_PROPERTIES */
3001
3c6bc7d0 3002 /* holds region 1 */
ec1c14f6
RS
3003 if (len1_byte > 20000)
3004 temp = (unsigned char *) xmalloc (len1_byte);
3c6bc7d0 3005 else
ec1c14f6
RS
3006 temp = (unsigned char *) alloca (len1_byte);
3007 start1_addr = BUF_CHAR_ADDRESS (current_buffer, start1_byte);
3008 start2_addr = BUF_CHAR_ADDRESS (current_buffer, start2_byte);
3009 bcopy (start1_addr, temp, len1_byte);
3010 bcopy (start2_addr, start1_addr, len2_byte);
3011 bcopy (start1_addr + len1_byte, start1_addr + len2_byte, len_mid);
3012 bcopy (temp, start1_addr + len2_byte + len_mid, len1_byte);
3013 if (len1_byte > 20000)
3c6bc7d0 3014 free (temp);
b229b8d1
RS
3015#ifdef USE_TEXT_PROPERTIES
3016 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
3017 len1, current_buffer, 0);
3018 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
3019 len_mid, current_buffer, 0);
3020 graft_intervals_into_buffer (tmp_interval2, start1,
3021 len2, current_buffer, 0);
3022#endif /* USE_TEXT_PROPERTIES */
3023 }
3024 }
3025
ec1c14f6
RS
3026 /* When doing multiple transpositions, it might be nice
3027 to optimize this. Perhaps the markers in any one buffer
3028 should be organized in some sorted data tree. */
b229b8d1 3029 if (NILP (leave_markers))
8de1d5f0 3030 {
ec1c14f6
RS
3031 transpose_markers (start1, end1, start2, end2,
3032 start1_byte, start1_byte + len1_byte,
3033 start2_byte, start2_byte + len2_byte);
8de1d5f0
KH
3034 fix_overlays_in_range (start1, end2);
3035 }
b229b8d1
RS
3036
3037 return Qnil;
3038}
35692fe0 3039
35692fe0
JB
3040\f
3041void
3042syms_of_editfns ()
3043{
260e2e2a
KH
3044 environbuf = 0;
3045
3046 Qbuffer_access_fontify_functions
3047 = intern ("buffer-access-fontify-functions");
3048 staticpro (&Qbuffer_access_fontify_functions);
3049
3050 DEFVAR_LISP ("buffer-access-fontify-functions",
3051 &Vbuffer_access_fontify_functions,
3052 "List of functions called by `buffer-substring' to fontify if necessary.\n\
3053Each function is called with two arguments which specify the range\n\
3054of the buffer being accessed.");
3055 Vbuffer_access_fontify_functions = Qnil;
3056
af209db8
RS
3057 {
3058 Lisp_Object obuf;
3059 extern Lisp_Object Vprin1_to_string_buffer;
3060 obuf = Fcurrent_buffer ();
3061 /* Do this here, because init_buffer_once is too early--it won't work. */
3062 Fset_buffer (Vprin1_to_string_buffer);
3063 /* Make sure buffer-access-fontify-functions is nil in this buffer. */
3064 Fset (Fmake_local_variable (intern ("buffer-access-fontify-functions")),
3065 Qnil);
3066 Fset_buffer (obuf);
3067 }
3068
0b6fd023 3069 DEFVAR_LISP ("buffer-access-fontified-property",
260e2e2a
KH
3070 &Vbuffer_access_fontified_property,
3071 "Property which (if non-nil) indicates text has been fontified.\n\
3072`buffer-substring' need not call the `buffer-access-fontify-functions'\n\
3073functions if all the text being accessed has this property.");
3074 Vbuffer_access_fontified_property = Qnil;
3075
f43754f6
KH
3076 DEFVAR_LISP ("system-name", &Vsystem_name,
3077 "The name of the machine Emacs is running on.");
3078
3079 DEFVAR_LISP ("user-full-name", &Vuser_full_name,
3080 "The full name of the user logged in.");
3081
35b34f72 3082 DEFVAR_LISP ("user-login-name", &Vuser_login_name,
f43754f6
KH
3083 "The user's name, taken from environment variables if possible.");
3084
35b34f72 3085 DEFVAR_LISP ("user-real-login-name", &Vuser_real_login_name,
f43754f6 3086 "The user's name, based upon the real uid only.");
35692fe0
JB
3087
3088 defsubr (&Schar_equal);
3089 defsubr (&Sgoto_char);
3090 defsubr (&Sstring_to_char);
3091 defsubr (&Schar_to_string);
3092 defsubr (&Sbuffer_substring);
260e2e2a 3093 defsubr (&Sbuffer_substring_no_properties);
35692fe0
JB
3094 defsubr (&Sbuffer_string);
3095
3096 defsubr (&Spoint_marker);
3097 defsubr (&Smark_marker);
3098 defsubr (&Spoint);
3099 defsubr (&Sregion_beginning);
3100 defsubr (&Sregion_end);
7df74da6
RS
3101
3102 defsubr (&Sline_beginning_position);
3103 defsubr (&Sline_end_position);
3104
35692fe0
JB
3105/* defsubr (&Smark); */
3106/* defsubr (&Sset_mark); */
3107 defsubr (&Ssave_excursion);
4bc8c7d2 3108 defsubr (&Ssave_current_buffer);
35692fe0
JB
3109
3110 defsubr (&Sbufsize);
3111 defsubr (&Spoint_max);
3112 defsubr (&Spoint_min);
3113 defsubr (&Spoint_min_marker);
3114 defsubr (&Spoint_max_marker);
c86212b9
RS
3115 defsubr (&Sgap_position);
3116 defsubr (&Sgap_size);
7df74da6 3117 defsubr (&Sposition_bytes);
c9ed721d 3118
35692fe0
JB
3119 defsubr (&Sbobp);
3120 defsubr (&Seobp);
3121 defsubr (&Sbolp);
3122 defsubr (&Seolp);
850a8179
JB
3123 defsubr (&Sfollowing_char);
3124 defsubr (&Sprevious_char);
35692fe0 3125 defsubr (&Schar_after);
fb8106e8 3126 defsubr (&Schar_before);
35692fe0
JB
3127 defsubr (&Sinsert);
3128 defsubr (&Sinsert_before_markers);
be91036a
RS
3129 defsubr (&Sinsert_and_inherit);
3130 defsubr (&Sinsert_and_inherit_before_markers);
35692fe0
JB
3131 defsubr (&Sinsert_char);
3132
3133 defsubr (&Suser_login_name);
3134 defsubr (&Suser_real_login_name);
3135 defsubr (&Suser_uid);
3136 defsubr (&Suser_real_uid);
3137 defsubr (&Suser_full_name);
7fd233b3 3138 defsubr (&Semacs_pid);
d940e0e4 3139 defsubr (&Scurrent_time);
a82d387c 3140 defsubr (&Sformat_time_string);
4691c06d 3141 defsubr (&Sdecode_time);
cce7b8a0 3142 defsubr (&Sencode_time);
35692fe0 3143 defsubr (&Scurrent_time_string);
c2662aea 3144 defsubr (&Scurrent_time_zone);
143cb9a9 3145 defsubr (&Sset_time_zone_rule);
35692fe0 3146 defsubr (&Ssystem_name);
35692fe0 3147 defsubr (&Smessage);
cacc3e2c
RS
3148 defsubr (&Smessage_box);
3149 defsubr (&Smessage_or_box);
b14dda8a 3150 defsubr (&Scurrent_message);
35692fe0 3151 defsubr (&Sformat);
35692fe0
JB
3152
3153 defsubr (&Sinsert_buffer_substring);
e9cf2084 3154 defsubr (&Scompare_buffer_substrings);
35692fe0
JB
3155 defsubr (&Ssubst_char_in_region);
3156 defsubr (&Stranslate_region);
3157 defsubr (&Sdelete_region);
3158 defsubr (&Swiden);
3159 defsubr (&Snarrow_to_region);
3160 defsubr (&Ssave_restriction);
b229b8d1 3161 defsubr (&Stranspose_regions);
35692fe0 3162}