aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c25
1 files changed, 5 insertions, 20 deletions
diff --git a/src/editfns.c b/src/editfns.c
index aea044db068..e692204c702 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -629,10 +629,7 @@ find_field (pos, merge_at_boundary, beg_limit, beg, end_limit, end)
629DEFUN ("delete-field", Fdelete_field, Sdelete_field, 0, 1, 0, 629DEFUN ("delete-field", Fdelete_field, Sdelete_field, 0, 1, 0,
630 doc: /* Delete the field surrounding POS. 630 doc: /* Delete the field surrounding POS.
631A field is a region of text with the same `field' property. 631A field is a region of text with the same `field' property.
632If POS is nil, the value of point is used for POS. 632If POS is nil, the value of point is used for POS. */)
633
634An `args-out-of-range' error is signaled if POS is outside the
635buffer's accessible portion. */)
636 (pos) 633 (pos)
637 Lisp_Object pos; 634 Lisp_Object pos;
638{ 635{
@@ -646,10 +643,7 @@ buffer's accessible portion. */)
646DEFUN ("field-string", Ffield_string, Sfield_string, 0, 1, 0, 643DEFUN ("field-string", Ffield_string, Sfield_string, 0, 1, 0,
647 doc: /* Return the contents of the field surrounding POS as a string. 644 doc: /* Return the contents of the field surrounding POS as a string.
648A field is a region of text with the same `field' property. 645A field is a region of text with the same `field' property.
649If POS is nil, the value of point is used for POS. 646If POS is nil, the value of point is used for POS. */)
650
651An `args-out-of-range' error is signaled if POS is outside the
652buffer's accessible portion. */)
653 (pos) 647 (pos)
654 Lisp_Object pos; 648 Lisp_Object pos;
655{ 649{
@@ -661,10 +655,7 @@ buffer's accessible portion. */)
661DEFUN ("field-string-no-properties", Ffield_string_no_properties, Sfield_string_no_properties, 0, 1, 0, 655DEFUN ("field-string-no-properties", Ffield_string_no_properties, Sfield_string_no_properties, 0, 1, 0,
662 doc: /* Return the contents of the field around POS, without text-properties. 656 doc: /* Return the contents of the field around POS, without text-properties.
663A field is a region of text with the same `field' property. 657A field is a region of text with the same `field' property.
664If POS is nil, the value of point is used for POS. 658If POS is nil, the value of point is used for POS. */)
665
666An `args-out-of-range' error is signaled if POS is outside the
667buffer's accessible portion. */)
668 (pos) 659 (pos)
669 Lisp_Object pos; 660 Lisp_Object pos;
670{ 661{
@@ -680,10 +671,7 @@ If POS is nil, the value of point is used for POS.
680If ESCAPE-FROM-EDGE is non-nil and POS is at the beginning of its 671If ESCAPE-FROM-EDGE is non-nil and POS is at the beginning of its
681field, then the beginning of the *previous* field is returned. 672field, then the beginning of the *previous* field is returned.
682If LIMIT is non-nil, it is a buffer position; if the beginning of the field 673If LIMIT is non-nil, it is a buffer position; if the beginning of the field
683is before LIMIT, then LIMIT will be returned instead. 674is before LIMIT, then LIMIT will be returned instead. */)
684
685An `args-out-of-range' error is signaled if POS is outside the
686buffer's accessible portion. */)
687 (pos, escape_from_edge, limit) 675 (pos, escape_from_edge, limit)
688 Lisp_Object pos, escape_from_edge, limit; 676 Lisp_Object pos, escape_from_edge, limit;
689{ 677{
@@ -699,10 +687,7 @@ If POS is nil, the value of point is used for POS.
699If ESCAPE-FROM-EDGE is non-nil and POS is at the end of its field, 687If ESCAPE-FROM-EDGE is non-nil and POS is at the end of its field,
700then the end of the *following* field is returned. 688then the end of the *following* field is returned.
701If LIMIT is non-nil, it is a buffer position; if the end of the field 689If LIMIT is non-nil, it is a buffer position; if the end of the field
702is after LIMIT, then LIMIT will be returned instead. 690is after LIMIT, then LIMIT will be returned instead. */)
703
704An `args-out-of-range' error is signaled if POS is outside the
705buffer's accessible portion. */)
706 (pos, escape_from_edge, limit) 691 (pos, escape_from_edge, limit)
707 Lisp_Object pos, escape_from_edge, limit; 692 Lisp_Object pos, escape_from_edge, limit;
708{ 693{