comparison src/editfns.c @ 26347:7fd9f4ecdd29

(Fdelete_field): Renamed from Ferase_field.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 04 Nov 1999 20:30:05 +0000
parents b7aa6ac26872
children f35140f031b4
comparison
equal deleted inserted replaced
26346:08e52f30ae62 26347:7fd9f4ecdd29
432 *end = NILP(next) ? ZV : XFASTINT (next); 432 *end = NILP(next) ? ZV : XFASTINT (next);
433 } 433 }
434 } 434 }
435 } 435 }
436 436
437 DEFUN ("erase-field", Ferase_field, Serase_field, 0, 1, "d", 437 DEFUN ("delete-field", Fdelete_field, Sdelete_field, 0, 1, "d",
438 "Erases the field surrounding POS.\n\ 438 "Delete the field surrounding POS.\n\
439 A field is a region of text with the same `field' property.\n\ 439 A field is a region of text with the same `field' property.\n\
440 If POS is nil, the position of the current buffer's point is used.") 440 If POS is nil, the position of the current buffer's point is used.")
441 (pos) 441 (pos)
442 Lisp_Object pos; 442 Lisp_Object pos;
443 { 443 {
3723 Qfield = intern ("field"); 3723 Qfield = intern ("field");
3724 defsubr (&Sfield_beginning); 3724 defsubr (&Sfield_beginning);
3725 defsubr (&Sfield_end); 3725 defsubr (&Sfield_end);
3726 defsubr (&Sfield_string); 3726 defsubr (&Sfield_string);
3727 defsubr (&Sfield_string_no_properties); 3727 defsubr (&Sfield_string_no_properties);
3728 defsubr (&Serase_field); 3728 defsubr (&Sdelete_field);
3729 defsubr (&Sconstrain_to_field); 3729 defsubr (&Sconstrain_to_field);
3730 3730
3731 defsubr (&Sline_beginning_position); 3731 defsubr (&Sline_beginning_position);
3732 defsubr (&Sline_end_position); 3732 defsubr (&Sline_end_position);
3733 3733