XEmacs 21.2.25 "Hephaestus".
[chise/xemacs-chise.git.1] / src / editfns.c
1 /* Lisp functions pertaining to editing.
2    Copyright (C) 1985-1987, 1989, 1992-1995 Free Software Foundation, Inc.
3    Copyright (C) 1995 Tinker Systems and INS Engineering Corp.
4    Copyright (C) 1996 Ben Wing.
5
6 This file is part of XEmacs.
7
8 XEmacs is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
11 later version.
12
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with XEmacs; see the file COPYING.  If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 /* Synched up with: Mule 2.0, FSF 19.30. */
24
25 /* This file has been Mule-ized. */
26
27 /* Hacked on for Mule by Ben Wing, December 1994. */
28
29 #include <config.h>
30 #include "lisp.h"
31 #ifdef HAVE_UNISTD_H
32 #include <unistd.h>
33 #endif
34
35 #include "buffer.h"
36 #include "commands.h"
37 #include "events.h"             /* for EVENTP */
38 #include "extents.h"
39 #include "frame.h"
40 #include "insdel.h"
41 #include "window.h"
42 #include "chartab.h"
43 #include "line-number.h"
44
45 #include "systime.h"
46 #include "sysdep.h"
47 #include "syspwd.h"
48 #include "sysfile.h"                    /* for getcwd */
49
50 /* Some static data, and a function to initialize it for each run */
51
52 Lisp_Object Vsystem_name;       /* #### - I don't see why this should be */
53                                 /* static, either...  --Stig */
54 #if 0                           /* XEmacs - this is now dynamic */
55                                 /* if at some point it's deemed desirable to
56                                    use lisp variables here, then they can be
57                                    initialized to nil and then set to their
58                                    real values upon the first call to the
59                                    functions that generate them. --stig */
60 Lisp_Object Vuser_real_login_name; /* login name of current user ID */
61 Lisp_Object Vuser_login_name;   /* user name from LOGNAME or USER.  */
62 #endif
63
64 /* It's useful to be able to set this as user customization, so we'll
65    keep it. */
66 Lisp_Object Vuser_full_name;
67 EXFUN (Fuser_full_name, 1);
68
69 Lisp_Object Qformat;
70
71 Lisp_Object Qpoint, Qmark, Qregion_beginning, Qregion_end;
72
73 Lisp_Object Quser_files_and_directories;
74
75 /* This holds the value of `environ' produced by the previous
76    call to Fset_time_zone_rule, or 0 if Fset_time_zone_rule
77    has never been called.  */
78 static char **environbuf;
79
80 void
81 init_editfns (void)
82 {
83 /* Only used in removed code below. */
84   char *p;
85
86   environbuf = 0;
87
88   /* Set up system_name even when dumping.  */
89   init_system_name ();
90
91 #ifndef CANNOT_DUMP
92   if (!initialized)
93     return;
94 #endif
95
96   if ((p = getenv ("NAME")))
97     /* I don't think it's the right thing to do the ampersand
98        modification on NAME.  Not that it matters anymore...  -hniksic */
99     Vuser_full_name = build_ext_string (p, FORMAT_OS);
100   else
101     Vuser_full_name = Fuser_full_name (Qnil);
102 }
103 \f
104 DEFUN ("char-to-string", Fchar_to_string, 1, 1, 0, /*
105 Convert arg CH to a one-character string containing that character.
106 */
107        (ch))
108 {
109   Bytecount len;
110   Bufbyte str[MAX_EMCHAR_LEN];
111
112   if (EVENTP (ch))
113     {
114       Lisp_Object ch2 = Fevent_to_character (ch, Qt, Qnil, Qnil);
115       if (NILP (ch2))
116         return
117           signal_simple_continuable_error
118             ("character has no ASCII equivalent:", Fcopy_event (ch, Qnil));
119       ch = ch2;
120     }
121
122   CHECK_CHAR_COERCE_INT (ch);
123
124   len = set_charptr_emchar (str, XCHAR (ch));
125   return make_string (str, len);
126 }
127
128 DEFUN ("string-to-char", Fstring_to_char, 1, 1, 0, /*
129 Convert arg STRING to a character, the first character of that string.
130 An empty string will return the constant `nil'.
131 */
132        (str))
133 {
134   struct Lisp_String *p;
135   CHECK_STRING (str);
136
137   p = XSTRING (str);
138   if (string_length (p) != 0)
139     return make_char (string_char (p, 0));
140   else
141     /* This used to return Qzero.  That is broken, broken, broken. */
142     /* It might be kinder to signal an error directly. -slb */
143     return Qnil;
144 }
145
146 \f
147 static Lisp_Object
148 buildmark (Bufpos val, Lisp_Object buffer)
149 {
150   Lisp_Object mark = Fmake_marker ();
151   Fset_marker (mark, make_int (val), buffer);
152   return mark;
153 }
154
155 DEFUN ("point", Fpoint, 0, 1, 0, /*
156 Return value of point, as an integer.
157 Beginning of buffer is position (point-min).
158 If BUFFER is nil, the current buffer is assumed.
159 */
160        (buffer))
161 {
162   struct buffer *b = decode_buffer (buffer, 1);
163   return make_int (BUF_PT (b));
164 }
165
166 DEFUN ("point-marker", Fpoint_marker, 0, 2, 0, /*
167 Return value of point, as a marker object.
168 This marker is a copy; you may modify it with reckless abandon.
169 If optional argument DONT-COPY-P is non-nil, then it returns the real
170 point-marker; modifying the position of this marker will move point.
171 It is illegal to change the buffer of it, or make it point nowhere.
172 If BUFFER is nil, the current buffer is assumed.
173 */
174        (dont_copy_p, buffer))
175 {
176   struct buffer *b = decode_buffer (buffer, 1);
177   if (NILP (dont_copy_p))
178     return Fcopy_marker (b->point_marker, Qnil);
179   else
180     return b->point_marker;
181 }
182
183 /* The following two functions end up being identical but it's
184    cleaner to declare them separately. */
185
186 Bufpos
187 bufpos_clip_to_bounds (Bufpos lower, Bufpos num, Bufpos upper)
188 {
189   return (num < lower ? lower :
190           num > upper ? upper :
191           num);
192 }
193
194 Bytind
195 bytind_clip_to_bounds (Bytind lower, Bytind num, Bytind upper)
196 {
197   return (num < lower ? lower :
198           num > upper ? upper :
199           num);
200 }
201
202 /*
203  * Chuck says:
204  * There is no absolute way to determine if goto-char is the function
205  * being run.  this-command doesn't work because it is often eval'd
206  * and this-command ends up set to eval-expression.  So this flag gets
207  * added for now.
208  *
209  * Jamie thinks he's wrong, but we'll leave this in for now.
210  */
211 int atomic_extent_goto_char_p;
212
213 DEFUN ("goto-char", Fgoto_char, 1, 2, "NGoto char: ", /*
214 Set point to POSITION, a number or marker.
215 Beginning of buffer is position (point-min), end is (point-max).
216 If BUFFER is nil, the current buffer is assumed.
217 Return value of POSITION, as an integer.
218 */
219        (position, buffer))
220 {
221   struct buffer *b = decode_buffer (buffer, 1);
222   Bufpos n = get_buffer_pos_char (b, position, GB_COERCE_RANGE);
223   BUF_SET_PT (b, n);
224   atomic_extent_goto_char_p = 1;
225   return make_int (n);
226 }
227
228 static Lisp_Object
229 region_limit (int beginningp, struct buffer *b)
230 {
231   Lisp_Object m;
232
233 #if 0 /* FSFmacs */
234   if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive)
235       && NILP (b->mark_active))
236     Fsignal (Qmark_inactive, Qnil);
237 #endif
238   m = Fmarker_position (b->mark);
239   if (NILP (m)) error ("There is no region now");
240   if (!!(BUF_PT (b) < XINT (m)) == !!beginningp)
241     return make_int (BUF_PT (b));
242   else
243     return m;
244 }
245
246 DEFUN ("region-beginning", Fregion_beginning, 0, 1, 0, /*
247 Return position of beginning of region in BUFFER, as an integer.
248 If BUFFER is nil, the current buffer is assumed.
249 */
250        (buffer))
251 {
252   return region_limit (1, decode_buffer (buffer, 1));
253 }
254
255 DEFUN ("region-end", Fregion_end, 0, 1, 0, /*
256 Return position of end of region in BUFFER, as an integer.
257 If BUFFER is nil, the current buffer is assumed.
258 */
259        (buffer))
260 {
261   return region_limit (0, decode_buffer (buffer, 1));
262 }
263
264 /* Whether to use lispm-style active-regions */
265 int zmacs_regions;
266
267 /* Whether the zmacs region is active.  This is not per-buffer because
268    there can be only one active region at a time.  #### Now that the
269    zmacs region are not directly tied to the X selections this may not
270    necessarily have to be true.  */
271 int zmacs_region_active_p;
272
273 int zmacs_region_stays;
274
275 Lisp_Object Qzmacs_update_region, Qzmacs_deactivate_region;
276 Lisp_Object Qzmacs_region_buffer;
277
278 void
279 zmacs_update_region (void)
280 {
281   /* This function can GC */
282   if (zmacs_region_active_p)
283     call0 (Qzmacs_update_region);
284 }
285
286 void
287 zmacs_deactivate_region (void)
288 {
289   /* This function can GC */
290   if (zmacs_region_active_p)
291     call0 (Qzmacs_deactivate_region);
292 }
293
294 Lisp_Object
295 zmacs_region_buffer (void)
296 {
297   if (zmacs_region_active_p)
298     return call0 (Qzmacs_region_buffer);
299   else
300     return Qnil;
301 }
302
303 DEFUN ("mark-marker", Fmark_marker, 0, 2, 0, /*
304 Return this buffer's mark, as a marker object.
305 If `zmacs-regions' is true, then this returns nil unless the region is
306 currently in the active (highlighted) state.  If optional argument FORCE
307 is t, this returns the mark (if there is one) regardless of the zmacs-region
308 state.  You should *generally* not use the mark unless the region is active,
309 if the user has expressed a preference for the zmacs-region model.
310 Watch out!  Moving this marker changes the mark position.
311 If you set the marker not to point anywhere, the buffer will have no mark.
312 If BUFFER is nil, the current buffer is assumed.
313 */
314        (force, buffer))
315 {
316   struct buffer *b = decode_buffer (buffer, 1);
317   if (! zmacs_regions || zmacs_region_active_p || !NILP (force))
318     return b->mark;
319   return Qnil;
320 }
321
322 \f
323 /* The saved object is a cons:
324
325    (COPY-OF-POINT-MARKER . COPY-OF-MARK)
326
327    We used to have another cons for a VISIBLE-P element, which was t
328    if `(eq (current-buffer) (window-buffer (selected-window)))' but it
329    was unused for a long time, so I removed it.  --hniksic */
330 Lisp_Object
331 save_excursion_save (void)
332 {
333   struct buffer *b;
334
335   /* #### Huh?  --hniksic */
336   /*if (preparing_for_armageddon) return Qnil;*/
337
338 #ifdef ERROR_CHECK_BUFPOS
339   assert (XINT (Fpoint (Qnil)) ==
340           XINT (Fmarker_position (Fpoint_marker (Qt, Qnil))));
341 #endif
342
343   b = current_buffer;
344
345   return noseeum_cons (noseeum_copy_marker (b->point_marker, Qnil),
346                        noseeum_copy_marker (b->mark, Qnil));
347 }
348
349 Lisp_Object
350 save_excursion_restore (Lisp_Object info)
351 {
352   Lisp_Object buffer = Fmarker_buffer (XCAR (info));
353
354   /* If buffer being returned to is now deleted, avoid error --
355      otherwise could get error here while unwinding to top level and
356      crash.  In that case, Fmarker_buffer returns nil now.  */
357   if (!NILP (buffer))
358     {
359       struct buffer *buf = XBUFFER (buffer);
360       struct gcpro gcpro1;
361       GCPRO1 (info);
362       set_buffer_internal (buf);
363       Fgoto_char (XCAR (info), buffer);
364       Fset_marker (buf->mark, XCDR (info), buffer);
365
366 #if 0 /* We used to make the current buffer visible in the selected window
367          if that was true previously.  That avoids some anomalies.
368          But it creates others, and it wasn't documented, and it is simpler
369          and cleaner never to alter the window/buffer connections.  */
370       /* I'm certain some code somewhere depends on this behavior. --jwz */
371       /* Even if it did, it certainly doesn't matter anymore, because
372          this has been the behavior for countless XEmacs releases
373          now.  --hniksic */
374       if (visible
375           && (current_buffer != XBUFFER (XWINDOW (selected_window)->buffer)))
376         switch_to_buffer (Fcurrent_buffer (), Qnil);
377 #endif
378
379       UNGCPRO;
380     }
381
382   /* Free all the junk we allocated, so that a `save-excursion' comes
383      for free in terms of GC junk. */
384   free_marker (XMARKER (XCAR (info)));
385   free_marker (XMARKER (XCDR (info)));
386   free_cons (XCONS (info));
387   return Qnil;
388 }
389
390 DEFUN ("save-excursion", Fsave_excursion, 0, UNEVALLED, 0, /*
391 Save point, mark, and current buffer; execute BODY; restore those things.
392 Executes BODY just like `progn'.
393 The values of point, mark and the current buffer are restored
394 even in case of abnormal exit (throw or error).
395 */
396        (args))
397 {
398   /* This function can GC */
399   int speccount = specpdl_depth ();
400
401   record_unwind_protect (save_excursion_restore, save_excursion_save ());
402
403   return unbind_to (speccount, Fprogn (args));
404 }
405
406 Lisp_Object
407 save_current_buffer_restore (Lisp_Object buffer)
408 {
409   struct buffer *buf = XBUFFER (buffer);
410   /* Avoid signaling an error if the buffer is no longer alive.  This
411      is for consistency with save-excursion.  */
412   if (BUFFER_LIVE_P (buf))
413     set_buffer_internal (buf);
414   return Qnil;
415 }
416
417 DEFUN ("save-current-buffer", Fsave_current_buffer, 0, UNEVALLED, 0, /*
418 Save the current buffer; execute BODY; restore the current buffer.
419 Executes BODY just like `progn'.
420 */
421        (args))
422 {
423   /* This function can GC */
424   int speccount = specpdl_depth ();
425
426   record_unwind_protect (save_current_buffer_restore, Fcurrent_buffer ());
427
428   return unbind_to (speccount, Fprogn (args));
429 }
430 \f
431 DEFUN ("buffer-size", Fbuffer_size, 0, 1, 0, /*
432 Return the number of characters in BUFFER.
433 If BUFFER is nil, the current buffer is assumed.
434 */
435        (buffer))
436 {
437   struct buffer *b = decode_buffer (buffer, 1);
438   return make_int (BUF_SIZE (b));
439 }
440
441 DEFUN ("point-min", Fpoint_min, 0, 1, 0, /*
442 Return the minimum permissible value of point in BUFFER.
443 This is 1, unless narrowing (a buffer restriction)
444 is in effect, in which case it may be greater.
445 If BUFFER is nil, the current buffer is assumed.
446 */
447        (buffer))
448 {
449   struct buffer *b = decode_buffer (buffer, 1);
450   return make_int (BUF_BEGV (b));
451 }
452
453 DEFUN ("point-min-marker", Fpoint_min_marker, 0, 1, 0, /*
454 Return a marker to the minimum permissible value of point in BUFFER.
455 This is the beginning, unless narrowing (a buffer restriction)
456 is in effect, in which case it may be greater.
457 If BUFFER is nil, the current buffer is assumed.
458 */
459        (buffer))
460 {
461   struct buffer *b = decode_buffer (buffer, 1);
462   return buildmark (BUF_BEGV (b), make_buffer (b));
463 }
464
465 DEFUN ("point-max", Fpoint_max, 0, 1, 0, /*
466 Return the maximum permissible value of point in BUFFER.
467 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
468 is in effect, in which case it may be less.
469 If BUFFER is nil, the current buffer is assumed.
470 */
471        (buffer))
472 {
473   struct buffer *b = decode_buffer (buffer, 1);
474   return make_int (BUF_ZV (b));
475 }
476
477 DEFUN ("point-max-marker", Fpoint_max_marker, 0, 1, 0, /*
478 Return a marker to the maximum permissible value of point in BUFFER.
479 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)
480 is in effect, in which case it may be less.
481 If BUFFER is nil, the current buffer is assumed.
482 */
483        (buffer))
484 {
485   struct buffer *b = decode_buffer (buffer, 1);
486   return buildmark (BUF_ZV (b), make_buffer (b));
487 }
488
489 DEFUN ("following-char", Ffollowing_char, 0, 1, 0, /*
490 Return the character following point.
491 At the end of the buffer or accessible region, return 0.
492 If BUFFER is nil, the current buffer is assumed.
493 */
494        (buffer))
495 {
496   struct buffer *b = decode_buffer (buffer, 1);
497   if (BUF_PT (b) >= BUF_ZV (b))
498     return Qzero;             /* #### Gag me! */
499   else
500     return make_char (BUF_FETCH_CHAR (b, BUF_PT (b)));
501 }
502
503 DEFUN ("preceding-char", Fpreceding_char, 0, 1, 0, /*
504 Return the character preceding point.
505 At the beginning of the buffer or accessible region, return 0.
506 If BUFFER is nil, the current buffer is assumed.
507 */
508        (buffer))
509 {
510   struct buffer *b = decode_buffer (buffer, 1);
511   if (BUF_PT (b) <= BUF_BEGV (b))
512     return Qzero;             /* #### Gag me! */
513   else
514     return make_char (BUF_FETCH_CHAR (b, BUF_PT (b) - 1));
515 }
516
517 DEFUN ("bobp", Fbobp, 0, 1, 0, /*
518 Return t if point is at the beginning of the buffer.
519 If the buffer is narrowed, this means the beginning of the narrowed part.
520 If BUFFER is nil, the current buffer is assumed.
521 */
522        (buffer))
523 {
524   struct buffer *b = decode_buffer (buffer, 1);
525   return BUF_PT (b) == BUF_BEGV (b) ? Qt : Qnil;
526 }
527
528 DEFUN ("eobp", Feobp, 0, 1, 0, /*
529 Return t if point is at the end of the buffer.
530 If the buffer is narrowed, this means the end of the narrowed part.
531 If BUFFER is nil, the current buffer is assumed.
532 */
533        (buffer))
534 {
535   struct buffer *b = decode_buffer (buffer, 1);
536   return BUF_PT (b) == BUF_ZV (b) ? Qt : Qnil;
537 }
538
539 int
540 beginning_of_line_p (struct buffer *b, Bufpos pt)
541 {
542   return pt <= BUF_BEGV (b) || BUF_FETCH_CHAR (b, pt - 1) == '\n';
543 }
544
545
546 DEFUN ("bolp", Fbolp, 0, 1, 0, /*
547 Return t if point is at the beginning of a line.
548 If BUFFER is nil, the current buffer is assumed.
549 */
550        (buffer))
551 {
552   struct buffer *b = decode_buffer (buffer, 1);
553   return beginning_of_line_p (b, BUF_PT (b)) ? Qt : Qnil;
554 }
555
556 DEFUN ("eolp", Feolp, 0, 1, 0, /*
557 Return t if point is at the end of a line.
558 `End of a line' includes point being at the end of the buffer.
559 If BUFFER is nil, the current buffer is assumed.
560 */
561        (buffer))
562 {
563   struct buffer *b = decode_buffer (buffer, 1);
564   return (BUF_PT (b) == BUF_ZV (b) || BUF_FETCH_CHAR (b, BUF_PT (b)) == '\n')
565     ? Qt : Qnil;
566 }
567
568 DEFUN ("char-after", Fchar_after, 0, 2, 0, /*
569 Return the character at position POS in BUFFER.
570 POS is an integer or a marker.
571 If POS is out of range, the value is nil.
572 if POS is nil, the value of point is assumed.
573 If BUFFER is nil, the current buffer is assumed.
574 */
575        (pos, buffer))
576 {
577   struct buffer *b = decode_buffer (buffer, 1);
578   Bufpos n = (NILP (pos) ? BUF_PT (b) :
579               get_buffer_pos_char (b, pos, GB_NO_ERROR_IF_BAD));
580
581   if (n < 0 || n == BUF_ZV (b))
582     return Qnil;
583   return make_char (BUF_FETCH_CHAR (b, n));
584 }
585
586 DEFUN ("char-before", Fchar_before, 0, 2, 0, /*
587 Return the character preceding position POS in BUFFER.
588 POS is an integer or a marker.
589 If POS is out of range, the value is nil.
590 if POS is nil, the value of point is assumed.
591 If BUFFER is nil, the current buffer is assumed.
592 */
593        (pos, buffer))
594 {
595   struct buffer *b = decode_buffer (buffer, 1);
596   Bufpos n = (NILP (pos) ? BUF_PT (b) :
597               get_buffer_pos_char (b, pos, GB_NO_ERROR_IF_BAD));
598
599   n--;
600
601   if (n < BUF_BEGV (b))
602     return Qnil;
603   return make_char (BUF_FETCH_CHAR (b, n));
604 }
605
606 \f
607 DEFUN ("temp-directory", Ftemp_directory, 0, 0, 0, /*
608 Return the pathname to the directory to use for temporary files.
609 On NT/MSDOS, this is obtained from the TEMP or TMP environment variables,
610 defaulting to / if they are both undefined.
611 On Unix it is obtained from TMPDIR, with /tmp as the default
612 */
613        ())
614 {
615   char *tmpdir;
616 #if defined(WINDOWSNT) || defined(MSDOS)
617   tmpdir = getenv ("TEMP");
618   if (!tmpdir)
619     tmpdir = getenv ("TMP");
620   if (!tmpdir)
621     tmpdir = "/";
622 #else /* WINDOWSNT || MSDOS */
623  tmpdir = getenv ("TMPDIR");
624  if (!tmpdir)
625    tmpdir = "/tmp";
626 #endif
627
628   return build_ext_string (tmpdir, FORMAT_FILENAME);
629 }
630
631 DEFUN ("user-login-name", Fuser_login_name, 0, 1, 0, /*
632 Return the name under which the user logged in, as a string.
633 This is based on the effective uid, not the real uid.
634 Also, if the environment variable LOGNAME or USER is set,
635 that determines the value of this function.
636 If the optional argument UID is present, then environment variables are
637 ignored and this function returns the login name for that UID, or nil.
638 */
639        (uid))
640 {
641   char *returned_name;
642   uid_t local_uid;
643
644   if (!NILP (uid))
645     {
646       CHECK_INT (uid);
647       local_uid = XINT (uid);
648       returned_name = user_login_name (&local_uid);
649     }
650   else
651     {
652       returned_name = user_login_name (NULL);
653     }
654   /* #### - I believe this should return nil instead of "unknown" when pw==0
655      pw=0 is indicated by a null return from user_login_name
656   */
657   return returned_name ? build_string (returned_name) : Qnil;
658 }
659
660 /* This function may be called from other C routines when a
661    character string representation of the user_login_name is
662    needed but a Lisp Object is not.  The UID is passed by
663    reference.  If UID == NULL, then the USER name
664    for the user running XEmacs will be returned.  This
665    corresponds to a nil argument to Fuser_login_name.
666 */
667 char*
668 user_login_name (uid_t *uid)
669 {
670   /* uid == NULL to return name of this user */
671   if (uid != NULL)
672     {
673       struct passwd *pw = getpwuid (*uid);
674       return pw ? pw->pw_name : NULL;
675     }
676   else
677     {
678       /* #### - when euid != uid, then LOGNAME and USER are leftovers from the
679          old environment (I site observed behavior on sunos and linux), so the
680          environment variables should be disregarded in that case.  --Stig */
681       char *user_name = getenv ("LOGNAME");
682       if (!user_name)
683         user_name = getenv (
684 #ifdef WINDOWSNT
685                             "USERNAME" /* it's USERNAME on NT */
686 #else
687                             "USER"
688 #endif
689                             );
690       if (user_name)
691         return (user_name);
692       else
693         {
694           struct passwd *pw = getpwuid (geteuid ());
695 #ifdef __CYGWIN32__
696           /* Since the Cygwin environment may not have an /etc/passwd,
697              return "unknown" instead of the null if the username
698              cannot be determined.
699           */
700           return pw ? pw->pw_name : "unknown";
701 #else
702           /* For all but Cygwin return NULL (nil) */
703           return pw ? pw->pw_name : NULL;
704 #endif
705         }
706     }
707 }
708
709 DEFUN ("user-real-login-name", Fuser_real_login_name, 0, 0, 0, /*
710 Return the name of the user's real uid, as a string.
711 This ignores the environment variables LOGNAME and USER, so it differs from
712 `user-login-name' when running under `su'.
713 */
714        ())
715 {
716   struct passwd *pw = getpwuid (getuid ());
717   /* #### - I believe this should return nil instead of "unknown" when pw==0 */
718
719 #ifdef MSDOS
720   /* We let the real user name default to "root" because that's quite
721      accurate on MSDOG and because it lets Emacs find the init file.
722      (The DVX libraries override the Djgpp libraries here.)  */
723   Lisp_Object tem = build_string (pw ? pw->pw_name : "root");/* no gettext */
724 #else
725   Lisp_Object tem = build_string (pw ? pw->pw_name : "unknown");/* no gettext */
726 #endif
727   return tem;
728 }
729
730 DEFUN ("user-uid", Fuser_uid, 0, 0, 0, /*
731 Return the effective uid of Emacs, as an integer.
732 */
733        ())
734 {
735   return make_int (geteuid ());
736 }
737
738 DEFUN ("user-real-uid", Fuser_real_uid, 0, 0, 0, /*
739 Return the real uid of Emacs, as an integer.
740 */
741        ())
742 {
743   return make_int (getuid ());
744 }
745
746 DEFUN ("user-full-name", Fuser_full_name, 0, 1, 0, /*
747 Return the full name of the user logged in, as a string.
748 If the optional argument USER is given, then the full name for that
749 user is returned, or nil.  USER may be either a login name or a uid.
750
751 If USER is nil, and `user-full-name' contains a string, the
752 value of `user-full-name' is returned.
753 */
754        (user))
755 {
756   Lisp_Object user_name;
757   struct passwd *pw = NULL;
758   Lisp_Object tem;
759   const char *p, *q;
760
761   if (NILP (user) && STRINGP (Vuser_full_name))
762     return Vuser_full_name;
763
764   user_name = (STRINGP (user) ? user : Fuser_login_name (user));
765   if (!NILP (user_name))        /* nil when nonexistent UID passed as arg */
766     {
767       CONST char *user_name_ext;
768
769       /* Fuck me.  getpwnam() can call select() and (under IRIX at least)
770          things get wedged if a SIGIO arrives during this time. */
771       GET_C_STRING_OS_DATA_ALLOCA (user_name, user_name_ext);
772       slow_down_interrupts ();
773       pw = (struct passwd *) getpwnam (user_name_ext);
774       speed_up_interrupts ();
775     }
776
777   /* #### - Stig sez: this should return nil instead of "unknown" when pw==0 */
778   /* Ben sez: bad idea because it's likely to break something */
779 #ifndef AMPERSAND_FULL_NAME
780   p = ((pw) ? USER_FULL_NAME : "unknown"); /* don't gettext */
781   q = strchr (p, ',');
782 #else
783   p = ((pw) ? USER_FULL_NAME : "unknown"); /* don't gettext */
784   q = strchr (p, ',');
785 #endif
786   tem = ((!NILP (user) && !pw)
787          ? Qnil
788          : make_ext_string ((Extbyte *) p, (q ? q - p : strlen (p)),
789                             FORMAT_OS));
790
791 #ifdef AMPERSAND_FULL_NAME
792   if (!NILP (tem))
793     {
794       p = (char *) XSTRING_DATA (tem);
795       q = strchr (p, '&');
796       /* Substitute the login name for the &, upcasing the first character.  */
797       if (q)
798         {
799           char *r = (char *) alloca (strlen (p) + XSTRING_LENGTH (user_name) + 1);
800           memcpy (r, p, q - p);
801           r[q - p] = 0;
802           strcat (r, (char *) XSTRING_DATA (user_name));
803           /* #### current_buffer dependency! */
804           r[q - p] = UPCASE (current_buffer, r[q - p]);
805           strcat (r, q + 1);
806           tem = build_string (r);
807         }
808     }
809 #endif /* AMPERSAND_FULL_NAME */
810
811   return tem;
812 }
813
814 static char *cached_home_directory;
815
816 void
817 uncache_home_directory (void)
818 {
819   cached_home_directory = NULL; /* in some cases, this may cause the leaking
820                                    of a few bytes */
821 }
822
823 /* Returns the home directory, in external format */
824 char *
825 get_home_directory (void)
826 {
827   int output_home_warning = 0;
828
829   if (cached_home_directory == NULL)
830     {
831       if ((cached_home_directory = getenv("HOME")) == NULL)
832         {
833 #if defined(WINDOWSNT) && !defined(__CYGWIN32__)
834           char  *homedrive, *homepath;
835
836           if ((homedrive = getenv("HOMEDRIVE")) != NULL &&
837               (homepath = getenv("HOMEPATH")) != NULL)
838             {
839               cached_home_directory =
840                 (char *) xmalloc(strlen(homedrive) + strlen(homepath) + 1);
841               sprintf(cached_home_directory, "%s%s", homedrive, homepath);
842             }
843           else
844             {
845 # if 1
846               /*
847                * Use the current directory.
848                * This preserves the existing XEmacs behavior, but is different
849                * from NT Emacs.
850                */
851               if (initial_directory[0] != '\0')
852                 {
853                   cached_home_directory = initial_directory;
854                 }
855               else
856                 {
857                   /* This will probably give the wrong value */
858                   cached_home_directory = getcwd (NULL, 0);
859                 }
860 # else
861               /*
862                * This is NT Emacs behavior
863                */
864               cached_home_directory = "C:\\";
865               output_home_warning = 1;
866 # endif
867             }
868 #else   /* !WINDOWSNT */
869           /*
870            * Unix, typically.
871            * Using "/" isn't quite right, but what should we do?
872            * We probably should try to extract pw_dir from /etc/passwd,
873            * before falling back to this.
874            */
875           cached_home_directory = "/";
876           output_home_warning = 1;
877 #endif  /* !WINDOWSNT */
878         }
879       if (initialized && output_home_warning)
880         {
881           warn_when_safe (Quser_files_and_directories, Qwarning, "\n"
882 "       XEmacs was unable to determine a good value for the user's $HOME\n"
883 "       directory, and will be using the value:\n"
884 "               %s\n"
885 "       This is probably incorrect.",
886                           cached_home_directory
887                           );
888         }
889     }
890   return cached_home_directory;
891 }
892
893 DEFUN ("user-home-directory", Fuser_home_directory, 0, 0, 0, /*
894 Return the user's home directory, as a string.
895 */
896        ())
897 {
898   char *path = get_home_directory ();
899
900   return path == NULL ? Qnil :
901     Fexpand_file_name (Fsubstitute_in_file_name
902                        (build_ext_string (path, FORMAT_FILENAME)),
903                        Qnil);
904 }
905
906 DEFUN ("system-name", Fsystem_name, 0, 0, 0, /*
907 Return the name of the machine you are running on, as a string.
908 */
909        ())
910 {
911     return Fcopy_sequence (Vsystem_name);
912 }
913
914 DEFUN ("emacs-pid", Femacs_pid, 0, 0, 0, /*
915 Return the process ID of Emacs, as an integer.
916 */
917        ())
918 {
919   return make_int (getpid ());
920 }
921
922 DEFUN ("current-time", Fcurrent_time, 0, 0, 0, /*
923 Return the current time, as the number of seconds since 1970-01-01 00:00:00.
924 The time is returned as a list of three integers.  The first has the
925 most significant 16 bits of the seconds, while the second has the
926 least significant 16 bits.  The third integer gives the microsecond
927 count.
928
929 The microsecond count is zero on systems that do not provide
930 resolution finer than a second.
931 */
932        ())
933 {
934   EMACS_TIME t;
935
936   EMACS_GET_TIME (t);
937   return list3 (make_int ((EMACS_SECS (t) >> 16) & 0xffff),
938                 make_int ((EMACS_SECS (t) >> 0)  & 0xffff),
939                 make_int (EMACS_USECS (t)));
940 }
941
942 DEFUN ("current-process-time", Fcurrent_process_time, 0, 0, 0, /*
943 Return the amount of time used by this XEmacs process so far.
944 The return value is a list of three floating-point numbers, expressing
945 the user, system, and real times used by the process.  The user time
946 measures the time actually spent by the CPU executing the code in this
947 process.  The system time measures time spent by the CPU executing kernel
948 code on behalf of this process (e.g. I/O requests made by the process).
949
950 Note that the user and system times measure processor time, as opposed
951 to real time, and only accrue when the processor is actually doing
952 something: Time spent in an idle wait (waiting for user events to come
953 in or for I/O on a disk drive or other device to complete) does not
954 count.  Thus, the user and system times will often be considerably
955 less than the real time.
956
957 Some systems do not allow the user and system times to be distinguished.
958 In this case, the user time will be the total processor time used by
959 the process, and the system time will be 0.
960
961 Some systems do not allow the real and processor times to be distinguished.
962 In this case, the user and real times will be the same and the system
963 time will be 0.
964 */
965        ())
966 {
967   double user, sys, real;
968
969   get_process_times (&user, &sys, &real);
970   return list3 (make_float (user), make_float (sys), make_float (real));
971 }
972
973 \f
974 int lisp_to_time (Lisp_Object specified_time, time_t *result);
975 int
976 lisp_to_time (Lisp_Object specified_time, time_t *result)
977 {
978   Lisp_Object high, low;
979
980   if (NILP (specified_time))
981     return time (result) != -1;
982
983   CHECK_CONS (specified_time);
984   high = XCAR (specified_time);
985   low  = XCDR (specified_time);
986   if (CONSP (low))
987     low = XCAR (low);
988   CHECK_INT (high);
989   CHECK_INT (low);
990   *result = (XINT (high) << 16) + (XINT (low) & 0xffff);
991   return *result >> 16 == XINT (high);
992 }
993
994 Lisp_Object time_to_lisp (time_t the_time);
995 Lisp_Object
996 time_to_lisp (time_t the_time)
997 {
998   unsigned int item = (unsigned int) the_time;
999   return Fcons (make_int (item >> 16), make_int (item & 0xffff));
1000 }
1001
1002 size_t emacs_strftime (char *string, size_t max, CONST char *format,
1003                        CONST struct tm *tm);
1004 static long difftm (CONST struct tm *a, CONST struct tm *b);
1005
1006
1007 DEFUN ("format-time-string", Fformat_time_string, 1, 2, 0, /*
1008 Use FORMAT-STRING to format the time TIME.
1009 TIME is specified as (HIGH LOW . IGNORED) or (HIGH . LOW), as from
1010 `current-time' and `file-attributes'.  If TIME is not specified it
1011 defaults to the current time.
1012 FORMAT-STRING may contain %-sequences to substitute parts of the time.
1013 %a is replaced by the abbreviated name of the day of week.
1014 %A is replaced by the full name of the day of week.
1015 %b is replaced by the abbreviated name of the month.
1016 %B is replaced by the full name of the month.
1017 %c is a synonym for "%x %X".
1018 %C is a locale-specific synonym, which defaults to "%A, %B %e, %Y" in the C locale.
1019 %d is replaced by the day of month, zero-padded.
1020 %D is a synonym for "%m/%d/%y".
1021 %e is replaced by the day of month, blank-padded.
1022 %h is a synonym for "%b".
1023 %H is replaced by the hour (00-23).
1024 %I is replaced by the hour (00-12).
1025 %j is replaced by the day of the year (001-366).
1026 %k is replaced by the hour (0-23), blank padded.
1027 %l is replaced by the hour (1-12), blank padded.
1028 %m is replaced by the month (01-12).
1029 %M is replaced by the minute (00-59).
1030 %n is a synonym for "\\n".
1031 %p is replaced by AM or PM, as appropriate.
1032 %r is a synonym for "%I:%M:%S %p".
1033 %R is a synonym for "%H:%M".
1034 %s is replaced by the time in seconds since 00:00:00, Jan 1, 1970 (a
1035       nonstandard extension)
1036 %S is replaced by the second (00-60).
1037 %t is a synonym for "\\t".
1038 %T is a synonym for "%H:%M:%S".
1039 %U is replaced by the week of the year (00-53), first day of week is Sunday.
1040 %w is replaced by the day of week (0-6), Sunday is day 0.
1041 %W is replaced by the week of the year (00-53), first day of week is Monday.
1042 %x is a locale-specific synonym, which defaults to "%D" in the C locale.
1043 %X is a locale-specific synonym, which defaults to "%T" in the C locale.
1044 %y is replaced by the year without century (00-99).
1045 %Y is replaced by the year with century.
1046 %Z is replaced by the time zone abbreviation.
1047
1048 The number of options reflects the `strftime' function.
1049
1050 BUG: If the charset used by the current locale is not ISO 8859-1, the
1051 characters appearing in the day and month names may be incorrect.
1052 */
1053        (format_string, time_))
1054 {
1055   time_t value;
1056   size_t size;
1057
1058   CHECK_STRING (format_string);
1059
1060   if (! lisp_to_time (time_, &value))
1061     error ("Invalid time specification");
1062
1063   /* This is probably enough.  */
1064   size = XSTRING_LENGTH (format_string) * 6 + 50;
1065
1066   while (1)
1067     {
1068       char *buf = (char *) alloca (size);
1069       *buf = 1;
1070       if (emacs_strftime (buf, size,
1071                           (CONST char *) XSTRING_DATA (format_string),
1072                           localtime (&value))
1073           || !*buf)
1074         return build_ext_string (buf, FORMAT_BINARY);
1075       /* If buffer was too small, make it bigger.  */
1076       size *= 2;
1077     }
1078 }
1079
1080 DEFUN ("decode-time", Fdecode_time, 0, 1, 0, /*
1081 Decode a time value as (SEC MINUTE HOUR DAY MONTH YEAR DOW DST ZONE).
1082 The optional SPECIFIED-TIME should be a list of (HIGH LOW . IGNORED)
1083 or (HIGH . LOW), as from `current-time' and `file-attributes', or `nil'
1084 to use the current time.  The list has the following nine members:
1085 SEC is an integer between 0 and 60; SEC is 60 for a leap second, which
1086 only some operating systems support.  MINUTE is an integer between 0 and 59.
1087 HOUR is an integer between 0 and 23.  DAY is an integer between 1 and 31.
1088 MONTH is an integer between 1 and 12.  YEAR is an integer indicating the
1089 four-digit year.  DOW is the day of week, an integer between 0 and 6, where
1090 0 is Sunday.  DST is t if daylight savings time is effect, otherwise nil.
1091 ZONE is an integer indicating the number of seconds east of Greenwich.
1092 \(Note that Common Lisp has different meanings for DOW and ZONE.)
1093 */
1094        (specified_time))
1095 {
1096   time_t time_spec;
1097   struct tm save_tm;
1098   struct tm *decoded_time;
1099   Lisp_Object list_args[9];
1100
1101   if (! lisp_to_time (specified_time, &time_spec))
1102     error ("Invalid time specification");
1103
1104   decoded_time = localtime (&time_spec);
1105   list_args[0] = make_int (decoded_time->tm_sec);
1106   list_args[1] = make_int (decoded_time->tm_min);
1107   list_args[2] = make_int (decoded_time->tm_hour);
1108   list_args[3] = make_int (decoded_time->tm_mday);
1109   list_args[4] = make_int (decoded_time->tm_mon + 1);
1110   list_args[5] = make_int (decoded_time->tm_year + 1900);
1111   list_args[6] = make_int (decoded_time->tm_wday);
1112   list_args[7] = (decoded_time->tm_isdst)? Qt : Qnil;
1113
1114   /* Make a copy, in case gmtime modifies the struct.  */
1115   save_tm = *decoded_time;
1116   decoded_time = gmtime (&time_spec);
1117   if (decoded_time == 0)
1118     list_args[8] = Qnil;
1119   else
1120     list_args[8] = make_int (difftm (&save_tm, decoded_time));
1121   return Flist (9, list_args);
1122 }
1123
1124 static void set_time_zone_rule (char *tzstring);
1125
1126 DEFUN ("encode-time", Fencode_time, 6, MANY, 0, /*
1127   Convert SECOND, MINUTE, HOUR, DAY, MONTH, YEAR and ZONE to internal time.
1128 This is the reverse operation of `decode-time', which see.
1129 ZONE defaults to the current time zone rule.  This can
1130 be a string (as from `set-time-zone-rule'), or it can be a list
1131 \(as from `current-time-zone') or an integer (as from `decode-time')
1132 applied without consideration for daylight savings time.
1133
1134 You can pass more than 7 arguments; then the first six arguments
1135 are used as SECOND through YEAR, and the *last* argument is used as ZONE.
1136 The intervening arguments are ignored.
1137 This feature lets (apply 'encode-time (decode-time ...)) work.
1138
1139 Out-of-range values for SEC, MINUTE, HOUR, DAY, or MONTH are allowed;
1140 for example, a DAY of 0 means the day preceding the given month.
1141 Year numbers less than 100 are treated just like other year numbers.
1142 If you want them to stand for years in this century, you must do that yourself.
1143 */
1144        (int nargs, Lisp_Object *args))
1145 {
1146   time_t the_time;
1147   struct tm tm;
1148   Lisp_Object zone = (nargs > 6) ? args[nargs - 1] : Qnil;
1149
1150   CHECK_INT (*args); tm.tm_sec  = XINT (*args++);       /* second */
1151   CHECK_INT (*args); tm.tm_min  = XINT (*args++);       /* minute */
1152   CHECK_INT (*args); tm.tm_hour = XINT (*args++);       /* hour */
1153   CHECK_INT (*args); tm.tm_mday = XINT (*args++);       /* day */
1154   CHECK_INT (*args); tm.tm_mon  = XINT (*args++) - 1;   /* month */
1155   CHECK_INT (*args); tm.tm_year = XINT (*args++) - 1900;/* year */
1156
1157   tm.tm_isdst = -1;
1158
1159   if (CONSP (zone))
1160     zone = XCAR (zone);
1161   if (NILP (zone))
1162     the_time = mktime (&tm);
1163   else
1164     {
1165       char tzbuf[100];
1166       char *tzstring;
1167       char **oldenv = environ, **newenv;
1168
1169       if (STRINGP (zone))
1170         tzstring = (char *) XSTRING_DATA (zone);
1171       else if (INTP (zone))
1172         {
1173           int abszone = abs (XINT (zone));
1174           sprintf (tzbuf, "XXX%s%d:%02d:%02d", "-" + (XINT (zone) < 0),
1175                    abszone / (60*60), (abszone/60) % 60, abszone % 60);
1176           tzstring = tzbuf;
1177         }
1178       else
1179         error ("Invalid time zone specification");
1180
1181       /* Set TZ before calling mktime; merely adjusting mktime's returned
1182          value doesn't suffice, since that would mishandle leap seconds.  */
1183       set_time_zone_rule (tzstring);
1184
1185       the_time = mktime (&tm);
1186
1187       /* Restore TZ to previous value.  */
1188       newenv = environ;
1189       environ = oldenv;
1190       free (newenv);
1191 #ifdef LOCALTIME_CACHE
1192       tzset ();
1193 #endif
1194     }
1195
1196   if (the_time == (time_t) -1)
1197     error ("Specified time is not representable");
1198
1199   return wasteful_word_to_lisp (the_time);
1200 }
1201
1202 DEFUN ("current-time-string", Fcurrent_time_string, 0, 1, 0, /*
1203 Return the current time, as a human-readable string.
1204 Programs can use this function to decode a time,
1205 since the number of columns in each field is fixed.
1206 The format is `Sun Sep 16 01:03:52 1973'.
1207 If an argument is given, it specifies a time to format
1208 instead of the current time.  The argument should have the form:
1209   (HIGH . LOW)
1210 or the form:
1211   (HIGH LOW . IGNORED).
1212 Thus, you can use times obtained from `current-time'
1213 and from `file-attributes'.
1214 */
1215        (specified_time))
1216 {
1217   time_t value;
1218   char buf[30];
1219   char *tem;
1220
1221   if (! lisp_to_time (specified_time, &value))
1222     value = -1;
1223   tem = (char *) ctime (&value);
1224
1225   strncpy (buf, tem, 24);
1226   buf[24] = 0;
1227
1228   return build_ext_string (buf, FORMAT_BINARY);
1229 }
1230
1231 #define TM_YEAR_ORIGIN 1900
1232
1233 /* Yield A - B, measured in seconds.  */
1234 static long
1235 difftm (CONST struct tm *a, CONST struct tm *b)
1236 {
1237   int ay = a->tm_year + (TM_YEAR_ORIGIN - 1);
1238   int by = b->tm_year + (TM_YEAR_ORIGIN - 1);
1239   /* Some compilers can't handle this as a single return statement.  */
1240   long days = (
1241               /* difference in day of year */
1242               a->tm_yday - b->tm_yday
1243               /* + intervening leap days */
1244               +  ((ay >> 2) - (by >> 2))
1245               -  (ay/100 - by/100)
1246               +  ((ay/100 >> 2) - (by/100 >> 2))
1247               /* + difference in years * 365 */
1248               +  (long)(ay-by) * 365
1249               );
1250   return (60*(60*(24*days + (a->tm_hour - b->tm_hour))
1251               + (a->tm_min - b->tm_min))
1252           + (a->tm_sec - b->tm_sec));
1253 }
1254
1255 DEFUN ("current-time-zone", Fcurrent_time_zone, 0, 1, 0, /*
1256 Return the offset and name for the local time zone.
1257 This returns a list of the form (OFFSET NAME).
1258 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).
1259     A negative value means west of Greenwich.
1260 NAME is a string giving the name of the time zone.
1261 If an argument is given, it specifies when the time zone offset is determined
1262 instead of using the current time.  The argument should have the form:
1263   (HIGH . LOW)
1264 or the form:
1265   (HIGH LOW . IGNORED).
1266 Thus, you can use times obtained from `current-time'
1267 and from `file-attributes'.
1268
1269 Some operating systems cannot provide all this information to Emacs;
1270 in this case, `current-time-zone' returns a list containing nil for
1271 the data it can't find.
1272 */
1273        (specified_time))
1274 {
1275   time_t value;
1276   struct tm *t = NULL;
1277
1278   if (lisp_to_time (specified_time, &value)
1279       && (t = gmtime (&value)) != 0)
1280     {
1281       struct tm gmt = *t;       /* Make a copy, in case localtime modifies *t.  */
1282       long offset;
1283       char *s, buf[6];
1284
1285       t = localtime (&value);
1286       offset = difftm (t, &gmt);
1287       s = 0;
1288 #ifdef HAVE_TM_ZONE
1289       if (t->tm_zone)
1290         s = (char *)t->tm_zone;
1291 #else /* not HAVE_TM_ZONE */
1292 #ifdef HAVE_TZNAME
1293       if (t->tm_isdst == 0 || t->tm_isdst == 1)
1294         s = tzname[t->tm_isdst];
1295 #endif
1296 #endif /* not HAVE_TM_ZONE */
1297       if (!s)
1298         {
1299           /* No local time zone name is available; use "+-NNNN" instead.  */
1300           int am = (offset < 0 ? -offset : offset) / 60;
1301           sprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60, am%60);
1302           s = buf;
1303         }
1304       return list2 (make_int (offset), build_string (s));
1305     }
1306   else
1307     return list2 (Qnil, Qnil);
1308 }
1309
1310 #ifdef LOCALTIME_CACHE
1311
1312 /* These two values are known to load tz files in buggy implementations,
1313    i.e. Solaris 1 executables running under either Solaris 1 or Solaris 2.
1314    Their values shouldn't matter in non-buggy implementations.
1315    We don't use string literals for these strings,
1316    since if a string in the environment is in readonly
1317    storage, it runs afoul of bugs in SVR4 and Solaris 2.3.
1318    See Sun bugs 1113095 and 1114114, ``Timezone routines
1319    improperly modify environment''.  */
1320
1321 static char set_time_zone_rule_tz1[] = "TZ=GMT+0";
1322 static char set_time_zone_rule_tz2[] = "TZ=GMT+1";
1323
1324 #endif
1325
1326 /* Set the local time zone rule to TZSTRING.
1327    This allocates memory into `environ', which it is the caller's
1328    responsibility to free.  */
1329 static void
1330 set_time_zone_rule (char *tzstring)
1331 {
1332   int envptrs;
1333   char **from, **to, **newenv;
1334
1335   for (from = environ; *from; from++)
1336     continue;
1337   envptrs = from - environ + 2;
1338   newenv = to = (char **) xmalloc (envptrs * sizeof (char *)
1339                                    + (tzstring ? strlen (tzstring) + 4 : 0));
1340   if (tzstring)
1341     {
1342       char *t = (char *) (to + envptrs);
1343       strcpy (t, "TZ=");
1344       strcat (t, tzstring);
1345       *to++ = t;
1346     }
1347
1348   for (from = environ; *from; from++)
1349     if (strncmp (*from, "TZ=", 3) != 0)
1350       *to++ = *from;
1351   *to = 0;
1352
1353   environ = newenv;
1354
1355 #ifdef LOCALTIME_CACHE
1356   {
1357     /* In SunOS 4.1.3_U1 and 4.1.4, if TZ has a value like
1358        "US/Pacific" that loads a tz file, then changes to a value like
1359        "XXX0" that does not load a tz file, and then changes back to
1360        its original value, the last change is (incorrectly) ignored.
1361        Also, if TZ changes twice in succession to values that do
1362        not load a tz file, tzset can dump core (see Sun bug#1225179).
1363        The following code works around these bugs.  */
1364
1365     if (tzstring)
1366       {
1367         /* Temporarily set TZ to a value that loads a tz file
1368            and that differs from tzstring.  */
1369         char *tz = *newenv;
1370         *newenv = (strcmp (tzstring, set_time_zone_rule_tz1 + 3) == 0
1371                    ? set_time_zone_rule_tz2 : set_time_zone_rule_tz1);
1372         tzset ();
1373         *newenv = tz;
1374       }
1375     else
1376       {
1377         /* The implied tzstring is unknown, so temporarily set TZ to
1378            two different values that each load a tz file.  */
1379         *to = set_time_zone_rule_tz1;
1380         to[1] = 0;
1381         tzset ();
1382         *to = set_time_zone_rule_tz2;
1383         tzset ();
1384         *to = 0;
1385       }
1386
1387     /* Now TZ has the desired value, and tzset can be invoked safely.  */
1388   }
1389
1390   tzset ();
1391 #endif
1392 }
1393
1394 DEFUN ("set-time-zone-rule", Fset_time_zone_rule, 1, 1, 0, /*
1395 Set the local time zone using TZ, a string specifying a time zone rule.
1396 If TZ is nil, use implementation-defined default time zone information.
1397 */
1398        (tz))
1399 {
1400   char *tzstring;
1401
1402   if (NILP (tz))
1403     tzstring = 0;
1404   else
1405     {
1406       CHECK_STRING (tz);
1407       tzstring = (char *) XSTRING_DATA (tz);
1408     }
1409
1410   set_time_zone_rule (tzstring);
1411   if (environbuf)
1412     xfree (environbuf);
1413   environbuf = environ;
1414
1415   return Qnil;
1416 }
1417
1418 \f
1419 void
1420 buffer_insert1 (struct buffer *buf, Lisp_Object arg)
1421 {
1422   /* This function can GC */
1423   struct gcpro gcpro1;
1424   GCPRO1 (arg);
1425  retry:
1426   if (CHAR_OR_CHAR_INTP (arg))
1427     {
1428       buffer_insert_emacs_char (buf, XCHAR_OR_CHAR_INT (arg));
1429     }
1430   else if (STRINGP (arg))
1431     {
1432       buffer_insert_lisp_string (buf, arg);
1433     }
1434   else
1435     {
1436       arg = wrong_type_argument (Qchar_or_string_p, arg);
1437       goto retry;
1438     }
1439   zmacs_region_stays = 0;
1440   UNGCPRO;
1441 }
1442
1443
1444 /* Callers passing one argument to Finsert need not gcpro the
1445    argument "array", since the only element of the array will
1446    not be used after calling insert_emacs_char or insert_lisp_string,
1447    so we don't care if it gets trashed.  */
1448
1449 DEFUN ("insert", Finsert, 0, MANY, 0, /*
1450 Insert the arguments, either strings or characters, at point.
1451 Point moves forward so that it ends up after the inserted text.
1452 Any other markers at the point of insertion remain before the text.
1453 If a string has non-null string-extent-data, new extents will be created.
1454 */
1455        (int nargs, Lisp_Object *args))
1456 {
1457   /* This function can GC */
1458   REGISTER int argnum;
1459
1460   for (argnum = 0; argnum < nargs; argnum++)
1461     {
1462       buffer_insert1 (current_buffer, args[argnum]);
1463     }
1464
1465   return Qnil;
1466 }
1467
1468 DEFUN ("insert-before-markers", Finsert_before_markers, 0, MANY, 0, /*
1469 Insert strings or characters at point, relocating markers after the text.
1470 Point moves forward so that it ends up after the inserted text.
1471 Any other markers at the point of insertion also end up after the text.
1472 */
1473        (int nargs, Lisp_Object *args))
1474 {
1475   /* This function can GC */
1476   REGISTER int argnum;
1477   REGISTER Lisp_Object tem;
1478
1479   for (argnum = 0; argnum < nargs; argnum++)
1480     {
1481       tem = args[argnum];
1482     retry:
1483       if (CHAR_OR_CHAR_INTP (tem))
1484         {
1485           buffer_insert_emacs_char_1 (current_buffer, -1,
1486                                       XCHAR_OR_CHAR_INT (tem),
1487                                       INSDEL_BEFORE_MARKERS);
1488         }
1489       else if (STRINGP (tem))
1490         {
1491           buffer_insert_lisp_string_1 (current_buffer, -1, tem,
1492                                        INSDEL_BEFORE_MARKERS);
1493         }
1494       else
1495         {
1496           tem = wrong_type_argument (Qchar_or_string_p, tem);
1497           goto retry;
1498         }
1499     }
1500   zmacs_region_stays = 0;
1501   return Qnil;
1502 }
1503
1504 DEFUN ("insert-string", Finsert_string, 1, 2, 0, /*
1505 Insert STRING into BUFFER at BUFFER's point.
1506 Point moves forward so that it ends up after the inserted text.
1507 Any other markers at the point of insertion remain before the text.
1508 If a string has non-null string-extent-data, new extents will be created.
1509 BUFFER defaults to the current buffer.
1510 */
1511        (string, buffer))
1512 {
1513   struct buffer *b = decode_buffer (buffer, 1);
1514   CHECK_STRING (string);
1515   buffer_insert_lisp_string (b, string);
1516   zmacs_region_stays = 0;
1517   return Qnil;
1518 }
1519
1520 /* Third argument in FSF is INHERIT:
1521
1522 "The optional third arg INHERIT, if non-nil, says to inherit text properties
1523 from adjoining text, if those properties are sticky."
1524
1525 Jamie thinks this is bogus. */
1526
1527 \f
1528 DEFUN ("insert-char", Finsert_char, 1, 4, 0, /*
1529 Insert COUNT (second arg) copies of CHR (first arg).
1530 Point and all markers are affected as in the function `insert'.
1531 COUNT defaults to 1 if omitted.
1532 The optional third arg IGNORED is INHERIT under FSF Emacs.
1533 This is highly bogus, however, and XEmacs always behaves as if
1534 `t' were passed to INHERIT.
1535 The optional fourth arg BUFFER specifies the buffer to insert the
1536 text into.  If BUFFER is nil, the current buffer is assumed.
1537 */
1538        (chr, count, ignored, buffer))
1539 {
1540   /* This function can GC */
1541   REGISTER Bufbyte *string;
1542   REGISTER int slen;
1543   REGISTER int i, j;
1544   REGISTER Bytecount n;
1545   REGISTER Bytecount charlen;
1546   Bufbyte str[MAX_EMCHAR_LEN];
1547   struct buffer *b = decode_buffer (buffer, 1);
1548   int cou;
1549
1550   CHECK_CHAR_COERCE_INT (chr);
1551   if (NILP (count))
1552     cou = 1;
1553   else
1554     {
1555       CHECK_INT (count);
1556       cou = XINT (count);
1557     }
1558
1559   charlen = set_charptr_emchar (str, XCHAR (chr));
1560   n = cou * charlen;
1561   if (n <= 0)
1562     return Qnil;
1563   slen = min (n, 768);
1564   string = alloca_array (Bufbyte, slen);
1565   /* Write as many copies of the character into the temp string as will fit. */
1566   for (i = 0; i + charlen <= slen; i += charlen)
1567     for (j = 0; j < charlen; j++)
1568       string[i + j] = str[j];
1569   slen = i;
1570   while (n >= slen)
1571     {
1572       buffer_insert_raw_string (b, string, slen);
1573       n -= slen;
1574     }
1575   if (n > 0)
1576 #if 0 /* FSFmacs bogosity */
1577     {
1578       if (!NILP (inherit))
1579         insert_and_inherit (string, n);
1580       else
1581         insert (string, n);
1582     }
1583 #else
1584     buffer_insert_raw_string (b, string, n);
1585 #endif
1586
1587   zmacs_region_stays = 0;
1588   return Qnil;
1589 }
1590
1591 \f
1592 /* Making strings from buffer contents.  */
1593
1594 DEFUN ("buffer-substring", Fbuffer_substring, 0, 3, 0, /*
1595 Return the contents of part of BUFFER as a string.
1596 The two arguments START and END are character positions;
1597 they can be in either order.  If omitted, they default to the beginning
1598 and end of BUFFER, respectively.
1599 If there are duplicable extents in the region, the string remembers
1600 them in its extent data.
1601 If BUFFER is nil, the current buffer is assumed.
1602 */
1603        (start, end, buffer))
1604 {
1605   /* This function can GC */
1606   Bufpos begv, zv;
1607   struct buffer *b = decode_buffer (buffer, 1);
1608
1609   get_buffer_range_char (b, start, end, &begv, &zv, GB_ALLOW_NIL);
1610   return make_string_from_buffer (b, begv, zv - begv);
1611 }
1612
1613 /* It might make more sense to name this
1614    `buffer-substring-no-extents', but this name is FSFmacs-compatible,
1615    and what the function does is probably good enough for what the
1616    user-code will typically want to use it for. */
1617 DEFUN ("buffer-substring-no-properties", Fbuffer_substring_no_properties, 0, 3, 0, /*
1618 Return the text from BEG to END, as a string, without copying the extents.
1619 */
1620        (start, end, buffer))
1621 {
1622   /* This function can GC */
1623   Bufpos begv, zv;
1624   struct buffer *b = decode_buffer (buffer, 1);
1625
1626   get_buffer_range_char (b, start, end, &begv, &zv, GB_ALLOW_NIL);
1627   return make_string_from_buffer_no_extents (b, begv, zv - begv);
1628 }
1629
1630 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, 1, 3, 0, /*
1631 Insert before point a substring of the contents of buffer BUFFER.
1632 BUFFER may be a buffer or a buffer name.
1633 Arguments START and END are character numbers specifying the substring.
1634 They default to the beginning and the end of BUFFER.
1635 */
1636        (buffer, start, end))
1637 {
1638   /* This function can GC */
1639   Bufpos b, e;
1640   struct buffer *bp;
1641
1642   bp = XBUFFER (get_buffer (buffer, 1));
1643   get_buffer_range_char (bp, start, end, &b, &e, GB_ALLOW_NIL);
1644
1645   if (b < e)
1646     buffer_insert_from_buffer (current_buffer, bp, b, e - b);
1647
1648   return Qnil;
1649 }
1650 \f
1651 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, 6, 6, 0, /*
1652 Compare two substrings of two buffers; return result as number.
1653 the value is -N if first string is less after N-1 chars,
1654 +N if first string is greater after N-1 chars, or 0 if strings match.
1655 Each substring is represented as three arguments: BUFFER, START and END.
1656 That makes six args in all, three for each substring.
1657
1658 The value of `case-fold-search' in the current buffer
1659 determines whether case is significant or ignored.
1660 */
1661        (buffer1, start1, end1, buffer2, start2, end2))
1662 {
1663   Bufpos begp1, endp1, begp2, endp2;
1664   REGISTER Charcount len1, len2, length, i;
1665   struct buffer *bp1, *bp2;
1666   Lisp_Object trt = ((!NILP (current_buffer->case_fold_search)) ?
1667                      current_buffer->case_canon_table : Qnil);
1668
1669   /* Find the first buffer and its substring.  */
1670
1671   bp1 = decode_buffer (buffer1, 1);
1672   get_buffer_range_char (bp1, start1, end1, &begp1, &endp1, GB_ALLOW_NIL);
1673
1674   /* Likewise for second substring.  */
1675
1676   bp2 = decode_buffer (buffer2, 1);
1677   get_buffer_range_char (bp2, start2, end2, &begp2, &endp2, GB_ALLOW_NIL);
1678
1679   len1 = endp1 - begp1;
1680   len2 = endp2 - begp2;
1681   length = len1;
1682   if (len2 < length)
1683     length = len2;
1684
1685   for (i = 0; i < length; i++)
1686     {
1687       Emchar c1 = BUF_FETCH_CHAR (bp1, begp1 + i);
1688       Emchar c2 = BUF_FETCH_CHAR (bp2, begp2 + i);
1689       if (!NILP (trt))
1690         {
1691           c1 = TRT_TABLE_OF (trt, c1);
1692           c2 = TRT_TABLE_OF (trt, c2);
1693         }
1694       if (c1 < c2)
1695         return make_int (- 1 - i);
1696       if (c1 > c2)
1697         return make_int (i + 1);
1698     }
1699
1700   /* The strings match as far as they go.
1701      If one is shorter, that one is less.  */
1702   if (length < len1)
1703     return make_int (length + 1);
1704   else if (length < len2)
1705     return make_int (- length - 1);
1706
1707   /* Same length too => they are equal.  */
1708   return Qzero;
1709 }
1710
1711 \f
1712 static Lisp_Object
1713 subst_char_in_region_unwind (Lisp_Object arg)
1714 {
1715   XBUFFER (XCAR (arg))->undo_list = XCDR (arg);
1716   return Qnil;
1717 }
1718
1719 static Lisp_Object
1720 subst_char_in_region_unwind_1 (Lisp_Object arg)
1721 {
1722   XBUFFER (XCAR (arg))->filename = XCDR (arg);
1723   return Qnil;
1724 }
1725
1726 DEFUN ("subst-char-in-region", Fsubst_char_in_region, 4, 5, 0, /*
1727 From START to END, replace FROMCHAR with TOCHAR each time it occurs.
1728 If optional arg NOUNDO is non-nil, don't record this change for undo
1729 and don't mark the buffer as really changed.
1730 */
1731   (start, end, fromchar, tochar, noundo))
1732 {
1733   /* This function can GC */
1734   Bufpos pos, stop;
1735   Emchar fromc, toc;
1736   int mc_count;
1737   struct buffer *buf = current_buffer;
1738   int count = specpdl_depth ();
1739
1740   get_buffer_range_char (buf, start, end, &pos, &stop, 0);
1741   CHECK_CHAR_COERCE_INT (fromchar);
1742   CHECK_CHAR_COERCE_INT (tochar);
1743
1744   fromc = XCHAR (fromchar);
1745   toc = XCHAR (tochar);
1746
1747   /* If we don't want undo, turn off putting stuff on the list.
1748      That's faster than getting rid of things,
1749      and it prevents even the entry for a first change.
1750      Also inhibit locking the file.  */
1751   if (!NILP (noundo))
1752     {
1753       record_unwind_protect (subst_char_in_region_unwind,
1754                              Fcons (Fcurrent_buffer (), buf->undo_list));
1755       buf->undo_list = Qt;
1756       /* Don't do file-locking.  */
1757       record_unwind_protect (subst_char_in_region_unwind_1,
1758                              Fcons (Fcurrent_buffer (), buf->filename));
1759       buf->filename = Qnil;
1760     }
1761
1762   mc_count = begin_multiple_change (buf, pos, stop);
1763   while (pos < stop)
1764     {
1765       if (BUF_FETCH_CHAR (buf, pos) == fromc)
1766         {
1767           /* There used to be some code here that set the buffer to
1768              unmodified if NOUNDO was specified and there was only
1769              one change to the buffer since it was last saved.
1770              This is a crock of shit, so I'm not duplicating this
1771              behavior.  I think this was left over from when
1772              prepare_to_modify_buffer() actually bumped MODIFF,
1773              so that code was supposed to undo this change. --ben */
1774           buffer_replace_char (buf, pos, toc, !NILP (noundo), 0);
1775
1776           /* If noundo is not nil then we don't mark the buffer as
1777              modified.  In reality that needs to happen externally
1778              only.  Internally redisplay needs to know that the actual
1779              contents it should be displaying have changed. */
1780           if (!NILP (noundo))
1781             Fset_buffer_modified_p (Fbuffer_modified_p (Qnil), Qnil);
1782         }
1783       pos++;
1784     }
1785   end_multiple_change (buf, mc_count);
1786
1787   unbind_to (count, Qnil);
1788   return Qnil;
1789 }
1790
1791 /* #### Shouldn't this also accept a BUFFER argument, in the good old
1792    XEmacs tradition?  */
1793 DEFUN ("translate-region", Ftranslate_region, 3, 3, 0, /*
1794 Translate characters from START to END according to TABLE.
1795
1796 If TABLE is a string, the Nth character in it is the mapping for the
1797 character with code N.
1798
1799 If TABLE is a vector, its Nth element is the mapping for character
1800 with code N.  The values of elements may be characters, strings, or
1801 nil (nil meaning don't replace.)
1802
1803 If TABLE is a char-table, its elements describe the mapping between
1804 characters and their replacements.  The char-table should be of type
1805 `char' or `generic'.
1806
1807 Returns the number of substitutions performed.
1808 */
1809        (start, end, table))
1810 {
1811   /* This function can GC */
1812   Bufpos pos, stop;     /* Limits of the region. */
1813   int cnt = 0;          /* Number of changes made. */
1814   int mc_count;
1815   struct buffer *buf = current_buffer;
1816   Emchar oc;
1817
1818   get_buffer_range_char (buf, start, end, &pos, &stop, 0);
1819   mc_count = begin_multiple_change (buf, pos, stop);
1820   if (STRINGP (table))
1821     {
1822       struct Lisp_String *stable = XSTRING (table);
1823       Charcount size = string_char_length (stable);
1824 #ifdef MULE
1825       /* Under Mule, string_char(n) is O(n), so for large tables or
1826          large regions it makes sense to create an array of Emchars.  */
1827       if (size * (stop - pos) > 65536)
1828         {
1829           Emchar *etable = alloca_array (Emchar, size);
1830           convert_bufbyte_string_into_emchar_string
1831             (string_data (stable), string_length (stable), etable);
1832           for (; pos < stop && (oc = BUF_FETCH_CHAR (buf, pos), 1); pos++)
1833             {
1834               if (oc < size)
1835                 {
1836                   Emchar nc = etable[oc];
1837                   if (nc != oc)
1838                     {
1839                       buffer_replace_char (buf, pos, nc, 0, 0);
1840                       ++cnt;
1841                     }
1842                 }
1843             }
1844         }
1845       else
1846 #endif /* MULE */
1847         {
1848           for (; pos < stop && (oc = BUF_FETCH_CHAR (buf, pos), 1); pos++)
1849             {
1850               if (oc < size)
1851                 {
1852                   Emchar nc = string_char (stable, oc);
1853                   if (nc != oc)
1854                     {
1855                       buffer_replace_char (buf, pos, nc, 0, 0);
1856                       ++cnt;
1857                     }
1858                 }
1859             }
1860         }
1861     }
1862   else if (VECTORP (table))
1863     {
1864       Charcount size = XVECTOR_LENGTH (table);
1865       Lisp_Object *vtable = XVECTOR_DATA (table);
1866
1867       for (; pos < stop && (oc = BUF_FETCH_CHAR (buf, pos), 1); pos++)
1868         {
1869           if (oc < size)
1870             {
1871               Lisp_Object replacement = vtable[oc];
1872             retry:
1873               if (CHAR_OR_CHAR_INTP (replacement))
1874                 {
1875                   Emchar nc = XCHAR_OR_CHAR_INT (replacement);
1876                   if (nc != oc)
1877                     {
1878                       buffer_replace_char (buf, pos, nc, 0, 0);
1879                       ++cnt;
1880                     }
1881                 }
1882               else if (STRINGP (replacement))
1883                 {
1884                   Charcount incr = XSTRING_CHAR_LENGTH (replacement) - 1;
1885                   buffer_delete_range (buf, pos, pos + 1, 0);
1886                   buffer_insert_lisp_string_1 (buf, pos, replacement, 0);
1887                   pos += incr, stop += incr;
1888                   ++cnt;
1889                 }
1890               else if (!NILP (replacement))
1891                 {
1892                   replacement = wrong_type_argument (Qchar_or_string_p, replacement);
1893                   goto retry;
1894                 }
1895             }
1896         }
1897     }
1898   else if (CHAR_TABLEP (table)
1899            && (XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_GENERIC
1900                || XCHAR_TABLE_TYPE (table) == CHAR_TABLE_TYPE_CHAR))
1901     {
1902       struct Lisp_Char_Table *ctable = XCHAR_TABLE (table);
1903
1904       for (; pos < stop && (oc = BUF_FETCH_CHAR (buf, pos), 1); pos++)
1905         {
1906           Lisp_Object replacement = get_char_table (oc, ctable);
1907         retry2:
1908           if (CHAR_OR_CHAR_INTP (replacement))
1909             {
1910               Emchar nc = XCHAR_OR_CHAR_INT (replacement);
1911               if (nc != oc)
1912                 {
1913                   buffer_replace_char (buf, pos, nc, 0, 0);
1914                   ++cnt;
1915                 }
1916             }
1917           else if (STRINGP (replacement))
1918             {
1919               Charcount incr = XSTRING_CHAR_LENGTH (replacement) - 1;
1920               buffer_delete_range (buf, pos, pos + 1, 0);
1921               buffer_insert_lisp_string_1 (buf, pos, replacement, 0);
1922               pos += incr, stop += incr;
1923               ++cnt;
1924             }
1925           else if (!NILP (replacement))
1926             {
1927               replacement = wrong_type_argument (Qchar_or_string_p, replacement);
1928               goto retry2;
1929             }
1930         }
1931     }
1932   else
1933     dead_wrong_type_argument (Qstringp, table);
1934   end_multiple_change (buf, mc_count);
1935
1936   return make_int (cnt);
1937 }
1938
1939 DEFUN ("delete-region", Fdelete_region, 2, 3, "r", /*
1940 Delete the text between point and mark.
1941 When called from a program, expects two arguments,
1942 positions (integers or markers) specifying the stretch to be deleted.
1943 If BUFFER is nil, the current buffer is assumed.
1944 */
1945        (b, e, buffer))
1946 {
1947   /* This function can GC */
1948   Bufpos start, end;
1949   struct buffer *buf = decode_buffer (buffer, 1);
1950
1951   get_buffer_range_char (buf, b, e, &start, &end, 0);
1952   buffer_delete_range (buf, start, end, 0);
1953   zmacs_region_stays = 0;
1954   return Qnil;
1955 }
1956 \f
1957 void
1958 widen_buffer (struct buffer *b, int no_clip)
1959 {
1960   if (BUF_BEGV (b) != BUF_BEG (b))
1961     {
1962       clip_changed = 1;
1963       SET_BOTH_BUF_BEGV (b, BUF_BEG (b), BI_BUF_BEG (b));
1964     }
1965   if (BUF_ZV (b) != BUF_Z (b))
1966     {
1967       clip_changed = 1;
1968       SET_BOTH_BUF_ZV (b, BUF_Z (b), BI_BUF_Z (b));
1969     }
1970   if (clip_changed)
1971     {
1972       if (!no_clip)
1973         MARK_CLIP_CHANGED;
1974       /* Changing the buffer bounds invalidates any recorded current
1975          column.  */
1976       invalidate_current_column ();
1977       narrow_line_number_cache (b);
1978     }
1979 }
1980
1981 DEFUN ("widen", Fwiden, 0, 1, "", /*
1982 Remove restrictions (narrowing) from BUFFER.
1983 This allows the buffer's full text to be seen and edited.
1984 If BUFFER is nil, the current buffer is assumed.
1985 */
1986        (buffer))
1987 {
1988   struct buffer *b = decode_buffer (buffer, 1);
1989   widen_buffer (b, 0);
1990   zmacs_region_stays = 0;
1991   return Qnil;
1992 }
1993
1994 DEFUN ("narrow-to-region", Fnarrow_to_region, 2, 3, "r", /*
1995 Restrict editing in BUFFER to the current region.
1996 The rest of the text becomes temporarily invisible and untouchable
1997 but is not deleted; if you save the buffer in a file, the invisible
1998 text is included in the file.  \\[widen] makes all visible again.
1999 If BUFFER is nil, the current buffer is assumed.
2000 See also `save-restriction'.
2001
2002 When calling from a program, pass two arguments; positions (integers
2003 or markers) bounding the text that should remain visible.
2004 */
2005        (b, e, buffer))
2006 {
2007   Bufpos start, end;
2008   struct buffer *buf = decode_buffer (buffer, 1);
2009   Bytind bi_start, bi_end;
2010
2011   get_buffer_range_char (buf, b, e, &start, &end, GB_ALLOW_PAST_ACCESSIBLE);
2012   bi_start = bufpos_to_bytind (buf, start);
2013   bi_end = bufpos_to_bytind (buf, end);
2014
2015   SET_BOTH_BUF_BEGV (buf, start, bi_start);
2016   SET_BOTH_BUF_ZV (buf, end, bi_end);
2017   if (BUF_PT (buf) < start)
2018     BUF_SET_PT (buf, start);
2019   if (BUF_PT (buf) > end)
2020     BUF_SET_PT (buf, end);
2021   MARK_CLIP_CHANGED;
2022   /* Changing the buffer bounds invalidates any recorded current column.  */
2023   invalidate_current_column ();
2024   narrow_line_number_cache (buf);
2025   zmacs_region_stays = 0;
2026   return Qnil;
2027 }
2028
2029 Lisp_Object
2030 save_restriction_save (void)
2031 {
2032   Lisp_Object bottom, top;
2033   /* Note: I tried using markers here, but it does not win
2034      because insertion at the end of the saved region
2035      does not advance mh and is considered "outside" the saved region. */
2036   bottom = make_int (BUF_BEGV (current_buffer) - BUF_BEG (current_buffer));
2037   top = make_int (BUF_Z (current_buffer) - BUF_ZV (current_buffer));
2038
2039   return noseeum_cons (Fcurrent_buffer (), noseeum_cons (bottom, top));
2040 }
2041
2042 Lisp_Object
2043 save_restriction_restore (Lisp_Object data)
2044 {
2045   struct buffer *buf;
2046   Charcount newhead, newtail;
2047   Lisp_Object tem;
2048   int local_clip_changed = 0;
2049
2050   buf = XBUFFER (XCAR (data));
2051   if (!BUFFER_LIVE_P (buf))
2052     {
2053       /* someone could have killed the buffer in the meantime ... */
2054       free_cons (XCONS (XCDR (data)));
2055       free_cons (XCONS (data));
2056       return Qnil;
2057     }
2058   tem = XCDR (data);
2059   newhead = XINT (XCAR (tem));
2060   newtail = XINT (XCDR (tem));
2061
2062   free_cons (XCONS (XCDR (data)));
2063   free_cons (XCONS (data));
2064
2065   if (newhead + newtail > BUF_Z (buf) - BUF_BEG (buf))
2066     {
2067       newhead = 0;
2068       newtail = 0;
2069     }
2070
2071   {
2072     Bufpos start, end;
2073     Bytind bi_start, bi_end;
2074
2075     start = BUF_BEG (buf) + newhead;
2076     end = BUF_Z (buf) - newtail;
2077
2078     bi_start = bufpos_to_bytind (buf, start);
2079     bi_end = bufpos_to_bytind (buf, end);
2080
2081     if (BUF_BEGV (buf) != start)
2082       {
2083         local_clip_changed = 1;
2084         SET_BOTH_BUF_BEGV (buf, start, bi_start);
2085         narrow_line_number_cache (buf);
2086       }
2087     if (BUF_ZV (buf) != end)
2088       {
2089         local_clip_changed = 1;
2090         SET_BOTH_BUF_ZV (buf, end, bi_end);
2091       }
2092   }
2093   if (local_clip_changed)
2094     MARK_CLIP_CHANGED;
2095
2096   /* If point is outside the new visible range, move it inside. */
2097   BUF_SET_PT (buf,
2098               bufpos_clip_to_bounds (BUF_BEGV (buf),
2099                                      BUF_PT (buf),
2100                                      BUF_ZV (buf)));
2101
2102   return Qnil;
2103 }
2104
2105 DEFUN ("save-restriction", Fsave_restriction, 0, UNEVALLED, 0, /*
2106 Execute BODY, saving and restoring current buffer's restrictions.
2107 The buffer's restrictions make parts of the beginning and end invisible.
2108 \(They are set up with `narrow-to-region' and eliminated with `widen'.)
2109 This special form, `save-restriction', saves the current buffer's restrictions
2110 when it is entered, and restores them when it is exited.
2111 So any `narrow-to-region' within BODY lasts only until the end of the form.
2112 The old restrictions settings are restored
2113 even in case of abnormal exit (throw or error).
2114
2115 The value returned is the value of the last form in BODY.
2116
2117 `save-restriction' can get confused if, within the BODY, you widen
2118 and then make changes outside the area within the saved restrictions.
2119
2120 Note: if you are using both `save-excursion' and `save-restriction',
2121 use `save-excursion' outermost:
2122     (save-excursion (save-restriction ...))
2123 */
2124        (body))
2125 {
2126   /* This function can GC */
2127   int speccount = specpdl_depth ();
2128
2129   record_unwind_protect (save_restriction_restore, save_restriction_save ());
2130
2131   return unbind_to (speccount, Fprogn (body));
2132 }
2133
2134 \f
2135 DEFUN ("format", Fformat, 1, MANY, 0, /*
2136 Format a string out of a control-string and arguments.
2137 The first argument is a control string.
2138 The other arguments are substituted into it to make the result, a string.
2139 It may contain %-sequences meaning to substitute the next argument.
2140 %s means print all objects as-is, using `princ'.
2141 %S means print all objects as s-expressions, using `prin1'.
2142 %d or %i means print as an integer in decimal (%o octal, %x lowercase hex,
2143   %X uppercase hex).
2144 %c means print as a single character.
2145 %f means print as a floating-point number in fixed notation (e.g. 785.200).
2146 %e or %E means print as a floating-point number in scientific notation
2147   (e.g. 7.85200e+03).
2148 %g or %G means print as a floating-point number in "pretty format";
2149   depending on the number, either %f or %e/%E format will be used, and
2150   trailing zeroes are removed from the fractional part.
2151 The argument used for all but %s and %S must be a number.  It will be
2152   converted to an integer or a floating-point number as necessary.
2153
2154 %$ means reposition to read a specific numbered argument; for example,
2155   %3$s would apply the `%s' to the third argument after the control string,
2156   and the next format directive would use the fourth argument, the
2157   following one the fifth argument, etc. (There must be a positive integer
2158   between the % and the $).
2159 Zero or more of the flag characters `-', `+', ` ', `0', and `#' may be
2160   specified between the optional repositioning spec and the conversion
2161   character; see below.
2162 An optional minimum field width may be specified after any flag characters
2163   and before the conversion character; it specifies the minimum number of
2164   characters that the converted argument will take up.  Padding will be
2165   added on the left (or on the right, if the `-' flag is specified), as
2166   necessary.  Padding is done with spaces, or with zeroes if the `0' flag
2167   is specified.
2168 If the field width is specified as `*', the field width is assumed to have
2169   been specified as an argument.  Any repositioning specification that
2170   would normally specify the argument to be converted will now specify
2171   where to find this field width argument, not where to find the argument
2172   to be converted.  If there is no repositioning specification, the normal
2173   next argument is used.  The argument to be converted will be the next
2174   argument after the field width argument unless the precision is also
2175   specified as `*' (see below).
2176
2177 An optional period character and precision may be specified after any
2178   minimum field width.  It specifies the minimum number of digits to
2179   appear in %d, %i, %o, %x, and %X conversions (the number is padded
2180   on the left with zeroes as necessary); the number of digits printed
2181   after the decimal point for %f, %e, and %E conversions; the number
2182   of significant digits printed in %g and %G conversions; and the
2183   maximum number of non-padding characters printed in %s and %S
2184   conversions.  The default precision for floating-point conversions
2185   is six.
2186 If the precision is specified as `*', the precision is assumed to have been
2187   specified as an argument.  The argument used will be the next argument
2188   after the field width argument, if any.  If the field width was not
2189   specified as an argument, any repositioning specification that would
2190   normally specify the argument to be converted will now specify where to
2191   find the precision argument.  If there is no repositioning specification,
2192   the normal next argument is used.
2193
2194 The ` ' and `+' flags mean prefix non-negative numbers with a space or
2195   plus sign, respectively.
2196 The `#' flag means print numbers in an alternate, more verbose format:
2197   octal numbers begin with zero; hex numbers begin with a 0x or 0X;
2198   a decimal point is printed in %f, %e, and %E conversions even if no
2199   numbers are printed after it; and trailing zeroes are not omitted in
2200    %g and %G conversions.
2201
2202 Use %% to put a single % into the output.
2203 */
2204        (int nargs, Lisp_Object *args))
2205 {
2206   /* It should not be necessary to GCPRO ARGS, because
2207      the caller in the interpreter should take care of that.  */
2208
2209   CHECK_STRING (args[0]);
2210   return emacs_doprnt_string_lisp (0, args[0], 0, nargs - 1, args + 1);
2211 }
2212
2213 \f
2214 DEFUN ("char-equal", Fchar_equal, 2, 3, 0, /*
2215 Return t if two characters match, optionally ignoring case.
2216 Both arguments must be characters (i.e. NOT integers).
2217 Case is ignored if `case-fold-search' is non-nil in BUFFER.
2218 If BUFFER is nil, the current buffer is assumed.
2219 */
2220        (c1, c2, buffer))
2221 {
2222   Emchar x1, x2;
2223   struct buffer *b = decode_buffer (buffer, 1);
2224
2225   CHECK_CHAR_COERCE_INT (c1);
2226   CHECK_CHAR_COERCE_INT (c2);
2227   x1 = XCHAR (c1);
2228   x2 = XCHAR (c2);
2229
2230   return (!NILP (b->case_fold_search)
2231           ? DOWNCASE (b, x1) == DOWNCASE (b, x2)
2232           : x1 == x2)
2233     ? Qt : Qnil;
2234 }
2235
2236 DEFUN ("char=", Fchar_Equal, 2, 2, 0, /*
2237 Return t if two characters match, case is significant.
2238 Both arguments must be characters (i.e. NOT integers).
2239 */
2240        (c1, c2))
2241 {
2242   CHECK_CHAR_COERCE_INT (c1);
2243   CHECK_CHAR_COERCE_INT (c2);
2244
2245   return EQ (c1, c2) ? Qt : Qnil;
2246 }
2247 \f
2248 #if 0 /* Undebugged FSFmacs code */
2249 /* Transpose the markers in two regions of the current buffer, and
2250    adjust the ones between them if necessary (i.e.: if the regions
2251    differ in size).
2252
2253    Traverses the entire marker list of the buffer to do so, adding an
2254    appropriate amount to some, subtracting from some, and leaving the
2255    rest untouched.  Most of this is copied from adjust_markers in insdel.c.
2256
2257    It's the caller's job to see that (start1 <= end1 <= start2 <= end2).  */
2258
2259 void
2260 transpose_markers (Bufpos start1, Bufpos end1, Bufpos start2, Bufpos end2)
2261 {
2262   Charcount amt1, amt2, diff;
2263   Lisp_Object marker;
2264   struct buffer *buf = current_buffer;
2265
2266   /* Update point as if it were a marker.  */
2267   if (BUF_PT (buf) < start1)
2268     ;
2269   else if (BUF_PT (buf) < end1)
2270     BUF_SET_PT (buf, BUF_PT (buf) + (end2 - end1));
2271   else if (BUF_PT (buf) < start2)
2272     BUF_SET_PT (buf, BUF_PT (buf) + (end2 - start2) - (end1 - start1));
2273   else if (BUF_PT (buf) < end2)
2274     BUF_SET_PT (buf, BUF_PT (buf) - (start2 - start1));
2275
2276   /* We used to adjust the endpoints here to account for the gap, but that
2277      isn't good enough.  Even if we assume the caller has tried to move the
2278      gap out of our way, it might still be at start1 exactly, for example;
2279      and that places it `inside' the interval, for our purposes.  The amount
2280      of adjustment is nontrivial if there's a `denormalized' marker whose
2281      position is between GPT and GPT + GAP_SIZE, so it's simpler to leave
2282      the dirty work to Fmarker_position, below.  */
2283
2284   /* The difference between the region's lengths */
2285   diff = (end2 - start2) - (end1 - start1);
2286
2287   /* For shifting each marker in a region by the length of the other
2288    * region plus the distance between the regions.
2289    */
2290   amt1 = (end2 - start2) + (start2 - end1);
2291   amt2 = (end1 - start1) + (start2 - end1);
2292
2293   for (marker = BUF_MARKERS (buf); !NILP (marker);
2294        marker = XMARKER (marker)->chain)
2295     {
2296       Bufpos mpos = marker_position (marker);
2297       if (mpos >= start1 && mpos < end2)
2298         {
2299           if (mpos < end1)
2300             mpos += amt1;
2301           else if (mpos < start2)
2302             mpos += diff;
2303           else
2304             mpos -= amt2;
2305           set_marker_position (marker, mpos);
2306         }
2307     }
2308 }
2309
2310 #endif /* 0 */
2311
2312 DEFUN ("transpose-regions", Ftranspose_regions, 4, 5, 0, /*
2313 Transpose region START1 to END1 with START2 to END2.
2314 The regions may not be overlapping, because the size of the buffer is
2315 never changed in a transposition.
2316
2317 Optional fifth arg LEAVE_MARKERS, if non-nil, means don't transpose
2318 any markers that happen to be located in the regions. (#### BUG: currently
2319 this function always acts as if LEAVE_MARKERS is non-nil.)
2320
2321 Transposing beyond buffer boundaries is an error.
2322 */
2323   (startr1, endr1, startr2, endr2, leave_markers))
2324 {
2325   Bufpos start1, end1, start2, end2;
2326   Charcount len1, len2;
2327   Lisp_Object string1, string2;
2328   struct buffer *buf = current_buffer;
2329
2330   get_buffer_range_char (buf, startr1, endr1, &start1, &end1, 0);
2331   get_buffer_range_char (buf, startr2, endr2, &start2, &end2, 0);
2332
2333   len1 = end1 - start1;
2334   len2 = end2 - start2;
2335
2336   if (start2 < end1)
2337     error ("transposed regions not properly ordered");
2338   else if (start1 == end1 || start2 == end2)
2339     error ("transposed region may not be of length 0");
2340
2341   string1 = make_string_from_buffer (buf, start1, len1);
2342   string2 = make_string_from_buffer (buf, start2, len2);
2343   buffer_delete_range (buf, start2, end2, 0);
2344   buffer_insert_lisp_string_1 (buf, start2, string1, 0);
2345   buffer_delete_range (buf, start1, end1, 0);
2346   buffer_insert_lisp_string_1 (buf, start1, string2, 0);
2347
2348   /* In FSFmacs there is a whole bunch of really ugly code here
2349      to attempt to transpose the regions without using up any
2350      extra memory.  Although the intent may be good, the result
2351      was highly bogus. */
2352
2353   return Qnil;
2354 }
2355
2356 \f
2357 /************************************************************************/
2358 /*                            initialization                            */
2359 /************************************************************************/
2360
2361 void
2362 syms_of_editfns (void)
2363 {
2364   defsymbol (&Qpoint, "point");
2365   defsymbol (&Qmark, "mark");
2366   defsymbol (&Qregion_beginning, "region-beginning");
2367   defsymbol (&Qregion_end, "region-end");
2368   defsymbol (&Qformat, "format");
2369   defsymbol (&Quser_files_and_directories, "user-files-and-directories");
2370
2371   DEFSUBR (Fchar_equal);
2372   DEFSUBR (Fchar_Equal);
2373   DEFSUBR (Fgoto_char);
2374   DEFSUBR (Fstring_to_char);
2375   DEFSUBR (Fchar_to_string);
2376   DEFSUBR (Fbuffer_substring);
2377   DEFSUBR (Fbuffer_substring_no_properties);
2378
2379   DEFSUBR (Fpoint_marker);
2380   DEFSUBR (Fmark_marker);
2381   DEFSUBR (Fpoint);
2382   DEFSUBR (Fregion_beginning);
2383   DEFSUBR (Fregion_end);
2384   DEFSUBR (Fsave_excursion);
2385   DEFSUBR (Fsave_current_buffer);
2386
2387   DEFSUBR (Fbuffer_size);
2388   DEFSUBR (Fpoint_max);
2389   DEFSUBR (Fpoint_min);
2390   DEFSUBR (Fpoint_min_marker);
2391   DEFSUBR (Fpoint_max_marker);
2392
2393   DEFSUBR (Fbobp);
2394   DEFSUBR (Feobp);
2395   DEFSUBR (Fbolp);
2396   DEFSUBR (Feolp);
2397   DEFSUBR (Ffollowing_char);
2398   DEFSUBR (Fpreceding_char);
2399   DEFSUBR (Fchar_after);
2400   DEFSUBR (Fchar_before);
2401   DEFSUBR (Finsert);
2402   DEFSUBR (Finsert_string);
2403   DEFSUBR (Finsert_before_markers);
2404   DEFSUBR (Finsert_char);
2405
2406   DEFSUBR (Ftemp_directory);
2407   DEFSUBR (Fuser_login_name);
2408   DEFSUBR (Fuser_real_login_name);
2409   DEFSUBR (Fuser_uid);
2410   DEFSUBR (Fuser_real_uid);
2411   DEFSUBR (Fuser_full_name);
2412   DEFSUBR (Fuser_home_directory);
2413   DEFSUBR (Femacs_pid);
2414   DEFSUBR (Fcurrent_time);
2415   DEFSUBR (Fcurrent_process_time);
2416   DEFSUBR (Fformat_time_string);
2417   DEFSUBR (Fdecode_time);
2418   DEFSUBR (Fencode_time);
2419   DEFSUBR (Fcurrent_time_string);
2420   DEFSUBR (Fcurrent_time_zone);
2421   DEFSUBR (Fset_time_zone_rule);
2422   DEFSUBR (Fsystem_name);
2423   DEFSUBR (Fformat);
2424
2425   DEFSUBR (Finsert_buffer_substring);
2426   DEFSUBR (Fcompare_buffer_substrings);
2427   DEFSUBR (Fsubst_char_in_region);
2428   DEFSUBR (Ftranslate_region);
2429   DEFSUBR (Fdelete_region);
2430   DEFSUBR (Fwiden);
2431   DEFSUBR (Fnarrow_to_region);
2432   DEFSUBR (Fsave_restriction);
2433   DEFSUBR (Ftranspose_regions);
2434
2435   defsymbol (&Qzmacs_update_region, "zmacs-update-region");
2436   defsymbol (&Qzmacs_deactivate_region, "zmacs-deactivate-region");
2437   defsymbol (&Qzmacs_region_buffer, "zmacs-region-buffer");
2438 }
2439
2440 void
2441 vars_of_editfns (void)
2442 {
2443   staticpro (&Vsystem_name);
2444 #if 0
2445   staticpro (&Vuser_name);
2446   staticpro (&Vuser_real_name);
2447 #endif
2448   DEFVAR_BOOL ("zmacs-regions", &zmacs_regions /*
2449 *Whether LISPM-style active regions should be used.
2450 This means that commands which operate on the region (the area between the
2451 point and the mark) will only work while the region is in the ``active''
2452 state, which is indicated by highlighting.  Executing most commands causes
2453 the region to not be in the active state, so (for example) \\[kill-region] will only
2454 work immediately after activating the region.
2455
2456 More specifically:
2457
2458  - Commands which operate on the region only work if the region is active.
2459  - Only a very small set of commands cause the region to become active:
2460    Those commands whose semantics are to mark an area, like mark-defun.
2461  - The region is deactivated after each command that is executed, except that:
2462  - "Motion" commands do not change whether the region is active or not.
2463
2464 set-mark-command (C-SPC) pushes a mark and activates the region.  Moving the
2465 cursor with normal motion commands (C-n, C-p, etc) will cause the region
2466 between point and the recently-pushed mark to be highlighted.  It will
2467 remain highlighted until some non-motion command is executed.
2468
2469 exchange-point-and-mark (\\[exchange-point-and-mark]) activates the region.  So if you mark a
2470 region and execute a command that operates on it, you can reactivate the
2471 same region with \\[exchange-point-and-mark] (or perhaps \\[exchange-point-and-mark] \\[exchange-point-and-mark]) to operate on it
2472 again.
2473
2474 Generally, commands which push marks as a means of navigation (like
2475 beginning-of-buffer and end-of-buffer (M-< and M->)) do not activate the
2476 region.  But commands which push marks as a means of marking an area of
2477 text (like mark-defun (\\[mark-defun]), mark-word (\\[mark-word]) or mark-whole-buffer (\\[mark-whole-buffer]))
2478 do activate the region.
2479
2480 The way the command loop actually works with regard to deactivating the
2481 region is as follows:
2482
2483 - If the variable `zmacs-region-stays' has been set to t during the command
2484   just executed, the region is left alone (this is how the motion commands
2485   make the region stay around; see the `_' flag in the `interactive'
2486   specification).  `zmacs-region-stays' is reset to nil before each command
2487   is executed.
2488 - If the function `zmacs-activate-region' has been called during the command
2489   just executed, the region is left alone.  Very few functions should
2490   actually call this function.
2491 - Otherwise, if the region is active, the region is deactivated and
2492   the `zmacs-deactivate-region-hook' is called.
2493 */ );
2494   /* Zmacs style active regions are now ON by default */
2495   zmacs_regions = 1;
2496
2497   DEFVAR_BOOL ("zmacs-region-active-p", &zmacs_region_active_p /*
2498 Do not alter this.  It is for internal use only.
2499 */ );
2500   zmacs_region_active_p = 0;
2501
2502   DEFVAR_BOOL ("zmacs-region-stays", &zmacs_region_stays /*
2503 Whether the current command will deactivate the region.
2504 Commands which do not wish to affect whether the region is currently
2505 highlighted should set this to t.  Normally, the region is turned off after
2506 executing each command that did not explicitly turn it on with the function
2507 zmacs-activate-region. Setting this to true lets a command be non-intrusive.
2508 See the variable `zmacs-regions'.
2509
2510 The same effect can be achieved using the `_' interactive specification.
2511 */ );
2512   zmacs_region_stays = 0;
2513
2514   DEFVAR_BOOL ("atomic-extent-goto-char-p", &atomic_extent_goto_char_p /*
2515 Do not use this -- it will be going away soon.
2516 Indicates if `goto-char' has just been run.  This information is allegedly
2517 needed to get the desired behavior for atomic extents and unfortunately
2518 is not available by any other means.
2519 */ );
2520   atomic_extent_goto_char_p = 0;
2521 #ifdef AMPERSAND_FULL_NAME
2522   Fprovide(intern("ampersand-full-name"));
2523 #endif
2524
2525   DEFVAR_LISP ("user-full-name", &Vuser_full_name /*
2526 *The name of the user.
2527 The function `user-full-name', which will return the value of this
2528  variable, when called without arguments.
2529 This is initialized to the value of the NAME environment variable.
2530 */ );
2531   /* Initialized at run-time. */
2532   Vuser_full_name = Qnil;
2533 }