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