(Fcurrent_time_zone): Make `am' an int, not long.
[bpt/emacs.git] / src / editfns.c
1 /* Lisp functions pertaining to editing.
2 Copyright (C) 1985, 1986, 1987, 1989, 1993 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 #include <sys/types.h>
22
23 #include "config.h"
24
25 #ifdef VMS
26 #include "vms-pwd.h"
27 #else
28 #include <pwd.h>
29 #endif
30
31 #include "lisp.h"
32 #include "intervals.h"
33 #include "buffer.h"
34 #include "window.h"
35
36 #include "systime.h"
37
38 #define min(a, b) ((a) < (b) ? (a) : (b))
39 #define max(a, b) ((a) > (b) ? (a) : (b))
40
41 /* Some static data, and a function to initialize it for each run */
42
43 Lisp_Object Vsystem_name;
44 Lisp_Object Vuser_real_name; /* login name of current user ID */
45 Lisp_Object Vuser_full_name; /* full name of current user */
46 Lisp_Object Vuser_name; /* user name from USER or LOGNAME. */
47
48 void
49 init_editfns ()
50 {
51 char *user_name;
52 register unsigned char *p, *q, *r;
53 struct passwd *pw; /* password entry for the current user */
54 extern char *index ();
55 Lisp_Object tem;
56
57 /* Set up system_name even when dumping. */
58
59 Vsystem_name = build_string (get_system_name ());
60 p = XSTRING (Vsystem_name)->data;
61 while (*p)
62 {
63 if (*p == ' ' || *p == '\t')
64 *p = '-';
65 p++;
66 }
67
68 #ifndef CANNOT_DUMP
69 /* Don't bother with this on initial start when just dumping out */
70 if (!initialized)
71 return;
72 #endif /* not CANNOT_DUMP */
73
74 pw = (struct passwd *) getpwuid (getuid ());
75 Vuser_real_name = build_string (pw ? pw->pw_name : "unknown");
76
77 /* Get the effective user name, by consulting environment variables,
78 or the effective uid if those are unset. */
79 user_name = (char *) getenv ("USER");
80 if (!user_name)
81 user_name = (char *) getenv ("LOGNAME");
82 if (!user_name)
83 {
84 pw = (struct passwd *) getpwuid (geteuid ());
85 user_name = (char *) (pw ? pw->pw_name : "unknown");
86 }
87 Vuser_name = build_string (user_name);
88
89 /* If the user name claimed in the environment vars differs from
90 the real uid, use the claimed name to find the full name. */
91 tem = Fstring_equal (Vuser_name, Vuser_real_name);
92 if (NILP (tem))
93 pw = (struct passwd *) getpwnam (XSTRING (Vuser_name)->data);
94
95 p = (unsigned char *) (pw ? USER_FULL_NAME : "unknown");
96 q = (unsigned char *) index (p, ',');
97 Vuser_full_name = make_string (p, q ? q - p : strlen (p));
98
99 #ifdef AMPERSAND_FULL_NAME
100 p = XSTRING (Vuser_full_name)->data;
101 q = (char *) index (p, '&');
102 /* Substitute the login name for the &, upcasing the first character. */
103 if (q)
104 {
105 r = (char *) alloca (strlen (p) + XSTRING (Vuser_name)->size + 1);
106 bcopy (p, r, q - p);
107 r[q - p] = 0;
108 strcat (r, XSTRING (Vuser_name)->data);
109 r[q - p] = UPCASE (r[q - p]);
110 strcat (r, q + 1);
111 Vuser_full_name = build_string (r);
112 }
113 #endif /* AMPERSAND_FULL_NAME */
114 }
115 \f
116 DEFUN ("char-to-string", Fchar_to_string, Schar_to_string, 1, 1, 0,
117 "Convert arg CHAR to a one-character string containing that character.")
118 (n)
119 Lisp_Object n;
120 {
121 char c;
122 CHECK_NUMBER (n, 0);
123
124 c = XINT (n);
125 return make_string (&c, 1);
126 }
127
128 DEFUN ("string-to-char", Fstring_to_char, Sstring_to_char, 1, 1, 0,
129 "Convert arg STRING to a character, the first character of that string.")
130 (str)
131 register Lisp_Object str;
132 {
133 register Lisp_Object val;
134 register struct Lisp_String *p;
135 CHECK_STRING (str, 0);
136
137 p = XSTRING (str);
138 if (p->size)
139 XFASTINT (val) = ((unsigned char *) p->data)[0];
140 else
141 XFASTINT (val) = 0;
142 return val;
143 }
144 \f
145 static Lisp_Object
146 buildmark (val)
147 int val;
148 {
149 register Lisp_Object mark;
150 mark = Fmake_marker ();
151 Fset_marker (mark, make_number (val), Qnil);
152 return mark;
153 }
154
155 DEFUN ("point", Fpoint, Spoint, 0, 0, 0,
156 "Return value of point, as an integer.\n\
157 Beginning of buffer is position (point-min)")
158 ()
159 {
160 Lisp_Object temp;
161 XFASTINT (temp) = point;
162 return temp;
163 }
164
165 DEFUN ("point-marker", Fpoint_marker, Spoint_marker, 0, 0, 0,
166 "Return value of point, as a marker object.")
167 ()
168 {
169 return buildmark (point);
170 }
171
172 int
173 clip_to_bounds (lower, num, upper)
174 int lower, num, upper;
175 {
176 if (num < lower)
177 return lower;
178 else if (num > upper)
179 return upper;
180 else
181 return num;
182 }
183
184 DEFUN ("goto-char", Fgoto_char, Sgoto_char, 1, 1, "NGoto char: ",
185 "Set point to POSITION, a number or marker.\n\
186 Beginning of buffer is position (point-min), end is (point-max).")
187 (n)
188 register Lisp_Object n;
189 {
190 CHECK_NUMBER_COERCE_MARKER (n, 0);
191
192 SET_PT (clip_to_bounds (BEGV, XINT (n), ZV));
193 return n;
194 }
195
196 static Lisp_Object
197 region_limit (beginningp)
198 int beginningp;
199 {
200 register Lisp_Object m;
201 if (!NILP (Vtransient_mark_mode) && NILP (current_buffer->mark_active))
202 error ("There is no region now");
203 m = Fmarker_position (current_buffer->mark);
204 if (NILP (m)) error ("There is no region now");
205 if ((point < XFASTINT (m)) == beginningp)
206 return (make_number (point));
207 else
208 return (m);
209 }
210
211 DEFUN ("region-beginning", Fregion_beginning, Sregion_beginning, 0, 0, 0,
212 "Return position of beginning of region, as an integer.")
213 ()
214 {
215 return (region_limit (1));
216 }
217
218 DEFUN ("region-end", Fregion_end, Sregion_end, 0, 0, 0,
219 "Return position of end of region, as an integer.")
220 ()
221 {
222 return (region_limit (0));
223 }
224
225 #if 0 /* now in lisp code */
226 DEFUN ("mark", Fmark, Smark, 0, 0, 0,
227 "Return this buffer's mark value as integer, or nil if no mark.\n\
228 If you are using this in an editing command, you are most likely making\n\
229 a mistake; see the documentation of `set-mark'.")
230 ()
231 {
232 return Fmarker_position (current_buffer->mark);
233 }
234 #endif /* commented out code */
235
236 DEFUN ("mark-marker", Fmark_marker, Smark_marker, 0, 0, 0,
237 "Return this buffer's mark, as a marker object.\n\
238 Watch out! Moving this marker changes the mark position.\n\
239 If you set the marker not to point anywhere, the buffer will have no mark.")
240 ()
241 {
242 return current_buffer->mark;
243 }
244
245 #if 0 /* this is now in lisp code */
246 DEFUN ("set-mark", Fset_mark, Sset_mark, 1, 1, 0,
247 "Set this buffer's mark to POS. Don't use this function!\n\
248 That is to say, don't use this function unless you want\n\
249 the user to see that the mark has moved, and you want the previous\n\
250 mark position to be lost.\n\
251 \n\
252 Normally, when a new mark is set, the old one should go on the stack.\n\
253 This is why most applications should use push-mark, not set-mark.\n\
254 \n\
255 Novice programmers often try to use the mark for the wrong purposes.\n\
256 The mark saves a location for the user's convenience.\n\
257 Most editing commands should not alter the mark.\n\
258 To remember a location for internal use in the Lisp program,\n\
259 store it in a Lisp variable. Example:\n\
260 \n\
261 (let ((beg (point))) (forward-line 1) (delete-region beg (point))).")
262 (pos)
263 Lisp_Object pos;
264 {
265 if (NILP (pos))
266 {
267 current_buffer->mark = Qnil;
268 return Qnil;
269 }
270 CHECK_NUMBER_COERCE_MARKER (pos, 0);
271
272 if (NILP (current_buffer->mark))
273 current_buffer->mark = Fmake_marker ();
274
275 Fset_marker (current_buffer->mark, pos, Qnil);
276 return pos;
277 }
278 #endif /* commented-out code */
279
280 Lisp_Object
281 save_excursion_save ()
282 {
283 register int visible = (XBUFFER (XWINDOW (selected_window)->buffer)
284 == current_buffer);
285
286 return Fcons (Fpoint_marker (),
287 Fcons (Fcopy_marker (current_buffer->mark),
288 Fcons (visible ? Qt : Qnil,
289 current_buffer->mark_active)));
290 }
291
292 Lisp_Object
293 save_excursion_restore (info)
294 register Lisp_Object info;
295 {
296 register Lisp_Object tem, tem1;
297
298 tem = Fmarker_buffer (Fcar (info));
299 /* If buffer being returned to is now deleted, avoid error */
300 /* Otherwise could get error here while unwinding to top level
301 and crash */
302 /* In that case, Fmarker_buffer returns nil now. */
303 if (NILP (tem))
304 return Qnil;
305 Fset_buffer (tem);
306 tem = Fcar (info);
307 Fgoto_char (tem);
308 unchain_marker (tem);
309 tem = Fcar (Fcdr (info));
310 Fset_marker (current_buffer->mark, tem, Fcurrent_buffer ());
311 unchain_marker (tem);
312 tem = Fcdr (Fcdr (info));
313 tem1 = Fcar (tem);
314 if (!NILP (tem1)
315 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
316 Fswitch_to_buffer (Fcurrent_buffer (), Qnil);
317
318 tem1 = current_buffer->mark_active;
319 current_buffer->mark_active = Fcdr (tem);
320 if (! NILP (current_buffer->mark_active))
321 call1 (Vrun_hooks, intern ("activate-mark-hook"));
322 else if (! NILP (tem1))
323 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
324 return Qnil;
325 }
326
327 DEFUN ("save-excursion", Fsave_excursion, Ssave_excursion, 0, UNEVALLED, 0,
328 "Save point, mark, and current buffer; execute BODY; restore those things.\n\
329 Executes BODY just like `progn'.\n\
330 The values of point, mark and the current buffer are restored\n\
331 even in case of abnormal exit (throw or error).\n\
332 The state of activation of the mark is also restored.")
333 (args)
334 Lisp_Object args;
335 {
336 register Lisp_Object val;
337 int count = specpdl_ptr - specpdl;
338
339 record_unwind_protect (save_excursion_restore, save_excursion_save ());
340
341 val = Fprogn (args);
342 return unbind_to (count, val);
343 }
344 \f
345 DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 0, 0,
346 "Return the number of characters in the current buffer.")
347 ()
348 {
349 Lisp_Object temp;
350 XFASTINT (temp) = Z - BEG;
351 return temp;
352 }
353
354 DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0,
355 "Return the minimum permissible value of point in the current buffer.\n\
356 This is 1, unless a clipping restriction is in effect.")
357 ()
358 {
359 Lisp_Object temp;
360 XFASTINT (temp) = BEGV;
361 return temp;
362 }
363
364 DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0,
365 "Return a marker to the minimum permissible value of point in this buffer.\n\
366 This is the beginning, unless a clipping restriction is in effect.")
367 ()
368 {
369 return buildmark (BEGV);
370 }
371
372 DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0,
373 "Return the maximum permissible value of point in the current buffer.\n\
374 This is (1+ (buffer-size)), unless a clipping restriction is in effect,\n\
375 in which case it is less.")
376 ()
377 {
378 Lisp_Object temp;
379 XFASTINT (temp) = ZV;
380 return temp;
381 }
382
383 DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0,
384 "Return a marker to the maximum permissible value of point in this buffer.\n\
385 This is (1+ (buffer-size)), unless a clipping restriction is in effect,\n\
386 in which case it is less.")
387 ()
388 {
389 return buildmark (ZV);
390 }
391
392 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
393 "Return the character following point, as a number.\n\
394 At the end of the buffer or accessible region, return 0.")
395 ()
396 {
397 Lisp_Object temp;
398 if (point >= ZV)
399 XFASTINT (temp) = 0;
400 else
401 XFASTINT (temp) = FETCH_CHAR (point);
402 return temp;
403 }
404
405 DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
406 "Return the character preceding point, as a number.\n\
407 At the beginning of the buffer or accessible region, return 0.")
408 ()
409 {
410 Lisp_Object temp;
411 if (point <= BEGV)
412 XFASTINT (temp) = 0;
413 else
414 XFASTINT (temp) = FETCH_CHAR (point - 1);
415 return temp;
416 }
417
418 DEFUN ("bobp", Fbobp, Sbobp, 0, 0, 0,
419 "Return T if point is at the beginning of the buffer.\n\
420 If the buffer is narrowed, this means the beginning of the narrowed part.")
421 ()
422 {
423 if (point == BEGV)
424 return Qt;
425 return Qnil;
426 }
427
428 DEFUN ("eobp", Feobp, Seobp, 0, 0, 0,
429 "Return T if point is at the end of the buffer.\n\
430 If the buffer is narrowed, this means the end of the narrowed part.")
431 ()
432 {
433 if (point == ZV)
434 return Qt;
435 return Qnil;
436 }
437
438 DEFUN ("bolp", Fbolp, Sbolp, 0, 0, 0,
439 "Return T if point is at the beginning of a line.")
440 ()
441 {
442 if (point == BEGV || FETCH_CHAR (point - 1) == '\n')
443 return Qt;
444 return Qnil;
445 }
446
447 DEFUN ("eolp", Feolp, Seolp, 0, 0, 0,
448 "Return T if point is at the end of a line.\n\
449 `End of a line' includes point being at the end of the buffer.")
450 ()
451 {
452 if (point == ZV || FETCH_CHAR (point) == '\n')
453 return Qt;
454 return Qnil;
455 }
456
457 DEFUN ("char-after", Fchar_after, Schar_after, 1, 1, 0,
458 "Return character in current buffer at position POS.\n\
459 POS is an integer or a buffer pointer.\n\
460 If POS is out of range, the value is nil.")
461 (pos)
462 Lisp_Object pos;
463 {
464 register Lisp_Object val;
465 register int n;
466
467 CHECK_NUMBER_COERCE_MARKER (pos, 0);
468
469 n = XINT (pos);
470 if (n < BEGV || n >= ZV) return Qnil;
471
472 XFASTINT (val) = FETCH_CHAR (n);
473 return val;
474 }
475 \f
476 DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 0, 0,
477 "Return the name under which the user logged in, as a string.\n\
478 This is based on the effective uid, not the real uid.\n\
479 Also, if the environment variable USER or LOGNAME is set,\n\
480 that determines the value of this function.")
481 ()
482 {
483 return Vuser_name;
484 }
485
486 DEFUN ("user-real-login-name", Fuser_real_login_name, Suser_real_login_name,
487 0, 0, 0,
488 "Return the name of the user's real uid, as a string.\n\
489 Differs from `user-login-name' when running under `su'.")
490 ()
491 {
492 return Vuser_real_name;
493 }
494
495 DEFUN ("user-uid", Fuser_uid, Suser_uid, 0, 0, 0,
496 "Return the effective uid of Emacs, as an integer.")
497 ()
498 {
499 return make_number (geteuid ());
500 }
501
502 DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0,
503 "Return the real uid of Emacs, as an integer.")
504 ()
505 {
506 return make_number (getuid ());
507 }
508
509 DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 0, 0,
510 "Return the full name of the user logged in, as a string.")
511 ()
512 {
513 return Vuser_full_name;
514 }
515
516 DEFUN ("system-name", Fsystem_name, Ssystem_name, 0, 0, 0,
517 "Return the name of the machine you are running on, as a string.")
518 ()
519 {
520 return Vsystem_name;
521 }
522
523 DEFUN ("current-time", Fcurrent_time, Scurrent_time, 0, 0, 0,
524 "Return the current time, as the number of seconds since 12:00 AM January 1970.\n\
525 The time is returned as a list of three integers. The first has the\n\
526 most significant 16 bits of the seconds, while the second has the\n\
527 least significant 16 bits. The third integer gives the microsecond\n\
528 count.\n\
529 \n\
530 The microsecond count is zero on systems that do not provide\n\
531 resolution finer than a second.")
532 ()
533 {
534 EMACS_TIME t;
535 Lisp_Object result[3];
536
537 EMACS_GET_TIME (t);
538 XSET (result[0], Lisp_Int, (EMACS_SECS (t) >> 16) & 0xffff);
539 XSET (result[1], Lisp_Int, (EMACS_SECS (t) >> 0) & 0xffff);
540 XSET (result[2], Lisp_Int, EMACS_USECS (t));
541
542 return Flist (3, result);
543 }
544 \f
545
546 static int
547 lisp_time_argument (specified_time, result)
548 Lisp_Object specified_time;
549 time_t *result;
550 {
551 if (NILP (specified_time))
552 return time (result) != -1;
553 else
554 {
555 Lisp_Object high, low;
556 high = Fcar (specified_time);
557 CHECK_NUMBER (high, 0);
558 low = Fcdr (specified_time);
559 if (XTYPE (low) == Lisp_Cons)
560 low = Fcar (low);
561 CHECK_NUMBER (low, 0);
562 *result = (XINT (high) << 16) + (XINT (low) & 0xffff);
563 return *result >> 16 == XINT (high);
564 }
565 }
566
567 DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 1, 0,
568 "Return the current time, as a human-readable string.\n\
569 Programs can use this function to decode a time,\n\
570 since the number of columns in each field is fixed.\n\
571 The format is `Sun Sep 16 01:03:52 1973'.\n\
572 If an argument is given, it specifies a time to format\n\
573 instead of the current time. The argument should have the form:\n\
574 (HIGH . LOW)\n\
575 or the form:\n\
576 (HIGH LOW . IGNORED).\n\
577 Thus, you can use times obtained from `current-time'\n\
578 and from `file-attributes'.")
579 (specified_time)
580 Lisp_Object specified_time;
581 {
582 time_t value;
583 char buf[30];
584 register char *tem;
585
586 if (! lisp_time_argument (specified_time, &value))
587 value = -1;
588 tem = (char *) ctime (&value);
589
590 strncpy (buf, tem, 24);
591 buf[24] = 0;
592
593 return build_string (buf);
594 }
595
596 #define TM_YEAR_ORIGIN 1900
597
598 /* Yield A - B, measured in seconds. */
599 static long
600 difftm(a, b)
601 struct tm *a, *b;
602 {
603 int ay = a->tm_year + (TM_YEAR_ORIGIN - 1);
604 int by = b->tm_year + (TM_YEAR_ORIGIN - 1);
605 return
606 (
607 (
608 (
609 /* difference in day of year */
610 a->tm_yday - b->tm_yday
611 /* + intervening leap days */
612 + ((ay >> 2) - (by >> 2))
613 - (ay/100 - by/100)
614 + ((ay/100 >> 2) - (by/100 >> 2))
615 /* + difference in years * 365 */
616 + (long)(ay-by) * 365
617 )*24 + (a->tm_hour - b->tm_hour)
618 )*60 + (a->tm_min - b->tm_min)
619 )*60 + (a->tm_sec - b->tm_sec);
620 }
621
622 DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 1, 0,
623 "Return the offset and name for the local time zone.\n\
624 This returns a list of the form (OFFSET NAME).\n\
625 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).\n\
626 A negative value means west of Greenwich.\n\
627 NAME is a string giving the name of the time zone.\n\
628 If an argument is given, it specifies when the time zone offset is determined\n\
629 instead of using the current time. The argument should have the form:\n\
630 (HIGH . LOW)\n\
631 or the form:\n\
632 (HIGH LOW . IGNORED).\n\
633 Thus, you can use times obtained from `current-time'\n\
634 and from `file-attributes'.\n\
635 \n\
636 Some operating systems cannot provide all this information to Emacs;\n\
637 in this case, `current-time-zone' returns a list containing nil for\n\
638 the data it can't find.")
639 (specified_time)
640 Lisp_Object specified_time;
641 {
642 time_t value;
643 struct tm *t;
644
645 if (lisp_time_argument (specified_time, &value)
646 && (t = gmtime (&value)) != 0)
647 {
648 struct tm gmt;
649 long offset;
650 char *s, buf[6];
651
652 gmt = *t; /* Make a copy, in case localtime modifies *t. */
653 t = localtime (&value);
654 offset = difftm (t, &gmt);
655 s = 0;
656 #ifdef HAVE_TM_ZONE
657 if (t->tm_zone)
658 s = t->tm_zone;
659 #endif
660 if (!s)
661 {
662 /* No local time zone name is available; use "+-NNNN" instead. */
663 int am = (offset < 0 ? -offset : offset) / 60;
664 sprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60, am%60);
665 s = buf;
666 }
667 return Fcons (make_number (offset), Fcons (build_string (s), Qnil));
668 }
669 else
670 return Fmake_list (2, Qnil);
671 }
672
673 \f
674 void
675 insert1 (arg)
676 Lisp_Object arg;
677 {
678 Finsert (1, &arg);
679 }
680
681
682 /* Callers passing one argument to Finsert need not gcpro the
683 argument "array", since the only element of the array will
684 not be used after calling insert or insert_from_string, so
685 we don't care if it gets trashed. */
686
687 DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0,
688 "Insert the arguments, either strings or characters, at point.\n\
689 Point moves forward so that it ends up after the inserted text.\n\
690 Any other markers at the point of insertion remain before the text.")
691 (nargs, args)
692 int nargs;
693 register Lisp_Object *args;
694 {
695 register int argnum;
696 register Lisp_Object tem;
697 char str[1];
698
699 for (argnum = 0; argnum < nargs; argnum++)
700 {
701 tem = args[argnum];
702 retry:
703 if (XTYPE (tem) == Lisp_Int)
704 {
705 str[0] = XINT (tem);
706 insert (str, 1);
707 }
708 else if (XTYPE (tem) == Lisp_String)
709 {
710 insert_from_string (tem, 0, XSTRING (tem)->size);
711 }
712 else
713 {
714 tem = wrong_type_argument (Qchar_or_string_p, tem);
715 goto retry;
716 }
717 }
718
719 return Qnil;
720 }
721
722 DEFUN ("insert-before-markers", Finsert_before_markers, Sinsert_before_markers, 0, MANY, 0,
723 "Insert strings or characters at point, relocating markers after the text.\n\
724 Point moves forward so that it ends up after the inserted text.\n\
725 Any other markers at the point of insertion also end up after the text.")
726 (nargs, args)
727 int nargs;
728 register Lisp_Object *args;
729 {
730 register int argnum;
731 register Lisp_Object tem;
732 char str[1];
733
734 for (argnum = 0; argnum < nargs; argnum++)
735 {
736 tem = args[argnum];
737 retry:
738 if (XTYPE (tem) == Lisp_Int)
739 {
740 str[0] = XINT (tem);
741 insert_before_markers (str, 1);
742 }
743 else if (XTYPE (tem) == Lisp_String)
744 {
745 insert_from_string_before_markers (tem, 0, XSTRING (tem)->size);
746 }
747 else
748 {
749 tem = wrong_type_argument (Qchar_or_string_p, tem);
750 goto retry;
751 }
752 }
753
754 return Qnil;
755 }
756 \f
757 DEFUN ("insert-char", Finsert_char, Sinsert_char, 2, 2, 0,
758 "Insert COUNT (second arg) copies of CHAR (first arg).\n\
759 Point and all markers are affected as in the function `insert'.\n\
760 Both arguments are required.")
761 (chr, count)
762 Lisp_Object chr, count;
763 {
764 register unsigned char *string;
765 register int strlen;
766 register int i, n;
767
768 CHECK_NUMBER (chr, 0);
769 CHECK_NUMBER (count, 1);
770
771 n = XINT (count);
772 if (n <= 0)
773 return Qnil;
774 strlen = min (n, 256);
775 string = (unsigned char *) alloca (strlen);
776 for (i = 0; i < strlen; i++)
777 string[i] = XFASTINT (chr);
778 while (n >= strlen)
779 {
780 insert (string, strlen);
781 n -= strlen;
782 }
783 if (n > 0)
784 insert (string, n);
785 return Qnil;
786 }
787
788 \f
789 /* Making strings from buffer contents. */
790
791 /* Return a Lisp_String containing the text of the current buffer from
792 START to END. If text properties are in use and the current buffer
793 has properties in the range specifed, the resulting string will also
794 have them.
795
796 We don't want to use plain old make_string here, because it calls
797 make_uninit_string, which can cause the buffer arena to be
798 compacted. make_string has no way of knowing that the data has
799 been moved, and thus copies the wrong data into the string. This
800 doesn't effect most of the other users of make_string, so it should
801 be left as is. But we should use this function when conjuring
802 buffer substrings. */
803
804 Lisp_Object
805 make_buffer_string (start, end)
806 int start, end;
807 {
808 Lisp_Object result;
809
810 if (start < GPT && GPT < end)
811 move_gap (start);
812
813 result = make_uninit_string (end - start);
814 bcopy (&FETCH_CHAR (start), XSTRING (result)->data, end - start);
815
816 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
817 copy_intervals_to_string (result, current_buffer, start, end - start);
818
819 return result;
820 }
821
822 DEFUN ("buffer-substring", Fbuffer_substring, Sbuffer_substring, 2, 2, 0,
823 "Return the contents of part of the current buffer as a string.\n\
824 The two arguments START and END are character positions;\n\
825 they can be in either order.")
826 (b, e)
827 Lisp_Object b, e;
828 {
829 register int beg, end;
830
831 validate_region (&b, &e);
832 beg = XINT (b);
833 end = XINT (e);
834
835 return make_buffer_string (beg, end);
836 }
837
838 DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0,
839 "Return the contents of the current buffer as a string.")
840 ()
841 {
842 return make_buffer_string (BEGV, ZV);
843 }
844
845 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, Sinsert_buffer_substring,
846 1, 3, 0,
847 "Insert before point a substring of the contents buffer BUFFER.\n\
848 BUFFER may be a buffer or a buffer name.\n\
849 Arguments START and END are character numbers specifying the substring.\n\
850 They default to the beginning and the end of BUFFER.")
851 (buf, b, e)
852 Lisp_Object buf, b, e;
853 {
854 register int beg, end, temp, len, opoint, start;
855 register struct buffer *bp;
856 Lisp_Object buffer;
857
858 buffer = Fget_buffer (buf);
859 if (NILP (buffer))
860 nsberror (buf);
861 bp = XBUFFER (buffer);
862
863 if (NILP (b))
864 beg = BUF_BEGV (bp);
865 else
866 {
867 CHECK_NUMBER_COERCE_MARKER (b, 0);
868 beg = XINT (b);
869 }
870 if (NILP (e))
871 end = BUF_ZV (bp);
872 else
873 {
874 CHECK_NUMBER_COERCE_MARKER (e, 1);
875 end = XINT (e);
876 }
877
878 if (beg > end)
879 temp = beg, beg = end, end = temp;
880
881 /* Move the gap or create enough gap in the current buffer. */
882
883 if (point != GPT)
884 move_gap (point);
885 if (GAP_SIZE < end - beg)
886 make_gap (end - beg - GAP_SIZE);
887
888 len = end - beg;
889 start = beg;
890 opoint = point;
891
892 if (!(BUF_BEGV (bp) <= beg
893 && beg <= end
894 && end <= BUF_ZV (bp)))
895 args_out_of_range (b, e);
896
897 /* Now the actual insertion will not do any gap motion,
898 so it matters not if BUF is the current buffer. */
899 if (beg < BUF_GPT (bp))
900 {
901 insert (BUF_CHAR_ADDRESS (bp, beg), min (end, BUF_GPT (bp)) - beg);
902 beg = min (end, BUF_GPT (bp));
903 }
904 if (beg < end)
905 insert (BUF_CHAR_ADDRESS (bp, beg), end - beg);
906
907 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
908 graft_intervals_into_buffer (copy_intervals (bp->intervals, start, len),
909 opoint, bp);
910
911 return Qnil;
912 }
913
914 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
915 6, 6, 0,
916 "Compare two substrings of two buffers; return result as number.\n\
917 the value is -N if first string is less after N-1 chars,\n\
918 +N if first string is greater after N-1 chars, or 0 if strings match.\n\
919 Each substring is represented as three arguments: BUFFER, START and END.\n\
920 That makes six args in all, three for each substring.\n\n\
921 The value of `case-fold-search' in the current buffer\n\
922 determines whether case is significant or ignored.")
923 (buffer1, start1, end1, buffer2, start2, end2)
924 Lisp_Object buffer1, start1, end1, buffer2, start2, end2;
925 {
926 register int begp1, endp1, begp2, endp2, temp, len1, len2, length, i;
927 register struct buffer *bp1, *bp2;
928 register unsigned char *trt
929 = (!NILP (current_buffer->case_fold_search)
930 ? XSTRING (current_buffer->case_canon_table)->data : 0);
931
932 /* Find the first buffer and its substring. */
933
934 if (NILP (buffer1))
935 bp1 = current_buffer;
936 else
937 {
938 Lisp_Object buf1;
939 buf1 = Fget_buffer (buffer1);
940 if (NILP (buf1))
941 nsberror (buffer1);
942 bp1 = XBUFFER (buf1);
943 }
944
945 if (NILP (start1))
946 begp1 = BUF_BEGV (bp1);
947 else
948 {
949 CHECK_NUMBER_COERCE_MARKER (start1, 1);
950 begp1 = XINT (start1);
951 }
952 if (NILP (end1))
953 endp1 = BUF_ZV (bp1);
954 else
955 {
956 CHECK_NUMBER_COERCE_MARKER (end1, 2);
957 endp1 = XINT (end1);
958 }
959
960 if (begp1 > endp1)
961 temp = begp1, begp1 = endp1, endp1 = temp;
962
963 if (!(BUF_BEGV (bp1) <= begp1
964 && begp1 <= endp1
965 && endp1 <= BUF_ZV (bp1)))
966 args_out_of_range (start1, end1);
967
968 /* Likewise for second substring. */
969
970 if (NILP (buffer2))
971 bp2 = current_buffer;
972 else
973 {
974 Lisp_Object buf2;
975 buf2 = Fget_buffer (buffer2);
976 if (NILP (buf2))
977 nsberror (buffer2);
978 bp2 = XBUFFER (buffer2);
979 }
980
981 if (NILP (start2))
982 begp2 = BUF_BEGV (bp2);
983 else
984 {
985 CHECK_NUMBER_COERCE_MARKER (start2, 4);
986 begp2 = XINT (start2);
987 }
988 if (NILP (end2))
989 endp2 = BUF_ZV (bp2);
990 else
991 {
992 CHECK_NUMBER_COERCE_MARKER (end2, 5);
993 endp2 = XINT (end2);
994 }
995
996 if (begp2 > endp2)
997 temp = begp2, begp2 = endp2, endp2 = temp;
998
999 if (!(BUF_BEGV (bp2) <= begp2
1000 && begp2 <= endp2
1001 && endp2 <= BUF_ZV (bp2)))
1002 args_out_of_range (start2, end2);
1003
1004 len1 = endp1 - begp1;
1005 len2 = endp2 - begp2;
1006 length = len1;
1007 if (len2 < length)
1008 length = len2;
1009
1010 for (i = 0; i < length; i++)
1011 {
1012 int c1 = *BUF_CHAR_ADDRESS (bp1, begp1 + i);
1013 int c2 = *BUF_CHAR_ADDRESS (bp2, begp2 + i);
1014 if (trt)
1015 {
1016 c1 = trt[c1];
1017 c2 = trt[c2];
1018 }
1019 if (c1 < c2)
1020 return make_number (- 1 - i);
1021 if (c1 > c2)
1022 return make_number (i + 1);
1023 }
1024
1025 /* The strings match as far as they go.
1026 If one is shorter, that one is less. */
1027 if (length < len1)
1028 return make_number (length + 1);
1029 else if (length < len2)
1030 return make_number (- length - 1);
1031
1032 /* Same length too => they are equal. */
1033 return make_number (0);
1034 }
1035 \f
1036 DEFUN ("subst-char-in-region", Fsubst_char_in_region,
1037 Ssubst_char_in_region, 4, 5, 0,
1038 "From START to END, replace FROMCHAR with TOCHAR each time it occurs.\n\
1039 If optional arg NOUNDO is non-nil, don't record this change for undo\n\
1040 and don't mark the buffer as really changed.")
1041 (start, end, fromchar, tochar, noundo)
1042 Lisp_Object start, end, fromchar, tochar, noundo;
1043 {
1044 register int pos, stop, look;
1045
1046 validate_region (&start, &end);
1047 CHECK_NUMBER (fromchar, 2);
1048 CHECK_NUMBER (tochar, 3);
1049
1050 pos = XINT (start);
1051 stop = XINT (end);
1052 look = XINT (fromchar);
1053
1054 modify_region (current_buffer, pos, stop);
1055 if (! NILP (noundo))
1056 {
1057 if (MODIFF - 1 == current_buffer->save_modified)
1058 current_buffer->save_modified++;
1059 if (MODIFF - 1 == current_buffer->auto_save_modified)
1060 current_buffer->auto_save_modified++;
1061 }
1062
1063 while (pos < stop)
1064 {
1065 if (FETCH_CHAR (pos) == look)
1066 {
1067 if (NILP (noundo))
1068 record_change (pos, 1);
1069 FETCH_CHAR (pos) = XINT (tochar);
1070 if (NILP (noundo))
1071 signal_after_change (pos, 1, 1);
1072 }
1073 pos++;
1074 }
1075
1076 return Qnil;
1077 }
1078
1079 DEFUN ("translate-region", Ftranslate_region, Stranslate_region, 3, 3, 0,
1080 "From START to END, translate characters according to TABLE.\n\
1081 TABLE is a string; the Nth character in it is the mapping\n\
1082 for the character with code N. Returns the number of characters changed.")
1083 (start, end, table)
1084 Lisp_Object start;
1085 Lisp_Object end;
1086 register Lisp_Object table;
1087 {
1088 register int pos, stop; /* Limits of the region. */
1089 register unsigned char *tt; /* Trans table. */
1090 register int oc; /* Old character. */
1091 register int nc; /* New character. */
1092 int cnt; /* Number of changes made. */
1093 Lisp_Object z; /* Return. */
1094 int size; /* Size of translate table. */
1095
1096 validate_region (&start, &end);
1097 CHECK_STRING (table, 2);
1098
1099 size = XSTRING (table)->size;
1100 tt = XSTRING (table)->data;
1101
1102 pos = XINT (start);
1103 stop = XINT (end);
1104 modify_region (current_buffer, pos, stop);
1105
1106 cnt = 0;
1107 for (; pos < stop; ++pos)
1108 {
1109 oc = FETCH_CHAR (pos);
1110 if (oc < size)
1111 {
1112 nc = tt[oc];
1113 if (nc != oc)
1114 {
1115 record_change (pos, 1);
1116 FETCH_CHAR (pos) = nc;
1117 signal_after_change (pos, 1, 1);
1118 ++cnt;
1119 }
1120 }
1121 }
1122
1123 XFASTINT (z) = cnt;
1124 return (z);
1125 }
1126
1127 DEFUN ("delete-region", Fdelete_region, Sdelete_region, 2, 2, "r",
1128 "Delete the text between point and mark.\n\
1129 When called from a program, expects two arguments,\n\
1130 positions (integers or markers) specifying the stretch to be deleted.")
1131 (b, e)
1132 Lisp_Object b, e;
1133 {
1134 validate_region (&b, &e);
1135 del_range (XINT (b), XINT (e));
1136 return Qnil;
1137 }
1138 \f
1139 DEFUN ("widen", Fwiden, Swiden, 0, 0, "",
1140 "Remove restrictions (narrowing) from current buffer.\n\
1141 This allows the buffer's full text to be seen and edited.")
1142 ()
1143 {
1144 BEGV = BEG;
1145 SET_BUF_ZV (current_buffer, Z);
1146 clip_changed = 1;
1147 /* Changing the buffer bounds invalidates any recorded current column. */
1148 invalidate_current_column ();
1149 return Qnil;
1150 }
1151
1152 DEFUN ("narrow-to-region", Fnarrow_to_region, Snarrow_to_region, 2, 2, "r",
1153 "Restrict editing in this buffer to the current region.\n\
1154 The rest of the text becomes temporarily invisible and untouchable\n\
1155 but is not deleted; if you save the buffer in a file, the invisible\n\
1156 text is included in the file. \\[widen] makes all visible again.\n\
1157 See also `save-restriction'.\n\
1158 \n\
1159 When calling from a program, pass two arguments; positions (integers\n\
1160 or markers) bounding the text that should remain visible.")
1161 (b, e)
1162 register Lisp_Object b, e;
1163 {
1164 register int i;
1165
1166 CHECK_NUMBER_COERCE_MARKER (b, 0);
1167 CHECK_NUMBER_COERCE_MARKER (e, 1);
1168
1169 if (XINT (b) > XINT (e))
1170 {
1171 i = XFASTINT (b);
1172 b = e;
1173 XFASTINT (e) = i;
1174 }
1175
1176 if (!(BEG <= XINT (b) && XINT (b) <= XINT (e) && XINT (e) <= Z))
1177 args_out_of_range (b, e);
1178
1179 BEGV = XFASTINT (b);
1180 SET_BUF_ZV (current_buffer, XFASTINT (e));
1181 if (point < XFASTINT (b))
1182 SET_PT (XFASTINT (b));
1183 if (point > XFASTINT (e))
1184 SET_PT (XFASTINT (e));
1185 clip_changed = 1;
1186 /* Changing the buffer bounds invalidates any recorded current column. */
1187 invalidate_current_column ();
1188 return Qnil;
1189 }
1190
1191 Lisp_Object
1192 save_restriction_save ()
1193 {
1194 register Lisp_Object bottom, top;
1195 /* Note: I tried using markers here, but it does not win
1196 because insertion at the end of the saved region
1197 does not advance mh and is considered "outside" the saved region. */
1198 XFASTINT (bottom) = BEGV - BEG;
1199 XFASTINT (top) = Z - ZV;
1200
1201 return Fcons (Fcurrent_buffer (), Fcons (bottom, top));
1202 }
1203
1204 Lisp_Object
1205 save_restriction_restore (data)
1206 Lisp_Object data;
1207 {
1208 register struct buffer *buf;
1209 register int newhead, newtail;
1210 register Lisp_Object tem;
1211
1212 buf = XBUFFER (XCONS (data)->car);
1213
1214 data = XCONS (data)->cdr;
1215
1216 tem = XCONS (data)->car;
1217 newhead = XINT (tem);
1218 tem = XCONS (data)->cdr;
1219 newtail = XINT (tem);
1220 if (newhead + newtail > BUF_Z (buf) - BUF_BEG (buf))
1221 {
1222 newhead = 0;
1223 newtail = 0;
1224 }
1225 BUF_BEGV (buf) = BUF_BEG (buf) + newhead;
1226 SET_BUF_ZV (buf, BUF_Z (buf) - newtail);
1227 clip_changed = 1;
1228
1229 /* If point is outside the new visible range, move it inside. */
1230 SET_BUF_PT (buf,
1231 clip_to_bounds (BUF_BEGV (buf), BUF_PT (buf), BUF_ZV (buf)));
1232
1233 return Qnil;
1234 }
1235
1236 DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0,
1237 "Execute BODY, saving and restoring current buffer's restrictions.\n\
1238 The buffer's restrictions make parts of the beginning and end invisible.\n\
1239 \(They are set up with `narrow-to-region' and eliminated with `widen'.)\n\
1240 This special form, `save-restriction', saves the current buffer's restrictions\n\
1241 when it is entered, and restores them when it is exited.\n\
1242 So any `narrow-to-region' within BODY lasts only until the end of the form.\n\
1243 The old restrictions settings are restored\n\
1244 even in case of abnormal exit (throw or error).\n\
1245 \n\
1246 The value returned is the value of the last form in BODY.\n\
1247 \n\
1248 `save-restriction' can get confused if, within the BODY, you widen\n\
1249 and then make changes outside the area within the saved restrictions.\n\
1250 \n\
1251 Note: if you are using both `save-excursion' and `save-restriction',\n\
1252 use `save-excursion' outermost:\n\
1253 (save-excursion (save-restriction ...))")
1254 (body)
1255 Lisp_Object body;
1256 {
1257 register Lisp_Object val;
1258 int count = specpdl_ptr - specpdl;
1259
1260 record_unwind_protect (save_restriction_restore, save_restriction_save ());
1261 val = Fprogn (body);
1262 return unbind_to (count, val);
1263 }
1264 \f
1265 DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
1266 "Print a one-line message at the bottom of the screen.\n\
1267 The first argument is a control string.\n\
1268 It may contain %s or %d or %c to print successive following arguments.\n\
1269 %s means print an argument as a string, %d means print as number in decimal,\n\
1270 %c means print a number as a single character.\n\
1271 The argument used by %s must be a string or a symbol;\n\
1272 the argument used by %d or %c must be a number.\n\
1273 If the first argument is nil, clear any existing message; let the\n\
1274 minibuffer contents show.")
1275 (nargs, args)
1276 int nargs;
1277 Lisp_Object *args;
1278 {
1279 if (NILP (args[0]))
1280 {
1281 message (0);
1282 return Qnil;
1283 }
1284 else
1285 {
1286 register Lisp_Object val;
1287 val = Fformat (nargs, args);
1288 message ("%s", XSTRING (val)->data);
1289 return val;
1290 }
1291 }
1292
1293 DEFUN ("format", Fformat, Sformat, 1, MANY, 0,
1294 "Format a string out of a control-string and arguments.\n\
1295 The first argument is a control string.\n\
1296 The other arguments are substituted into it to make the result, a string.\n\
1297 It may contain %-sequences meaning to substitute the next argument.\n\
1298 %s means print a string argument. Actually, prints any object, with `princ'.\n\
1299 %d means print as number in decimal (%o octal, %x hex).\n\
1300 %c means print a number as a single character.\n\
1301 %S means print any object as an s-expression (using prin1).\n\
1302 The argument used for %d, %o, %x or %c must be a number.\n\
1303 Use %% to put a single % into the output.")
1304 (nargs, args)
1305 int nargs;
1306 register Lisp_Object *args;
1307 {
1308 register int n; /* The number of the next arg to substitute */
1309 register int total = 5; /* An estimate of the final length */
1310 char *buf;
1311 register unsigned char *format, *end;
1312 int length;
1313 extern char *index ();
1314 /* It should not be necessary to GCPRO ARGS, because
1315 the caller in the interpreter should take care of that. */
1316
1317 CHECK_STRING (args[0], 0);
1318 format = XSTRING (args[0])->data;
1319 end = format + XSTRING (args[0])->size;
1320
1321 n = 0;
1322 while (format != end)
1323 if (*format++ == '%')
1324 {
1325 int minlen;
1326
1327 /* Process a numeric arg and skip it. */
1328 minlen = atoi (format);
1329 if (minlen > 0)
1330 total += minlen;
1331 else
1332 total -= minlen;
1333 while ((*format >= '0' && *format <= '9')
1334 || *format == '-' || *format == ' ' || *format == '.')
1335 format++;
1336
1337 if (*format == '%')
1338 format++;
1339 else if (++n >= nargs)
1340 ;
1341 else if (*format == 'S')
1342 {
1343 /* For `S', prin1 the argument and then treat like a string. */
1344 register Lisp_Object tem;
1345 tem = Fprin1_to_string (args[n], Qnil);
1346 args[n] = tem;
1347 goto string;
1348 }
1349 else if (XTYPE (args[n]) == Lisp_Symbol)
1350 {
1351 XSET (args[n], Lisp_String, XSYMBOL (args[n])->name);
1352 goto string;
1353 }
1354 else if (XTYPE (args[n]) == Lisp_String)
1355 {
1356 string:
1357 total += XSTRING (args[n])->size;
1358 }
1359 /* Would get MPV otherwise, since Lisp_Int's `point' to low memory. */
1360 else if (XTYPE (args[n]) == Lisp_Int && *format != 's')
1361 {
1362 #ifdef LISP_FLOAT_TYPE
1363 /* The following loop issumes the Lisp type indicates
1364 the proper way to pass the argument.
1365 So make sure we have a flonum if the argument should
1366 be a double. */
1367 if (*format == 'e' || *format == 'f' || *format == 'g')
1368 args[n] = Ffloat (args[n]);
1369 #endif
1370 total += 10;
1371 }
1372 #ifdef LISP_FLOAT_TYPE
1373 else if (XTYPE (args[n]) == Lisp_Float && *format != 's')
1374 {
1375 if (! (*format == 'e' || *format == 'f' || *format == 'g'))
1376 args[n] = Ftruncate (args[n]);
1377 total += 20;
1378 }
1379 #endif
1380 else
1381 {
1382 /* Anything but a string, convert to a string using princ. */
1383 register Lisp_Object tem;
1384 tem = Fprin1_to_string (args[n], Qt);
1385 args[n] = tem;
1386 goto string;
1387 }
1388 }
1389
1390 {
1391 register int nstrings = n + 1;
1392 register unsigned char **strings
1393 = (unsigned char **) alloca (nstrings * sizeof (unsigned char *));
1394
1395 for (n = 0; n < nstrings; n++)
1396 {
1397 if (n >= nargs)
1398 strings[n] = (unsigned char *) "";
1399 else if (XTYPE (args[n]) == Lisp_Int)
1400 /* We checked above that the corresponding format effector
1401 isn't %s, which would cause MPV. */
1402 strings[n] = (unsigned char *) XINT (args[n]);
1403 #ifdef LISP_FLOAT_TYPE
1404 else if (XTYPE (args[n]) == Lisp_Float)
1405 {
1406 union { double d; int half[2]; } u;
1407
1408 u.d = XFLOAT (args[n])->data;
1409 strings[n++] = (unsigned char *) u.half[0];
1410 strings[n] = (unsigned char *) u.half[1];
1411 }
1412 #endif
1413 else
1414 strings[n] = XSTRING (args[n])->data;
1415 }
1416
1417 /* Format it in bigger and bigger buf's until it all fits. */
1418 while (1)
1419 {
1420 buf = (char *) alloca (total + 1);
1421 buf[total - 1] = 0;
1422
1423 length = doprnt (buf, total + 1, strings[0], end, nargs, strings + 1);
1424 if (buf[total - 1] == 0)
1425 break;
1426
1427 total *= 2;
1428 }
1429 }
1430
1431 /* UNGCPRO; */
1432 return make_string (buf, length);
1433 }
1434
1435 /* VARARGS 1 */
1436 Lisp_Object
1437 #ifdef NO_ARG_ARRAY
1438 format1 (string1, arg0, arg1, arg2, arg3, arg4)
1439 int arg0, arg1, arg2, arg3, arg4;
1440 #else
1441 format1 (string1)
1442 #endif
1443 char *string1;
1444 {
1445 char buf[100];
1446 #ifdef NO_ARG_ARRAY
1447 int args[5];
1448 args[0] = arg0;
1449 args[1] = arg1;
1450 args[2] = arg2;
1451 args[3] = arg3;
1452 args[4] = arg4;
1453 doprnt (buf, sizeof buf, string1, 0, 5, args);
1454 #else
1455 doprnt (buf, sizeof buf, string1, 0, 5, &string1 + 1);
1456 #endif
1457 return build_string (buf);
1458 }
1459 \f
1460 DEFUN ("char-equal", Fchar_equal, Schar_equal, 2, 2, 0,
1461 "Return t if two characters match, optionally ignoring case.\n\
1462 Both arguments must be characters (i.e. integers).\n\
1463 Case is ignored if `case-fold-search' is non-nil in the current buffer.")
1464 (c1, c2)
1465 register Lisp_Object c1, c2;
1466 {
1467 unsigned char *downcase = DOWNCASE_TABLE;
1468 CHECK_NUMBER (c1, 0);
1469 CHECK_NUMBER (c2, 1);
1470
1471 if (!NILP (current_buffer->case_fold_search)
1472 ? (downcase[0xff & XFASTINT (c1)] == downcase[0xff & XFASTINT (c2)]
1473 && (XFASTINT (c1) & ~0xff) == (XFASTINT (c2) & ~0xff))
1474 : XINT (c1) == XINT (c2))
1475 return Qt;
1476 return Qnil;
1477 }
1478
1479 \f
1480 void
1481 syms_of_editfns ()
1482 {
1483 DEFVAR_LISP ("system-name", &Vsystem_name,
1484 "The name of the machine Emacs is running on.");
1485
1486 DEFVAR_LISP ("user-full-name", &Vuser_full_name,
1487 "The full name of the user logged in.");
1488
1489 DEFVAR_LISP ("user-name", &Vuser_name,
1490 "The user's name, based on the effective uid.");
1491
1492 DEFVAR_LISP ("user-real-name", &Vuser_real_name,
1493 "The user's name, base upon the real uid.");
1494
1495 defsubr (&Schar_equal);
1496 defsubr (&Sgoto_char);
1497 defsubr (&Sstring_to_char);
1498 defsubr (&Schar_to_string);
1499 defsubr (&Sbuffer_substring);
1500 defsubr (&Sbuffer_string);
1501
1502 defsubr (&Spoint_marker);
1503 defsubr (&Smark_marker);
1504 defsubr (&Spoint);
1505 defsubr (&Sregion_beginning);
1506 defsubr (&Sregion_end);
1507 /* defsubr (&Smark); */
1508 /* defsubr (&Sset_mark); */
1509 defsubr (&Ssave_excursion);
1510
1511 defsubr (&Sbufsize);
1512 defsubr (&Spoint_max);
1513 defsubr (&Spoint_min);
1514 defsubr (&Spoint_min_marker);
1515 defsubr (&Spoint_max_marker);
1516
1517 defsubr (&Sbobp);
1518 defsubr (&Seobp);
1519 defsubr (&Sbolp);
1520 defsubr (&Seolp);
1521 defsubr (&Sfollowing_char);
1522 defsubr (&Sprevious_char);
1523 defsubr (&Schar_after);
1524 defsubr (&Sinsert);
1525 defsubr (&Sinsert_before_markers);
1526 defsubr (&Sinsert_char);
1527
1528 defsubr (&Suser_login_name);
1529 defsubr (&Suser_real_login_name);
1530 defsubr (&Suser_uid);
1531 defsubr (&Suser_real_uid);
1532 defsubr (&Suser_full_name);
1533 defsubr (&Scurrent_time);
1534 defsubr (&Scurrent_time_string);
1535 defsubr (&Scurrent_time_zone);
1536 defsubr (&Ssystem_name);
1537 defsubr (&Smessage);
1538 defsubr (&Sformat);
1539
1540 defsubr (&Sinsert_buffer_substring);
1541 defsubr (&Scompare_buffer_substrings);
1542 defsubr (&Ssubst_char_in_region);
1543 defsubr (&Stranslate_region);
1544 defsubr (&Sdelete_region);
1545 defsubr (&Swiden);
1546 defsubr (&Snarrow_to_region);
1547 defsubr (&Ssave_restriction);
1548 }