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