diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2011-08-07 15:40:08 -0400 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-08-07 15:40:08 -0400 |
commit | 588728344d5fe74ed583f764a458603913f68c31 (patch) | |
tree | 3e6638a4845fe66f1003f9d1ddb5148b2d489262 /src/composite.c | |
parent | 98fdd2b837df46c77527bdd73a7eeb055eb60fa4 (diff) | |
download | emacs-588728344d5fe74ed583f764a458603913f68c31.tar.gz |
* composite.c (autocmp_chars): Don't reset point.
That is done by restore_point_unwind (Bug#5984).
Diffstat (limited to 'src/composite.c')
-rw-r--r-- | src/composite.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/composite.c b/src/composite.c index d402d5ad0c4..3308a028042 100644 --- a/src/composite.c +++ b/src/composite.c @@ -960,8 +960,6 @@ autocmp_chars (Lisp_Object rule, EMACS_INT charpos, EMACS_INT bytepos, EMACS_INT args[4] = font_object; args[5] = string; lgstring = safe_call (6, args); - if (NILP (string)) - TEMP_SET_PT_BOTH (pt, pt_byte); } return unbind_to (count, lgstring); } |