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