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