From 866bf2467752ce6339a3a6dab62f92d778e26d54 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 2 Jan 1995 21:32:10 +0000 Subject: [PATCH] (validate_interval_range): Use BUF_INTERVALS. --- src/textprop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textprop.c b/src/textprop.c index 379cd2a7f80..002e7636ea6 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -124,7 +124,7 @@ validate_interval_range (object, begin, end, force) 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)) -- 2.39.5