Mercurial > emacs
changeset 10312:4bf079c613c6
(validate_interval_range): Use BUF_INTERVALS.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 02 Jan 1995 21:32:10 +0000 |
parents | 0de21e27722f |
children | 55ce83f36b30 |
files | src/textprop.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/textprop.c Mon Jan 02 09:21:30 1995 +0000 +++ b/src/textprop.c Mon Jan 02 21:32:10 1995 +0000 @@ -124,7 +124,7 @@ if (!(BUF_BEGV (b) <= XINT (*begin) && XINT (*begin) <= XINT (*end) && XINT (*end) <= BUF_ZV (b))) args_out_of_range (*begin, *end); - i = b->intervals; + i = BUF_INTERVALS (b); /* If there's no text, there are no properties. */ if (BUF_BEGV (b) == BUF_ZV (b))