(x_calc_absolute_position): Use size_hint_flags.
[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 LOGNAME or USER */
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 ("LOGNAME");
80 if (!user_name)
81 user_name = (char *) getenv ("USER");
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 (Vrun_hooks))
328 {
329 if (! NILP (current_buffer->mark_active))
330 call1 (Vrun_hooks, intern ("activate-mark-hook"));
331 else if (! NILP (tem1))
332 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
333 }
334 return Qnil;
335 }
336
337 DEFUN ("save-excursion", Fsave_excursion, Ssave_excursion, 0, UNEVALLED, 0,
338 "Save point, mark, and current buffer; execute BODY; restore those things.\n\
339 Executes BODY just like `progn'.\n\
340 The values of point, mark and the current buffer are restored\n\
341 even in case of abnormal exit (throw or error).\n\
342 The state of activation of the mark is also restored.")
343 (args)
344 Lisp_Object args;
345 {
346 register Lisp_Object val;
347 int count = specpdl_ptr - specpdl;
348
349 record_unwind_protect (save_excursion_restore, save_excursion_save ());
350
351 val = Fprogn (args);
352 return unbind_to (count, val);
353 }
354 \f
355 DEFUN ("buffer-size", Fbufsize, Sbufsize, 0, 0, 0,
356 "Return the number of characters in the current buffer.")
357 ()
358 {
359 Lisp_Object temp;
360 XFASTINT (temp) = Z - BEG;
361 return temp;
362 }
363
364 DEFUN ("point-min", Fpoint_min, Spoint_min, 0, 0, 0,
365 "Return the minimum permissible value of point in the current buffer.\n\
366 This is 1, unless narrowing (a buffer restriction) is in effect.")
367 ()
368 {
369 Lisp_Object temp;
370 XFASTINT (temp) = BEGV;
371 return temp;
372 }
373
374 DEFUN ("point-min-marker", Fpoint_min_marker, Spoint_min_marker, 0, 0, 0,
375 "Return a marker to the minimum permissible value of point in this buffer.\n\
376 This is the beginning, unless narrowing (a buffer restriction) is in effect.")
377 ()
378 {
379 return buildmark (BEGV);
380 }
381
382 DEFUN ("point-max", Fpoint_max, Spoint_max, 0, 0, 0,
383 "Return the maximum permissible value of point in the current buffer.\n\
384 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\
385 is in effect, in which case it is less.")
386 ()
387 {
388 Lisp_Object temp;
389 XFASTINT (temp) = ZV;
390 return temp;
391 }
392
393 DEFUN ("point-max-marker", Fpoint_max_marker, Spoint_max_marker, 0, 0, 0,
394 "Return a marker to the maximum permissible value of point in this buffer.\n\
395 This is (1+ (buffer-size)), unless narrowing (a buffer restriction)\n\
396 is in effect, in which case it is less.")
397 ()
398 {
399 return buildmark (ZV);
400 }
401
402 DEFUN ("following-char", Ffollowing_char, Sfollowing_char, 0, 0, 0,
403 "Return the character following point, as a number.\n\
404 At the end of the buffer or accessible region, return 0.")
405 ()
406 {
407 Lisp_Object temp;
408 if (point >= ZV)
409 XFASTINT (temp) = 0;
410 else
411 XFASTINT (temp) = FETCH_CHAR (point);
412 return temp;
413 }
414
415 DEFUN ("preceding-char", Fprevious_char, Sprevious_char, 0, 0, 0,
416 "Return the character preceding point, as a number.\n\
417 At the beginning of the buffer or accessible region, return 0.")
418 ()
419 {
420 Lisp_Object temp;
421 if (point <= BEGV)
422 XFASTINT (temp) = 0;
423 else
424 XFASTINT (temp) = FETCH_CHAR (point - 1);
425 return temp;
426 }
427
428 DEFUN ("bobp", Fbobp, Sbobp, 0, 0, 0,
429 "Return T if point is at the beginning of the buffer.\n\
430 If the buffer is narrowed, this means the beginning of the narrowed part.")
431 ()
432 {
433 if (point == BEGV)
434 return Qt;
435 return Qnil;
436 }
437
438 DEFUN ("eobp", Feobp, Seobp, 0, 0, 0,
439 "Return T if point is at the end of the buffer.\n\
440 If the buffer is narrowed, this means the end of the narrowed part.")
441 ()
442 {
443 if (point == ZV)
444 return Qt;
445 return Qnil;
446 }
447
448 DEFUN ("bolp", Fbolp, Sbolp, 0, 0, 0,
449 "Return T if point is at the beginning of a line.")
450 ()
451 {
452 if (point == BEGV || FETCH_CHAR (point - 1) == '\n')
453 return Qt;
454 return Qnil;
455 }
456
457 DEFUN ("eolp", Feolp, Seolp, 0, 0, 0,
458 "Return T if point is at the end of a line.\n\
459 `End of a line' includes point being at the end of the buffer.")
460 ()
461 {
462 if (point == ZV || FETCH_CHAR (point) == '\n')
463 return Qt;
464 return Qnil;
465 }
466
467 DEFUN ("char-after", Fchar_after, Schar_after, 1, 1, 0,
468 "Return character in current buffer at position POS.\n\
469 POS is an integer or a buffer pointer.\n\
470 If POS is out of range, the value is nil.")
471 (pos)
472 Lisp_Object pos;
473 {
474 register Lisp_Object val;
475 register int n;
476
477 CHECK_NUMBER_COERCE_MARKER (pos, 0);
478
479 n = XINT (pos);
480 if (n < BEGV || n >= ZV) return Qnil;
481
482 XFASTINT (val) = FETCH_CHAR (n);
483 return val;
484 }
485 \f
486 DEFUN ("user-login-name", Fuser_login_name, Suser_login_name, 0, 0, 0,
487 "Return the name under which the user logged in, as a string.\n\
488 This is based on the effective uid, not the real uid.\n\
489 Also, if the environment variable LOGNAME or USER is set,\n\
490 that determines the value of this function.")
491 ()
492 {
493 return Vuser_name;
494 }
495
496 DEFUN ("user-real-login-name", Fuser_real_login_name, Suser_real_login_name,
497 0, 0, 0,
498 "Return the name of the user's real uid, as a string.\n\
499 This ignores the environment variables LOGNAME and USER, so it differs from\n\
500 `user-login-name' when running under `su'.")
501 ()
502 {
503 return Vuser_real_name;
504 }
505
506 DEFUN ("user-uid", Fuser_uid, Suser_uid, 0, 0, 0,
507 "Return the effective uid of Emacs, as an integer.")
508 ()
509 {
510 return make_number (geteuid ());
511 }
512
513 DEFUN ("user-real-uid", Fuser_real_uid, Suser_real_uid, 0, 0, 0,
514 "Return the real uid of Emacs, as an integer.")
515 ()
516 {
517 return make_number (getuid ());
518 }
519
520 DEFUN ("user-full-name", Fuser_full_name, Suser_full_name, 0, 0, 0,
521 "Return the full name of the user logged in, as a string.")
522 ()
523 {
524 return Vuser_full_name;
525 }
526
527 DEFUN ("system-name", Fsystem_name, Ssystem_name, 0, 0, 0,
528 "Return the name of the machine you are running on, as a string.")
529 ()
530 {
531 return Vsystem_name;
532 }
533
534 DEFUN ("emacs-pid", Femacs_pid, Semacs_pid, 0, 0, 0,
535 "Return the process ID of Emacs, as an integer.")
536 ()
537 {
538 return make_number (getpid ());
539 }
540
541 DEFUN ("current-time", Fcurrent_time, Scurrent_time, 0, 0, 0,
542 "Return the current time, as the number of seconds since 12:00 AM January 1970.\n\
543 The time is returned as a list of three integers. The first has the\n\
544 most significant 16 bits of the seconds, while the second has the\n\
545 least significant 16 bits. The third integer gives the microsecond\n\
546 count.\n\
547 \n\
548 The microsecond count is zero on systems that do not provide\n\
549 resolution finer than a second.")
550 ()
551 {
552 EMACS_TIME t;
553 Lisp_Object result[3];
554
555 EMACS_GET_TIME (t);
556 XSET (result[0], Lisp_Int, (EMACS_SECS (t) >> 16) & 0xffff);
557 XSET (result[1], Lisp_Int, (EMACS_SECS (t) >> 0) & 0xffff);
558 XSET (result[2], Lisp_Int, EMACS_USECS (t));
559
560 return Flist (3, result);
561 }
562 \f
563
564 static int
565 lisp_time_argument (specified_time, result)
566 Lisp_Object specified_time;
567 time_t *result;
568 {
569 if (NILP (specified_time))
570 return time (result) != -1;
571 else
572 {
573 Lisp_Object high, low;
574 high = Fcar (specified_time);
575 CHECK_NUMBER (high, 0);
576 low = Fcdr (specified_time);
577 if (XTYPE (low) == Lisp_Cons)
578 low = Fcar (low);
579 CHECK_NUMBER (low, 0);
580 *result = (XINT (high) << 16) + (XINT (low) & 0xffff);
581 return *result >> 16 == XINT (high);
582 }
583 }
584
585 DEFUN ("current-time-string", Fcurrent_time_string, Scurrent_time_string, 0, 1, 0,
586 "Return the current time, as a human-readable string.\n\
587 Programs can use this function to decode a time,\n\
588 since the number of columns in each field is fixed.\n\
589 The format is `Sun Sep 16 01:03:52 1973'.\n\
590 If an argument is given, it specifies a time to format\n\
591 instead of the current time. The argument should have the form:\n\
592 (HIGH . LOW)\n\
593 or the form:\n\
594 (HIGH LOW . IGNORED).\n\
595 Thus, you can use times obtained from `current-time'\n\
596 and from `file-attributes'.")
597 (specified_time)
598 Lisp_Object specified_time;
599 {
600 time_t value;
601 char buf[30];
602 register char *tem;
603
604 if (! lisp_time_argument (specified_time, &value))
605 value = -1;
606 tem = (char *) ctime (&value);
607
608 strncpy (buf, tem, 24);
609 buf[24] = 0;
610
611 return build_string (buf);
612 }
613
614 #define TM_YEAR_ORIGIN 1900
615
616 /* Yield A - B, measured in seconds. */
617 static long
618 difftm (a, b)
619 struct tm *a, *b;
620 {
621 int ay = a->tm_year + (TM_YEAR_ORIGIN - 1);
622 int by = b->tm_year + (TM_YEAR_ORIGIN - 1);
623 /* Some compilers can't handle this as a single return statement. */
624 int days = (
625 /* difference in day of year */
626 a->tm_yday - b->tm_yday
627 /* + intervening leap days */
628 + ((ay >> 2) - (by >> 2))
629 - (ay/100 - by/100)
630 + ((ay/100 >> 2) - (by/100 >> 2))
631 /* + difference in years * 365 */
632 + (long)(ay-by) * 365
633 );
634 return (60*(60*(24*days + (a->tm_hour - b->tm_hour))
635 + (a->tm_min - b->tm_min))
636 + (a->tm_sec - b->tm_sec));
637 }
638
639 DEFUN ("current-time-zone", Fcurrent_time_zone, Scurrent_time_zone, 0, 1, 0,
640 "Return the offset and name for the local time zone.\n\
641 This returns a list of the form (OFFSET NAME).\n\
642 OFFSET is an integer number of seconds ahead of UTC (east of Greenwich).\n\
643 A negative value means west of Greenwich.\n\
644 NAME is a string giving the name of the time zone.\n\
645 If an argument is given, it specifies when the time zone offset is determined\n\
646 instead of using the current time. The argument should have the form:\n\
647 (HIGH . LOW)\n\
648 or the form:\n\
649 (HIGH LOW . IGNORED).\n\
650 Thus, you can use times obtained from `current-time'\n\
651 and from `file-attributes'.\n\
652 \n\
653 Some operating systems cannot provide all this information to Emacs;\n\
654 in this case, `current-time-zone' returns a list containing nil for\n\
655 the data it can't find.")
656 (specified_time)
657 Lisp_Object specified_time;
658 {
659 time_t value;
660 struct tm *t;
661
662 if (lisp_time_argument (specified_time, &value)
663 && (t = gmtime (&value)) != 0)
664 {
665 struct tm gmt;
666 long offset;
667 char *s, buf[6];
668
669 gmt = *t; /* Make a copy, in case localtime modifies *t. */
670 t = localtime (&value);
671 offset = difftm (t, &gmt);
672 s = 0;
673 #ifdef HAVE_TM_ZONE
674 if (t->tm_zone)
675 s = t->tm_zone;
676 #else /* not HAVE_TM_ZONE */
677 #ifdef HAVE_TZNAME
678 if (t->tm_isdst == 0 || t->tm_isdst == 1)
679 s = tzname[t->tm_isdst];
680 #endif
681 #endif /* not HAVE_TM_ZONE */
682 if (!s)
683 {
684 /* No local time zone name is available; use "+-NNNN" instead. */
685 int am = (offset < 0 ? -offset : offset) / 60;
686 sprintf (buf, "%c%02d%02d", (offset < 0 ? '-' : '+'), am/60, am%60);
687 s = buf;
688 }
689 return Fcons (make_number (offset), Fcons (build_string (s), Qnil));
690 }
691 else
692 return Fmake_list (2, Qnil);
693 }
694
695 \f
696 void
697 insert1 (arg)
698 Lisp_Object arg;
699 {
700 Finsert (1, &arg);
701 }
702
703
704 /* Callers passing one argument to Finsert need not gcpro the
705 argument "array", since the only element of the array will
706 not be used after calling insert or insert_from_string, so
707 we don't care if it gets trashed. */
708
709 DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0,
710 "Insert the arguments, either strings or characters, at point.\n\
711 Point moves forward so that it ends up after the inserted text.\n\
712 Any other markers at the point of insertion remain before the text.")
713 (nargs, args)
714 int nargs;
715 register Lisp_Object *args;
716 {
717 register int argnum;
718 register Lisp_Object tem;
719 char str[1];
720
721 for (argnum = 0; argnum < nargs; argnum++)
722 {
723 tem = args[argnum];
724 retry:
725 if (XTYPE (tem) == Lisp_Int)
726 {
727 str[0] = XINT (tem);
728 insert (str, 1);
729 }
730 else if (XTYPE (tem) == Lisp_String)
731 {
732 insert_from_string (tem, 0, XSTRING (tem)->size, 0);
733 }
734 else
735 {
736 tem = wrong_type_argument (Qchar_or_string_p, tem);
737 goto retry;
738 }
739 }
740
741 return Qnil;
742 }
743
744 DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit,
745 0, MANY, 0,
746 "Insert the arguments at point, inheriting properties from adjoining text.\n\
747 Point moves forward so that it ends up after the inserted text.\n\
748 Any other markers at the point of insertion remain before the text.")
749 (nargs, args)
750 int nargs;
751 register Lisp_Object *args;
752 {
753 register int argnum;
754 register Lisp_Object tem;
755 char str[1];
756
757 for (argnum = 0; argnum < nargs; argnum++)
758 {
759 tem = args[argnum];
760 retry:
761 if (XTYPE (tem) == Lisp_Int)
762 {
763 str[0] = XINT (tem);
764 insert (str, 1);
765 }
766 else if (XTYPE (tem) == Lisp_String)
767 {
768 insert_from_string (tem, 0, XSTRING (tem)->size, 1);
769 }
770 else
771 {
772 tem = wrong_type_argument (Qchar_or_string_p, tem);
773 goto retry;
774 }
775 }
776
777 return Qnil;
778 }
779
780 DEFUN ("insert-before-markers", Finsert_before_markers, Sinsert_before_markers, 0, MANY, 0,
781 "Insert strings or characters at point, relocating markers after the text.\n\
782 Point moves forward so that it ends up after the inserted text.\n\
783 Any other markers at the point of insertion also end up after the text.")
784 (nargs, args)
785 int nargs;
786 register Lisp_Object *args;
787 {
788 register int argnum;
789 register Lisp_Object tem;
790 char str[1];
791
792 for (argnum = 0; argnum < nargs; argnum++)
793 {
794 tem = args[argnum];
795 retry:
796 if (XTYPE (tem) == Lisp_Int)
797 {
798 str[0] = XINT (tem);
799 insert_before_markers (str, 1);
800 }
801 else if (XTYPE (tem) == Lisp_String)
802 {
803 insert_from_string_before_markers (tem, 0, XSTRING (tem)->size, 0);
804 }
805 else
806 {
807 tem = wrong_type_argument (Qchar_or_string_p, tem);
808 goto retry;
809 }
810 }
811
812 return Qnil;
813 }
814
815 DEFUN ("insert-before-markers-and-inherit",
816 Finsert_and_inherit_before_markers, Sinsert_and_inherit_before_markers,
817 0, MANY, 0,
818 "Insert text at point, relocating markers and inheriting properties.\n\
819 Point moves forward so that it ends up after the inserted text.\n\
820 Any other markers at the point of insertion also end up after the text.")
821 (nargs, args)
822 int nargs;
823 register Lisp_Object *args;
824 {
825 register int argnum;
826 register Lisp_Object tem;
827 char str[1];
828
829 for (argnum = 0; argnum < nargs; argnum++)
830 {
831 tem = args[argnum];
832 retry:
833 if (XTYPE (tem) == Lisp_Int)
834 {
835 str[0] = XINT (tem);
836 insert_before_markers (str, 1);
837 }
838 else if (XTYPE (tem) == Lisp_String)
839 {
840 insert_from_string_before_markers (tem, 0, XSTRING (tem)->size, 1);
841 }
842 else
843 {
844 tem = wrong_type_argument (Qchar_or_string_p, tem);
845 goto retry;
846 }
847 }
848
849 return Qnil;
850 }
851 \f
852 DEFUN ("insert-char", Finsert_char, Sinsert_char, 2, 2, 0,
853 "Insert COUNT (second arg) copies of CHAR (first arg).\n\
854 Point and all markers are affected as in the function `insert'.\n\
855 Both arguments are required.")
856 (chr, count)
857 Lisp_Object chr, count;
858 {
859 register unsigned char *string;
860 register int strlen;
861 register int i, n;
862
863 CHECK_NUMBER (chr, 0);
864 CHECK_NUMBER (count, 1);
865
866 n = XINT (count);
867 if (n <= 0)
868 return Qnil;
869 strlen = min (n, 256);
870 string = (unsigned char *) alloca (strlen);
871 for (i = 0; i < strlen; i++)
872 string[i] = XFASTINT (chr);
873 while (n >= strlen)
874 {
875 insert (string, strlen);
876 n -= strlen;
877 }
878 if (n > 0)
879 insert (string, n);
880 return Qnil;
881 }
882
883 \f
884 /* Making strings from buffer contents. */
885
886 /* Return a Lisp_String containing the text of the current buffer from
887 START to END. If text properties are in use and the current buffer
888 has properties in the range specified, the resulting string will also
889 have them.
890
891 We don't want to use plain old make_string here, because it calls
892 make_uninit_string, which can cause the buffer arena to be
893 compacted. make_string has no way of knowing that the data has
894 been moved, and thus copies the wrong data into the string. This
895 doesn't effect most of the other users of make_string, so it should
896 be left as is. But we should use this function when conjuring
897 buffer substrings. */
898
899 Lisp_Object
900 make_buffer_string (start, end)
901 int start, end;
902 {
903 Lisp_Object result, tem, tem1;
904
905 if (start < GPT && GPT < end)
906 move_gap (start);
907
908 result = make_uninit_string (end - start);
909 bcopy (&FETCH_CHAR (start), XSTRING (result)->data, end - start);
910
911 tem = Fnext_property_change (make_number (start), Qnil, make_number (end));
912 tem1 = Ftext_properties_at (make_number (start), Qnil);
913
914 #ifdef USE_TEXT_PROPERTIES
915 if (XINT (tem) != end || !NILP (tem1))
916 copy_intervals_to_string (result, current_buffer, start, end - start);
917 #endif
918
919 return result;
920 }
921
922 DEFUN ("buffer-substring", Fbuffer_substring, Sbuffer_substring, 2, 2, 0,
923 "Return the contents of part of the current buffer as a string.\n\
924 The two arguments START and END are character positions;\n\
925 they can be in either order.")
926 (b, e)
927 Lisp_Object b, e;
928 {
929 register int beg, end;
930
931 validate_region (&b, &e);
932 beg = XINT (b);
933 end = XINT (e);
934
935 return make_buffer_string (beg, end);
936 }
937
938 DEFUN ("buffer-string", Fbuffer_string, Sbuffer_string, 0, 0, 0,
939 "Return the contents of the current buffer as a string.")
940 ()
941 {
942 return make_buffer_string (BEGV, ZV);
943 }
944
945 DEFUN ("insert-buffer-substring", Finsert_buffer_substring, Sinsert_buffer_substring,
946 1, 3, 0,
947 "Insert before point a substring of the contents of buffer BUFFER.\n\
948 BUFFER may be a buffer or a buffer name.\n\
949 Arguments START and END are character numbers specifying the substring.\n\
950 They default to the beginning and the end of BUFFER.")
951 (buf, b, e)
952 Lisp_Object buf, b, e;
953 {
954 register int beg, end, temp, len, opoint, start;
955 register struct buffer *bp;
956 Lisp_Object buffer;
957
958 buffer = Fget_buffer (buf);
959 if (NILP (buffer))
960 nsberror (buf);
961 bp = XBUFFER (buffer);
962
963 if (NILP (b))
964 beg = BUF_BEGV (bp);
965 else
966 {
967 CHECK_NUMBER_COERCE_MARKER (b, 0);
968 beg = XINT (b);
969 }
970 if (NILP (e))
971 end = BUF_ZV (bp);
972 else
973 {
974 CHECK_NUMBER_COERCE_MARKER (e, 1);
975 end = XINT (e);
976 }
977
978 if (beg > end)
979 temp = beg, beg = end, end = temp;
980
981 /* Move the gap or create enough gap in the current buffer. */
982
983 if (point != GPT)
984 move_gap (point);
985 if (GAP_SIZE < end - beg)
986 make_gap (end - beg - GAP_SIZE);
987
988 len = end - beg;
989 start = beg;
990 opoint = point;
991
992 if (!(BUF_BEGV (bp) <= beg
993 && beg <= end
994 && end <= BUF_ZV (bp)))
995 args_out_of_range (b, e);
996
997 /* Now the actual insertion will not do any gap motion,
998 so it matters not if BUF is the current buffer. */
999 if (beg < BUF_GPT (bp))
1000 {
1001 insert (BUF_CHAR_ADDRESS (bp, beg), min (end, BUF_GPT (bp)) - beg);
1002 beg = min (end, BUF_GPT (bp));
1003 }
1004 if (beg < end)
1005 insert (BUF_CHAR_ADDRESS (bp, beg), end - beg);
1006
1007 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
1008 graft_intervals_into_buffer (copy_intervals (bp->intervals, start, len),
1009 opoint, len, current_buffer, 0);
1010
1011 return Qnil;
1012 }
1013
1014 DEFUN ("compare-buffer-substrings", Fcompare_buffer_substrings, Scompare_buffer_substrings,
1015 6, 6, 0,
1016 "Compare two substrings of two buffers; return result as number.\n\
1017 the value is -N if first string is less after N-1 chars,\n\
1018 +N if first string is greater after N-1 chars, or 0 if strings match.\n\
1019 Each substring is represented as three arguments: BUFFER, START and END.\n\
1020 That makes six args in all, three for each substring.\n\n\
1021 The value of `case-fold-search' in the current buffer\n\
1022 determines whether case is significant or ignored.")
1023 (buffer1, start1, end1, buffer2, start2, end2)
1024 Lisp_Object buffer1, start1, end1, buffer2, start2, end2;
1025 {
1026 register int begp1, endp1, begp2, endp2, temp, len1, len2, length, i;
1027 register struct buffer *bp1, *bp2;
1028 register unsigned char *trt
1029 = (!NILP (current_buffer->case_fold_search)
1030 ? XSTRING (current_buffer->case_canon_table)->data : 0);
1031
1032 /* Find the first buffer and its substring. */
1033
1034 if (NILP (buffer1))
1035 bp1 = current_buffer;
1036 else
1037 {
1038 Lisp_Object buf1;
1039 buf1 = Fget_buffer (buffer1);
1040 if (NILP (buf1))
1041 nsberror (buffer1);
1042 bp1 = XBUFFER (buf1);
1043 }
1044
1045 if (NILP (start1))
1046 begp1 = BUF_BEGV (bp1);
1047 else
1048 {
1049 CHECK_NUMBER_COERCE_MARKER (start1, 1);
1050 begp1 = XINT (start1);
1051 }
1052 if (NILP (end1))
1053 endp1 = BUF_ZV (bp1);
1054 else
1055 {
1056 CHECK_NUMBER_COERCE_MARKER (end1, 2);
1057 endp1 = XINT (end1);
1058 }
1059
1060 if (begp1 > endp1)
1061 temp = begp1, begp1 = endp1, endp1 = temp;
1062
1063 if (!(BUF_BEGV (bp1) <= begp1
1064 && begp1 <= endp1
1065 && endp1 <= BUF_ZV (bp1)))
1066 args_out_of_range (start1, end1);
1067
1068 /* Likewise for second substring. */
1069
1070 if (NILP (buffer2))
1071 bp2 = current_buffer;
1072 else
1073 {
1074 Lisp_Object buf2;
1075 buf2 = Fget_buffer (buffer2);
1076 if (NILP (buf2))
1077 nsberror (buffer2);
1078 bp2 = XBUFFER (buffer2);
1079 }
1080
1081 if (NILP (start2))
1082 begp2 = BUF_BEGV (bp2);
1083 else
1084 {
1085 CHECK_NUMBER_COERCE_MARKER (start2, 4);
1086 begp2 = XINT (start2);
1087 }
1088 if (NILP (end2))
1089 endp2 = BUF_ZV (bp2);
1090 else
1091 {
1092 CHECK_NUMBER_COERCE_MARKER (end2, 5);
1093 endp2 = XINT (end2);
1094 }
1095
1096 if (begp2 > endp2)
1097 temp = begp2, begp2 = endp2, endp2 = temp;
1098
1099 if (!(BUF_BEGV (bp2) <= begp2
1100 && begp2 <= endp2
1101 && endp2 <= BUF_ZV (bp2)))
1102 args_out_of_range (start2, end2);
1103
1104 len1 = endp1 - begp1;
1105 len2 = endp2 - begp2;
1106 length = len1;
1107 if (len2 < length)
1108 length = len2;
1109
1110 for (i = 0; i < length; i++)
1111 {
1112 int c1 = *BUF_CHAR_ADDRESS (bp1, begp1 + i);
1113 int c2 = *BUF_CHAR_ADDRESS (bp2, begp2 + i);
1114 if (trt)
1115 {
1116 c1 = trt[c1];
1117 c2 = trt[c2];
1118 }
1119 if (c1 < c2)
1120 return make_number (- 1 - i);
1121 if (c1 > c2)
1122 return make_number (i + 1);
1123 }
1124
1125 /* The strings match as far as they go.
1126 If one is shorter, that one is less. */
1127 if (length < len1)
1128 return make_number (length + 1);
1129 else if (length < len2)
1130 return make_number (- length - 1);
1131
1132 /* Same length too => they are equal. */
1133 return make_number (0);
1134 }
1135 \f
1136 DEFUN ("subst-char-in-region", Fsubst_char_in_region,
1137 Ssubst_char_in_region, 4, 5, 0,
1138 "From START to END, replace FROMCHAR with TOCHAR each time it occurs.\n\
1139 If optional arg NOUNDO is non-nil, don't record this change for undo\n\
1140 and don't mark the buffer as really changed.")
1141 (start, end, fromchar, tochar, noundo)
1142 Lisp_Object start, end, fromchar, tochar, noundo;
1143 {
1144 register int pos, stop, look;
1145 int changed = 0;
1146
1147 validate_region (&start, &end);
1148 CHECK_NUMBER (fromchar, 2);
1149 CHECK_NUMBER (tochar, 3);
1150
1151 pos = XINT (start);
1152 stop = XINT (end);
1153 look = XINT (fromchar);
1154
1155 while (pos < stop)
1156 {
1157 if (FETCH_CHAR (pos) == look)
1158 {
1159 if (! changed)
1160 {
1161 modify_region (current_buffer, XINT (start), stop);
1162
1163 if (! NILP (noundo))
1164 {
1165 if (MODIFF - 1 == current_buffer->save_modified)
1166 current_buffer->save_modified++;
1167 if (MODIFF - 1 == current_buffer->auto_save_modified)
1168 current_buffer->auto_save_modified++;
1169 }
1170
1171 changed = 1;
1172 }
1173
1174 if (NILP (noundo))
1175 record_change (pos, 1);
1176 FETCH_CHAR (pos) = XINT (tochar);
1177 }
1178 pos++;
1179 }
1180
1181 if (changed)
1182 signal_after_change (XINT (start),
1183 stop - XINT (start), stop - XINT (start));
1184
1185 return Qnil;
1186 }
1187
1188 DEFUN ("translate-region", Ftranslate_region, Stranslate_region, 3, 3, 0,
1189 "From START to END, translate characters according to TABLE.\n\
1190 TABLE is a string; the Nth character in it is the mapping\n\
1191 for the character with code N. Returns the number of characters changed.")
1192 (start, end, table)
1193 Lisp_Object start;
1194 Lisp_Object end;
1195 register Lisp_Object table;
1196 {
1197 register int pos, stop; /* Limits of the region. */
1198 register unsigned char *tt; /* Trans table. */
1199 register int oc; /* Old character. */
1200 register int nc; /* New character. */
1201 int cnt; /* Number of changes made. */
1202 Lisp_Object z; /* Return. */
1203 int size; /* Size of translate table. */
1204
1205 validate_region (&start, &end);
1206 CHECK_STRING (table, 2);
1207
1208 size = XSTRING (table)->size;
1209 tt = XSTRING (table)->data;
1210
1211 pos = XINT (start);
1212 stop = XINT (end);
1213 modify_region (current_buffer, pos, stop);
1214
1215 cnt = 0;
1216 for (; pos < stop; ++pos)
1217 {
1218 oc = FETCH_CHAR (pos);
1219 if (oc < size)
1220 {
1221 nc = tt[oc];
1222 if (nc != oc)
1223 {
1224 record_change (pos, 1);
1225 FETCH_CHAR (pos) = nc;
1226 signal_after_change (pos, 1, 1);
1227 ++cnt;
1228 }
1229 }
1230 }
1231
1232 XFASTINT (z) = cnt;
1233 return (z);
1234 }
1235
1236 DEFUN ("delete-region", Fdelete_region, Sdelete_region, 2, 2, "r",
1237 "Delete the text between point and mark.\n\
1238 When called from a program, expects two arguments,\n\
1239 positions (integers or markers) specifying the stretch to be deleted.")
1240 (b, e)
1241 Lisp_Object b, e;
1242 {
1243 validate_region (&b, &e);
1244 del_range (XINT (b), XINT (e));
1245 return Qnil;
1246 }
1247 \f
1248 DEFUN ("widen", Fwiden, Swiden, 0, 0, "",
1249 "Remove restrictions (narrowing) from current buffer.\n\
1250 This allows the buffer's full text to be seen and edited.")
1251 ()
1252 {
1253 BEGV = BEG;
1254 SET_BUF_ZV (current_buffer, Z);
1255 clip_changed = 1;
1256 /* Changing the buffer bounds invalidates any recorded current column. */
1257 invalidate_current_column ();
1258 return Qnil;
1259 }
1260
1261 DEFUN ("narrow-to-region", Fnarrow_to_region, Snarrow_to_region, 2, 2, "r",
1262 "Restrict editing in this buffer to the current region.\n\
1263 The rest of the text becomes temporarily invisible and untouchable\n\
1264 but is not deleted; if you save the buffer in a file, the invisible\n\
1265 text is included in the file. \\[widen] makes all visible again.\n\
1266 See also `save-restriction'.\n\
1267 \n\
1268 When calling from a program, pass two arguments; positions (integers\n\
1269 or markers) bounding the text that should remain visible.")
1270 (b, e)
1271 register Lisp_Object b, e;
1272 {
1273 register int i;
1274
1275 CHECK_NUMBER_COERCE_MARKER (b, 0);
1276 CHECK_NUMBER_COERCE_MARKER (e, 1);
1277
1278 if (XINT (b) > XINT (e))
1279 {
1280 i = XFASTINT (b);
1281 b = e;
1282 XFASTINT (e) = i;
1283 }
1284
1285 if (!(BEG <= XINT (b) && XINT (b) <= XINT (e) && XINT (e) <= Z))
1286 args_out_of_range (b, e);
1287
1288 BEGV = XFASTINT (b);
1289 SET_BUF_ZV (current_buffer, XFASTINT (e));
1290 if (point < XFASTINT (b))
1291 SET_PT (XFASTINT (b));
1292 if (point > XFASTINT (e))
1293 SET_PT (XFASTINT (e));
1294 clip_changed = 1;
1295 /* Changing the buffer bounds invalidates any recorded current column. */
1296 invalidate_current_column ();
1297 return Qnil;
1298 }
1299
1300 Lisp_Object
1301 save_restriction_save ()
1302 {
1303 register Lisp_Object bottom, top;
1304 /* Note: I tried using markers here, but it does not win
1305 because insertion at the end of the saved region
1306 does not advance mh and is considered "outside" the saved region. */
1307 XFASTINT (bottom) = BEGV - BEG;
1308 XFASTINT (top) = Z - ZV;
1309
1310 return Fcons (Fcurrent_buffer (), Fcons (bottom, top));
1311 }
1312
1313 Lisp_Object
1314 save_restriction_restore (data)
1315 Lisp_Object data;
1316 {
1317 register struct buffer *buf;
1318 register int newhead, newtail;
1319 register Lisp_Object tem;
1320
1321 buf = XBUFFER (XCONS (data)->car);
1322
1323 data = XCONS (data)->cdr;
1324
1325 tem = XCONS (data)->car;
1326 newhead = XINT (tem);
1327 tem = XCONS (data)->cdr;
1328 newtail = XINT (tem);
1329 if (newhead + newtail > BUF_Z (buf) - BUF_BEG (buf))
1330 {
1331 newhead = 0;
1332 newtail = 0;
1333 }
1334 BUF_BEGV (buf) = BUF_BEG (buf) + newhead;
1335 SET_BUF_ZV (buf, BUF_Z (buf) - newtail);
1336 clip_changed = 1;
1337
1338 /* If point is outside the new visible range, move it inside. */
1339 SET_BUF_PT (buf,
1340 clip_to_bounds (BUF_BEGV (buf), BUF_PT (buf), BUF_ZV (buf)));
1341
1342 return Qnil;
1343 }
1344
1345 DEFUN ("save-restriction", Fsave_restriction, Ssave_restriction, 0, UNEVALLED, 0,
1346 "Execute BODY, saving and restoring current buffer's restrictions.\n\
1347 The buffer's restrictions make parts of the beginning and end invisible.\n\
1348 \(They are set up with `narrow-to-region' and eliminated with `widen'.)\n\
1349 This special form, `save-restriction', saves the current buffer's restrictions\n\
1350 when it is entered, and restores them when it is exited.\n\
1351 So any `narrow-to-region' within BODY lasts only until the end of the form.\n\
1352 The old restrictions settings are restored\n\
1353 even in case of abnormal exit (throw or error).\n\
1354 \n\
1355 The value returned is the value of the last form in BODY.\n\
1356 \n\
1357 `save-restriction' can get confused if, within the BODY, you widen\n\
1358 and then make changes outside the area within the saved restrictions.\n\
1359 \n\
1360 Note: if you are using both `save-excursion' and `save-restriction',\n\
1361 use `save-excursion' outermost:\n\
1362 (save-excursion (save-restriction ...))")
1363 (body)
1364 Lisp_Object body;
1365 {
1366 register Lisp_Object val;
1367 int count = specpdl_ptr - specpdl;
1368
1369 record_unwind_protect (save_restriction_restore, save_restriction_save ());
1370 val = Fprogn (body);
1371 return unbind_to (count, val);
1372 }
1373 \f
1374 /* Buffer for the most recent text displayed by Fmessage. */
1375 static char *message_text;
1376
1377 /* Allocated length of that buffer. */
1378 static int message_length;
1379
1380 DEFUN ("message", Fmessage, Smessage, 1, MANY, 0,
1381 "Print a one-line message at the bottom of the screen.\n\
1382 The first argument is a control string.\n\
1383 It may contain %s or %d or %c to print successive following arguments.\n\
1384 %s means print an argument as a string, %d means print as number in decimal,\n\
1385 %c means print a number as a single character.\n\
1386 The argument used by %s must be a string or a symbol;\n\
1387 the argument used by %d or %c must be a number.\n\
1388 If the first argument is nil, clear any existing message; let the\n\
1389 minibuffer contents show.")
1390 (nargs, args)
1391 int nargs;
1392 Lisp_Object *args;
1393 {
1394 if (NILP (args[0]))
1395 {
1396 message (0);
1397 return Qnil;
1398 }
1399 else
1400 {
1401 register Lisp_Object val;
1402 val = Fformat (nargs, args);
1403 /* Copy the data so that it won't move when we GC. */
1404 if (! message_text)
1405 {
1406 message_text = (char *)xmalloc (80);
1407 message_length = 80;
1408 }
1409 if (XSTRING (val)->size > message_length)
1410 {
1411 message_length = XSTRING (val)->size;
1412 message_text = (char *)xrealloc (message_text, message_length);
1413 }
1414 bcopy (XSTRING (val)->data, message_text, XSTRING (val)->size);
1415 message2 (message_text, XSTRING (val)->size);
1416 return val;
1417 }
1418 }
1419
1420 DEFUN ("format", Fformat, Sformat, 1, MANY, 0,
1421 "Format a string out of a control-string and arguments.\n\
1422 The first argument is a control string.\n\
1423 The other arguments are substituted into it to make the result, a string.\n\
1424 It may contain %-sequences meaning to substitute the next argument.\n\
1425 %s means print a string argument. Actually, prints any object, with `princ'.\n\
1426 %d means print as number in decimal (%o octal, %x hex).\n\
1427 %c means print a number as a single character.\n\
1428 %S means print any object as an s-expression (using prin1).\n\
1429 The argument used for %d, %o, %x or %c must be a number.\n\
1430 Use %% to put a single % into the output.")
1431 (nargs, args)
1432 int nargs;
1433 register Lisp_Object *args;
1434 {
1435 register int n; /* The number of the next arg to substitute */
1436 register int total = 5; /* An estimate of the final length */
1437 char *buf;
1438 register unsigned char *format, *end;
1439 int length;
1440 extern char *index ();
1441 /* It should not be necessary to GCPRO ARGS, because
1442 the caller in the interpreter should take care of that. */
1443
1444 CHECK_STRING (args[0], 0);
1445 format = XSTRING (args[0])->data;
1446 end = format + XSTRING (args[0])->size;
1447
1448 n = 0;
1449 while (format != end)
1450 if (*format++ == '%')
1451 {
1452 int minlen;
1453
1454 /* Process a numeric arg and skip it. */
1455 minlen = atoi (format);
1456 if (minlen > 0)
1457 total += minlen;
1458 else
1459 total -= minlen;
1460 while ((*format >= '0' && *format <= '9')
1461 || *format == '-' || *format == ' ' || *format == '.')
1462 format++;
1463
1464 if (*format == '%')
1465 format++;
1466 else if (++n >= nargs)
1467 error ("not enough arguments for format string");
1468 else if (*format == 'S')
1469 {
1470 /* For `S', prin1 the argument and then treat like a string. */
1471 register Lisp_Object tem;
1472 tem = Fprin1_to_string (args[n], Qnil);
1473 args[n] = tem;
1474 goto string;
1475 }
1476 else if (XTYPE (args[n]) == Lisp_Symbol)
1477 {
1478 XSET (args[n], Lisp_String, XSYMBOL (args[n])->name);
1479 goto string;
1480 }
1481 else if (XTYPE (args[n]) == Lisp_String)
1482 {
1483 string:
1484 if (*format != 's' && *format != 'S')
1485 error ("format specifier doesn't match argument type");
1486 total += XSTRING (args[n])->size;
1487 }
1488 /* Would get MPV otherwise, since Lisp_Int's `point' to low memory. */
1489 else if (XTYPE (args[n]) == Lisp_Int && *format != 's')
1490 {
1491 #ifdef LISP_FLOAT_TYPE
1492 /* The following loop assumes the Lisp type indicates
1493 the proper way to pass the argument.
1494 So make sure we have a flonum if the argument should
1495 be a double. */
1496 if (*format == 'e' || *format == 'f' || *format == 'g')
1497 args[n] = Ffloat (args[n]);
1498 #endif
1499 total += 10;
1500 }
1501 #ifdef LISP_FLOAT_TYPE
1502 else if (XTYPE (args[n]) == Lisp_Float && *format != 's')
1503 {
1504 if (! (*format == 'e' || *format == 'f' || *format == 'g'))
1505 args[n] = Ftruncate (args[n]);
1506 total += 20;
1507 }
1508 #endif
1509 else
1510 {
1511 /* Anything but a string, convert to a string using princ. */
1512 register Lisp_Object tem;
1513 tem = Fprin1_to_string (args[n], Qt);
1514 args[n] = tem;
1515 goto string;
1516 }
1517 }
1518
1519 {
1520 register int nstrings = n + 1;
1521
1522 /* Allocate twice as many strings as we have %-escapes; floats occupy
1523 two slots, and we're not sure how many of those we have. */
1524 register unsigned char **strings
1525 = (unsigned char **) alloca (2 * nstrings * sizeof (unsigned char *));
1526 int i;
1527
1528 i = 0;
1529 for (n = 0; n < nstrings; n++)
1530 {
1531 if (n >= nargs)
1532 strings[i++] = (unsigned char *) "";
1533 else if (XTYPE (args[n]) == Lisp_Int)
1534 /* We checked above that the corresponding format effector
1535 isn't %s, which would cause MPV. */
1536 strings[i++] = (unsigned char *) XINT (args[n]);
1537 #ifdef LISP_FLOAT_TYPE
1538 else if (XTYPE (args[n]) == Lisp_Float)
1539 {
1540 union { double d; int half[2]; } u;
1541
1542 u.d = XFLOAT (args[n])->data;
1543 strings[i++] = (unsigned char *) u.half[0];
1544 strings[i++] = (unsigned char *) u.half[1];
1545 }
1546 #endif
1547 else
1548 strings[i++] = XSTRING (args[n])->data;
1549 }
1550
1551 /* Format it in bigger and bigger buf's until it all fits. */
1552 while (1)
1553 {
1554 buf = (char *) alloca (total + 1);
1555 buf[total - 1] = 0;
1556
1557 length = doprnt (buf, total + 1, strings[0], end, i-1, strings + 1);
1558 if (buf[total - 1] == 0)
1559 break;
1560
1561 total *= 2;
1562 }
1563 }
1564
1565 /* UNGCPRO; */
1566 return make_string (buf, length);
1567 }
1568
1569 /* VARARGS 1 */
1570 Lisp_Object
1571 #ifdef NO_ARG_ARRAY
1572 format1 (string1, arg0, arg1, arg2, arg3, arg4)
1573 int arg0, arg1, arg2, arg3, arg4;
1574 #else
1575 format1 (string1)
1576 #endif
1577 char *string1;
1578 {
1579 char buf[100];
1580 #ifdef NO_ARG_ARRAY
1581 int args[5];
1582 args[0] = arg0;
1583 args[1] = arg1;
1584 args[2] = arg2;
1585 args[3] = arg3;
1586 args[4] = arg4;
1587 doprnt (buf, sizeof buf, string1, 0, 5, args);
1588 #else
1589 doprnt (buf, sizeof buf, string1, 0, 5, &string1 + 1);
1590 #endif
1591 return build_string (buf);
1592 }
1593 \f
1594 DEFUN ("char-equal", Fchar_equal, Schar_equal, 2, 2, 0,
1595 "Return t if two characters match, optionally ignoring case.\n\
1596 Both arguments must be characters (i.e. integers).\n\
1597 Case is ignored if `case-fold-search' is non-nil in the current buffer.")
1598 (c1, c2)
1599 register Lisp_Object c1, c2;
1600 {
1601 unsigned char *downcase = DOWNCASE_TABLE;
1602 CHECK_NUMBER (c1, 0);
1603 CHECK_NUMBER (c2, 1);
1604
1605 if (!NILP (current_buffer->case_fold_search)
1606 ? (downcase[0xff & XFASTINT (c1)] == downcase[0xff & XFASTINT (c2)]
1607 && (XFASTINT (c1) & ~0xff) == (XFASTINT (c2) & ~0xff))
1608 : XINT (c1) == XINT (c2))
1609 return Qt;
1610 return Qnil;
1611 }
1612 \f
1613 /* Transpose the markers in two regions of the current buffer, and
1614 adjust the ones between them if necessary (i.e.: if the regions
1615 differ in size).
1616
1617 Traverses the entire marker list of the buffer to do so, adding an
1618 appropriate amount to some, subtracting from some, and leaving the
1619 rest untouched. Most of this is copied from adjust_markers in insdel.c.
1620
1621 It's caller's job to see that (start1 <= end1 <= start2 <= end2),
1622 and that the buffer gap will not conflict with the markers. This
1623 last requirement is odd and maybe should be taken out, but it works
1624 for now because Ftranspose_regions does in fact guarantee that, in
1625 addition to providing universal health-care coverage. */
1626
1627 void
1628 transpose_markers (start1, end1, start2, end2)
1629 register int start1, end1, start2, end2;
1630 {
1631 register int amt1, amt2, diff, mpos;
1632 register Lisp_Object marker;
1633 register struct Lisp_Marker *m;
1634
1635 /* Internally, marker positions take the gap into account, so if the
1636 * gap is before one or both of the regions, the region's limits
1637 * must be adjusted to compensate. The caller guaranteed that the
1638 * gap is not inside any of the regions, however, so this is fairly
1639 * simple.
1640 */
1641 if (GPT < start1)
1642 {
1643 register int gs = GAP_SIZE;
1644 start1 += gs; end1 += gs;
1645 start2 += gs; end2 += gs;
1646 }
1647 else if (GPT < start2)
1648 {
1649 /* If the regions are of equal size, the gap could, in theory,
1650 * be somewhere between them. */
1651 register int gs = GAP_SIZE;
1652 start2 += gs; end2 += gs;
1653 }
1654
1655 /* The difference between the region's lengths */
1656 diff = (end2 - start2) - (end1 - start1);
1657
1658 /* For shifting each marker in a region by the length of the other
1659 * region plus the distance between the regions.
1660 */
1661 amt1 = (end2 - start2) + (start2 - end1);
1662 amt2 = (end1 - start1) + (start2 - end1);
1663
1664 marker = current_buffer->markers;
1665
1666 while (!NILP (marker))
1667 {
1668 m = XMARKER (marker);
1669 mpos = m->bufpos;
1670 if (mpos >= start1 && mpos < end1) /* in region 1 */
1671 {
1672 m->bufpos += amt1;
1673 }
1674 else if (mpos >= start2 && mpos < end2) /* in region 2 */
1675 {
1676 m->bufpos -= amt2;
1677 }
1678 else if (mpos >= end1 && mpos < start2) /* between the regions */
1679 {
1680 m->bufpos += diff;
1681 }
1682 marker = m->chain;
1683 }
1684 }
1685
1686 DEFUN ("transpose-regions", Ftranspose_regions, Stranspose_regions, 4, 5, 0,
1687 "Transpose region START1 to END1 with START2 to END2.\n\
1688 The regions may not be overlapping, because the size of the buffer is\n\
1689 never changed in a transposition.\n\
1690 \n\
1691 Optional fifth arg LEAVE_MARKERS, if non-nil, means don't transpose\n\
1692 any markers that happen to be located in the regions.\n\
1693 \n\
1694 Transposing beyond buffer boundaries is an error.")
1695 (startr1, endr1, startr2, endr2, leave_markers)
1696 Lisp_Object startr1, endr1, startr2, endr2, leave_markers;
1697 {
1698 register int start1, end1, start2, end2,
1699 gap, len1, len_mid, len2;
1700 unsigned char *start1_addr, *start2_addr, *temp;
1701
1702 #ifdef USE_TEXT_PROPERTIES
1703 INTERVAL cur_intv, tmp_interval1, tmp_interval_mid, tmp_interval2;
1704 cur_intv = current_buffer->intervals;
1705 #endif /* USE_TEXT_PROPERTIES */
1706
1707 validate_region (&startr1, &endr1);
1708 validate_region (&startr2, &endr2);
1709
1710 start1 = XFASTINT (startr1);
1711 end1 = XFASTINT (endr1);
1712 start2 = XFASTINT (startr2);
1713 end2 = XFASTINT (endr2);
1714 gap = GPT;
1715
1716 /* Swap the regions if they're reversed. */
1717 if (start2 < end1)
1718 {
1719 register int glumph = start1;
1720 start1 = start2;
1721 start2 = glumph;
1722 glumph = end1;
1723 end1 = end2;
1724 end2 = glumph;
1725 }
1726
1727 len1 = end1 - start1;
1728 len2 = end2 - start2;
1729
1730 if (start2 < end1)
1731 error ("transposed regions not properly ordered");
1732 else if (start1 == end1 || start2 == end2)
1733 error ("transposed region may not be of length 0");
1734
1735 /* The possibilities are:
1736 1. Adjacent (contiguous) regions, or separate but equal regions
1737 (no, really equal, in this case!), or
1738 2. Separate regions of unequal size.
1739
1740 The worst case is usually No. 2. It means that (aside from
1741 potential need for getting the gap out of the way), there also
1742 needs to be a shifting of the text between the two regions. So
1743 if they are spread far apart, we are that much slower... sigh. */
1744
1745 /* It must be pointed out that the really studly thing to do would
1746 be not to move the gap at all, but to leave it in place and work
1747 around it if necessary. This would be extremely efficient,
1748 especially considering that people are likely to do
1749 transpositions near where they are working interactively, which
1750 is exactly where the gap would be found. However, such code
1751 would be much harder to write and to read. So, if you are
1752 reading this comment and are feeling squirrely, by all means have
1753 a go! I just didn't feel like doing it, so I will simply move
1754 the gap the minimum distance to get it out of the way, and then
1755 deal with an unbroken array. */
1756
1757 /* Make sure the gap won't interfere, by moving it out of the text
1758 we will operate on. */
1759 if (start1 < gap && gap < end2)
1760 {
1761 if (gap - start1 < end2 - gap)
1762 move_gap (start1);
1763 else
1764 move_gap (end2);
1765 }
1766
1767 start1_addr = BUF_CHAR_ADDRESS (current_buffer, start1);
1768 start2_addr = BUF_CHAR_ADDRESS (current_buffer, start2);
1769
1770 /* Hmmm... how about checking to see if the gap is large
1771 enough to use as the temporary storage? That would avoid an
1772 allocation... interesting. Later, don't fool with it now. */
1773
1774 /* Working without memmove, for portability (sigh), so must be
1775 careful of overlapping subsections of the array... */
1776
1777 if (end1 == start2) /* adjacent regions */
1778 {
1779 modify_region (current_buffer, start1, end2);
1780 record_change (start1, len1 + len2);
1781
1782 #ifdef USE_TEXT_PROPERTIES
1783 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
1784 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
1785 Fset_text_properties (start1, end2, Qnil, Qnil);
1786 #endif /* USE_TEXT_PROPERTIES */
1787
1788 /* First region smaller than second. */
1789 if (len1 < len2)
1790 {
1791 /* We use alloca only if it is small,
1792 because we want to avoid stack overflow. */
1793 if (len2 > 20000)
1794 temp = (unsigned char *) xmalloc (len2);
1795 else
1796 temp = (unsigned char *) alloca (len2);
1797 bcopy (start2_addr, temp, len2);
1798 bcopy (start1_addr, start1_addr + len2, len1);
1799 bcopy (temp, start1_addr, len2);
1800 if (len2 > 20000)
1801 free (temp);
1802 }
1803 else
1804 /* First region not smaller than second. */
1805 {
1806 if (len1 > 20000)
1807 temp = (unsigned char *) xmalloc (len1);
1808 else
1809 temp = (unsigned char *) alloca (len1);
1810 bcopy (start1_addr, temp, len1);
1811 bcopy (start2_addr, start1_addr, len2);
1812 bcopy (temp, start1_addr + len2, len1);
1813 if (len1 > 20000)
1814 free (temp);
1815 }
1816 #ifdef USE_TEXT_PROPERTIES
1817 graft_intervals_into_buffer (tmp_interval1, start1 + len2,
1818 len1, current_buffer, 0);
1819 graft_intervals_into_buffer (tmp_interval2, start1,
1820 len2, current_buffer, 0);
1821 #endif /* USE_TEXT_PROPERTIES */
1822 }
1823 /* Non-adjacent regions, because end1 != start2, bleagh... */
1824 else
1825 {
1826 if (len1 == len2)
1827 /* Regions are same size, though, how nice. */
1828 {
1829 modify_region (current_buffer, start1, end1);
1830 modify_region (current_buffer, start2, end2);
1831 record_change (start1, len1);
1832 record_change (start2, len2);
1833 #ifdef USE_TEXT_PROPERTIES
1834 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
1835 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
1836 Fset_text_properties (start1, end1, Qnil, Qnil);
1837 Fset_text_properties (start2, end2, Qnil, Qnil);
1838 #endif /* USE_TEXT_PROPERTIES */
1839
1840 if (len1 > 20000)
1841 temp = (unsigned char *) xmalloc (len1);
1842 else
1843 temp = (unsigned char *) alloca (len1);
1844 bcopy (start1_addr, temp, len1);
1845 bcopy (start2_addr, start1_addr, len2);
1846 bcopy (temp, start2_addr, len1);
1847 if (len1 > 20000)
1848 free (temp);
1849 #ifdef USE_TEXT_PROPERTIES
1850 graft_intervals_into_buffer (tmp_interval1, start2,
1851 len1, current_buffer, 0);
1852 graft_intervals_into_buffer (tmp_interval2, start1,
1853 len2, current_buffer, 0);
1854 #endif /* USE_TEXT_PROPERTIES */
1855 }
1856
1857 else if (len1 < len2) /* Second region larger than first */
1858 /* Non-adjacent & unequal size, area between must also be shifted. */
1859 {
1860 len_mid = start2 - end1;
1861 modify_region (current_buffer, start1, end2);
1862 record_change (start1, (end2 - start1));
1863 #ifdef USE_TEXT_PROPERTIES
1864 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
1865 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
1866 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
1867 Fset_text_properties (start1, end2, Qnil, Qnil);
1868 #endif /* USE_TEXT_PROPERTIES */
1869
1870 /* holds region 2 */
1871 if (len2 > 20000)
1872 temp = (unsigned char *) xmalloc (len2);
1873 else
1874 temp = (unsigned char *) alloca (len2);
1875 bcopy (start2_addr, temp, len2);
1876 bcopy (start1_addr, start1_addr + len_mid + len2, len1);
1877 safe_bcopy (start1_addr + len1, start1_addr + len2, len_mid);
1878 bcopy (temp, start1_addr, len2);
1879 if (len2 > 20000)
1880 free (temp);
1881 #ifdef USE_TEXT_PROPERTIES
1882 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
1883 len1, current_buffer, 0);
1884 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
1885 len_mid, current_buffer, 0);
1886 graft_intervals_into_buffer (tmp_interval2, start1,
1887 len2, current_buffer, 0);
1888 #endif /* USE_TEXT_PROPERTIES */
1889 }
1890 else
1891 /* Second region smaller than first. */
1892 {
1893 len_mid = start2 - end1;
1894 record_change (start1, (end2 - start1));
1895 modify_region (current_buffer, start1, end2);
1896
1897 #ifdef USE_TEXT_PROPERTIES
1898 tmp_interval1 = copy_intervals (cur_intv, start1, len1);
1899 tmp_interval_mid = copy_intervals (cur_intv, end1, len_mid);
1900 tmp_interval2 = copy_intervals (cur_intv, start2, len2);
1901 Fset_text_properties (start1, end2, Qnil, Qnil);
1902 #endif /* USE_TEXT_PROPERTIES */
1903
1904 /* holds region 1 */
1905 if (len1 > 20000)
1906 temp = (unsigned char *) xmalloc (len1);
1907 else
1908 temp = (unsigned char *) alloca (len1);
1909 bcopy (start1_addr, temp, len1);
1910 bcopy (start2_addr, start1_addr, len2);
1911 bcopy (start1_addr + len1, start1_addr + len2, len_mid);
1912 bcopy (temp, start1_addr + len2 + len_mid, len1);
1913 if (len1 > 20000)
1914 free (temp);
1915 #ifdef USE_TEXT_PROPERTIES
1916 graft_intervals_into_buffer (tmp_interval1, end2 - len1,
1917 len1, current_buffer, 0);
1918 graft_intervals_into_buffer (tmp_interval_mid, start1 + len2,
1919 len_mid, current_buffer, 0);
1920 graft_intervals_into_buffer (tmp_interval2, start1,
1921 len2, current_buffer, 0);
1922 #endif /* USE_TEXT_PROPERTIES */
1923 }
1924 }
1925
1926 /* todo: this will be slow, because for every transposition, we
1927 traverse the whole friggin marker list. Possible solutions:
1928 somehow get a list of *all* the markers across multiple
1929 transpositions and do it all in one swell phoop. Or maybe modify
1930 Emacs' marker code to keep an ordered list or tree. This might
1931 be nicer, and more beneficial in the long run, but would be a
1932 bunch of work. Plus the way they're arranged now is nice. */
1933 if (NILP (leave_markers))
1934 transpose_markers (start1, end1, start2, end2);
1935
1936 return Qnil;
1937 }
1938
1939 \f
1940 void
1941 syms_of_editfns ()
1942 {
1943 staticpro (&Vuser_name);
1944 staticpro (&Vuser_full_name);
1945 staticpro (&Vuser_real_name);
1946 staticpro (&Vsystem_name);
1947
1948 defsubr (&Schar_equal);
1949 defsubr (&Sgoto_char);
1950 defsubr (&Sstring_to_char);
1951 defsubr (&Schar_to_string);
1952 defsubr (&Sbuffer_substring);
1953 defsubr (&Sbuffer_string);
1954
1955 defsubr (&Spoint_marker);
1956 defsubr (&Smark_marker);
1957 defsubr (&Spoint);
1958 defsubr (&Sregion_beginning);
1959 defsubr (&Sregion_end);
1960 /* defsubr (&Smark); */
1961 /* defsubr (&Sset_mark); */
1962 defsubr (&Ssave_excursion);
1963
1964 defsubr (&Sbufsize);
1965 defsubr (&Spoint_max);
1966 defsubr (&Spoint_min);
1967 defsubr (&Spoint_min_marker);
1968 defsubr (&Spoint_max_marker);
1969
1970 defsubr (&Sbobp);
1971 defsubr (&Seobp);
1972 defsubr (&Sbolp);
1973 defsubr (&Seolp);
1974 defsubr (&Sfollowing_char);
1975 defsubr (&Sprevious_char);
1976 defsubr (&Schar_after);
1977 defsubr (&Sinsert);
1978 defsubr (&Sinsert_before_markers);
1979 defsubr (&Sinsert_and_inherit);
1980 defsubr (&Sinsert_and_inherit_before_markers);
1981 defsubr (&Sinsert_char);
1982
1983 defsubr (&Suser_login_name);
1984 defsubr (&Suser_real_login_name);
1985 defsubr (&Suser_uid);
1986 defsubr (&Suser_real_uid);
1987 defsubr (&Suser_full_name);
1988 defsubr (&Semacs_pid);
1989 defsubr (&Scurrent_time);
1990 defsubr (&Scurrent_time_string);
1991 defsubr (&Scurrent_time_zone);
1992 defsubr (&Ssystem_name);
1993 defsubr (&Smessage);
1994 defsubr (&Sformat);
1995
1996 defsubr (&Sinsert_buffer_substring);
1997 defsubr (&Scompare_buffer_substrings);
1998 defsubr (&Ssubst_char_in_region);
1999 defsubr (&Stranslate_region);
2000 defsubr (&Sdelete_region);
2001 defsubr (&Swiden);
2002 defsubr (&Snarrow_to_region);
2003 defsubr (&Ssave_restriction);
2004 defsubr (&Stranspose_regions);
2005 }