diff options
| author | Richard M. Stallman | 1995-01-02 21:32:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-01-02 21:32:10 +0000 |
| commit | 866bf2467752ce6339a3a6dab62f92d778e26d54 (patch) | |
| tree | 19cad21560108225a67daaef78c01fc0377450d1 /src/textprop.c | |
| parent | 9fbf87cd52ef07535816bc7e0170f71c782da2d7 (diff) | |
| download | emacs-866bf2467752ce6339a3a6dab62f92d778e26d54.tar.gz emacs-866bf2467752ce6339a3a6dab62f92d778e26d54.zip | |
(validate_interval_range): Use BUF_INTERVALS.
Diffstat (limited to 'src/textprop.c')
| -rw-r--r-- | src/textprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 124 | if (!(BUF_BEGV (b) <= XINT (*begin) && XINT (*begin) <= XINT (*end) | 124 | if (!(BUF_BEGV (b) <= XINT (*begin) && XINT (*begin) <= XINT (*end) |
| 125 | && XINT (*end) <= BUF_ZV (b))) | 125 | && XINT (*end) <= BUF_ZV (b))) |
| 126 | args_out_of_range (*begin, *end); | 126 | args_out_of_range (*begin, *end); |
| 127 | i = b->intervals; | 127 | i = BUF_INTERVALS (b); |
| 128 | 128 | ||
| 129 | /* If there's no text, there are no properties. */ | 129 | /* If there's no text, there are no properties. */ |
| 130 | if (BUF_BEGV (b) == BUF_ZV (b)) | 130 | if (BUF_BEGV (b) == BUF_ZV (b)) |