diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/textconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textconv.c b/src/textconv.c index e3f928cd789..948f4c14725 100644 --- a/src/textconv.c +++ b/src/textconv.c | |||
| @@ -1741,7 +1741,7 @@ handle_pending_conversion_events (void) | |||
| 1741 | 1741 | ||
| 1742 | /* Return the confines of the field to which editing operations on frame | 1742 | /* Return the confines of the field to which editing operations on frame |
| 1743 | F should be constrained in *BEG and *END. Should no field be active, | 1743 | F should be constrained in *BEG and *END. Should no field be active, |
| 1744 | set *END to MOST_POSITIVE_FIXNUM. */ | 1744 | set *END to PTRDIFF_MAX. */ |
| 1745 | 1745 | ||
| 1746 | void | 1746 | void |
| 1747 | get_conversion_field (struct frame *f, ptrdiff_t *beg, ptrdiff_t *end) | 1747 | get_conversion_field (struct frame *f, ptrdiff_t *beg, ptrdiff_t *end) |
| @@ -1769,7 +1769,7 @@ get_conversion_field (struct frame *f, ptrdiff_t *beg, ptrdiff_t *end) | |||
| 1769 | } | 1769 | } |
| 1770 | 1770 | ||
| 1771 | *beg = 1; | 1771 | *beg = 1; |
| 1772 | *end = MOST_POSITIVE_FIXNUM; | 1772 | *end = PTRDIFF_MAX; |
| 1773 | } | 1773 | } |
| 1774 | 1774 | ||
| 1775 | /* Start a ``batch edit'' in frame F. During a batch edit, | 1775 | /* Start a ``batch edit'' in frame F. During a batch edit, |