From 57522629c8331e05c05333fd2f97956f8f546d29 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 5 Aug 1998 14:59:09 +0000 Subject: [PATCH] (Funexpand_abbrev): Add ADJUST instead of subtracting. --- src/abbrev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/abbrev.c b/src/abbrev.c index 1992b6ca222..7899bc56d49 100644 --- a/src/abbrev.c +++ b/src/abbrev.c @@ -399,7 +399,7 @@ is not undone.") /* 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; } -- 2.39.2