aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-01-16 18:55:28 -0800
committerPaul Eggert2011-01-16 18:55:28 -0800
commit9fba3563f1c43c485cea79521d48024202b10203 (patch)
tree79432e28b98430aa8702634f23410743e33e61c7 /src
parent721be9cd4865e9f7d68020adcfa672d2edd52b07 (diff)
downloademacs-9fba3563f1c43c485cea79521d48024202b10203.tar.gz
emacs-9fba3563f1c43c485cea79521d48024202b10203.zip
* 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')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/coding.c5
2 files changed, 6 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 75ce2788915..cfaaf4c9087 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12011-01-17 Paul Eggert <eggert@cs.ucla.edu>
2
3 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
4 This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
5 which fixed Bug#2370. Caught by Sun cc.
6
12011-01-15 Martin Rudalics <rudalics@gmx.at> 72011-01-15 Martin Rudalics <rudalics@gmx.at>
2 8
3 * window.c (inhibit_point_swap): New variable. 9 * window.c (inhibit_point_swap): New variable.
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)
2631 } 2631 }
2632 continue; 2632 continue;
2633 2633
2634 src = src_base;
2635 consumed_chars = consumed_chars_base;
2636 continue;
2637
2638 invalid_code: 2634 invalid_code:
2639 EMACS_MULE_MAYBE_FINISH_COMPOSITION (); 2635 EMACS_MULE_MAYBE_FINISH_COMPOSITION ();
2640 src = src_base; 2636 src = src_base;
@@ -10901,4 +10897,3 @@ emacs_strerror (int error_number)
10901} 10897}
10902 10898
10903#endif /* emacs */ 10899#endif /* emacs */
10904