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