diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-01-16 18:55:28 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-01-16 18:55:28 -0800 |
commit | 9fba3563f1c43c485cea79521d48024202b10203 (patch) | |
tree | 79432e28b98430aa8702634f23410743e33e61c7 /src/coding.c | |
parent | 721be9cd4865e9f7d68020adcfa672d2edd52b07 (diff) | |
download | emacs-9fba3563f1c43c485cea79521d48024202b10203.tar.gz |
* coding.c (decode_coding_emacs_mule): Remove unreachable code.
This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
which fixed Bug#2370. Caught by Sun cc.
Diffstat (limited to 'src/coding.c')
-rw-r--r-- | src/coding.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/coding.c b/src/coding.c index 5f9b207c6b3..06f3fe58df1 100644 --- a/src/coding.c +++ b/src/coding.c @@ -2631,10 +2631,6 @@ decode_coding_emacs_mule (struct coding_system *coding) } continue; - src = src_base; - consumed_chars = consumed_chars_base; - continue; - invalid_code: EMACS_MULE_MAYBE_FINISH_COMPOSITION (); src = src_base; @@ -10901,4 +10897,3 @@ emacs_strerror (int error_number) } #endif /* emacs */ - |