aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-04 20:30:05 +0000
committerGerd Moellmann1999-11-04 20:30:05 +0000
commit8bf64fe8ef6090d8c2c6fdd6658e722cd468c31f (patch)
treef9202ed8f5ce3791736b31162103d305fa9b1550 /src
parente5619f6b118b97137bdbb2613771ece9baf6c600 (diff)
downloademacs-8bf64fe8ef6090d8c2c6fdd6658e722cd468c31f.tar.gz
emacs-8bf64fe8ef6090d8c2c6fdd6658e722cd468c31f.zip
(Fdelete_field): Renamed from Ferase_field.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/editfns.c b/src/editfns.c
index ae710dbff76..1abd2696ba6 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -434,8 +434,8 @@ find_field (pos, merge_at_boundary, beg, end)
434 } 434 }
435} 435}
436 436
437DEFUN ("erase-field", Ferase_field, Serase_field, 0, 1, "d", 437DEFUN ("delete-field", Fdelete_field, Sdelete_field, 0, 1, "d",
438 "Erases the field surrounding POS.\n\ 438 "Delete the field surrounding POS.\n\
439A field is a region of text with the same `field' property.\n\ 439A field is a region of text with the same `field' property.\n\
440If POS is nil, the position of the current buffer's point is used.") 440If POS is nil, the position of the current buffer's point is used.")
441 (pos) 441 (pos)
@@ -3725,7 +3725,7 @@ functions if all the text being accessed has this property.");
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);