# HG changeset patch # User Richard M. Stallman # Date 902329149 0 # Node ID c8e47ec53eb6b6493ae5d3c93ac1d2764f77cf32 # Parent 53b01883226998f86ac61eb85fe6614378b7c55a (Funexpand_abbrev): Add ADJUST instead of subtracting. diff -r 53b018832269 -r c8e47ec53eb6 src/abbrev.c --- a/src/abbrev.c Wed Aug 05 07:09:48 1998 +0000 +++ b/src/abbrev.c Wed Aug 05 14:59:09 1998 +0000 @@ -399,7 +399,7 @@ /* Total number of characters deleted. */ adjust = ZV - zv_before; } - SET_PT (last_abbrev_point < opoint ? opoint - adjust : opoint); + SET_PT (last_abbrev_point < opoint ? opoint + adjust : opoint); return Qnil; }