summaryrefslogtreecommitdiff
path: root/src/insdel.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-10-31 02:34:16 +0000
committerKarl Heuer <kwzh@gnu.org>1995-10-31 02:34:16 +0000
commitbc86915f966235c7d6cc0a9b4f7a85c108d9dc7d (patch)
tree04f9ae6e0b7182c65e72dad124d83c684a17a92b /src/insdel.c
parent2067568b3583007f03440ae32825e93bfaa76d44 (diff)
downloademacs-bc86915f966235c7d6cc0a9b4f7a85c108d9dc7d.tar.gz
(BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG):
Rename from SHORTBITS, INTBITS, LONGBITS.
Diffstat (limited to 'src/insdel.c')
-rw-r--r--src/insdel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insdel.c b/src/insdel.c
index e6867647007..a33e4be616f 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -299,7 +299,7 @@ make_gap (increment)
That won't work because so many places use `int'. */
if (Z - BEG + GAP_SIZE + increment
- >= ((unsigned) 1 << (min (INTBITS, VALBITS) - 1)))
+ >= ((unsigned) 1 << (min (BITS_PER_INT, VALBITS) - 1)))
error ("Buffer exceeds maximum size");
BLOCK_INPUT;