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