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