GNU bug report logs -
#8601
* 2 -> * 4 typo fix in detect_coding_charset
Previous Next
Reported by: Paul Eggert <eggert <at> cs.ucla.edu>
Date: Sun, 1 May 2011 18:20:03 UTC
Severity: normal
Done: Paul Eggert <eggert <at> cs.ucla.edu>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#8601: * 2 -> * 4 typo fix in detect_coding_charset
which was filed against the emacs package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 8601 <at> debbugs.gnu.org.
--
8601: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8601
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
I committed to the Emacs trunk a merge (bzr 104134) that has fixes for
the following bugs:
* Bug#8600 - The fix removes the garbage element of code_space.
* Bug#8601 - Here I assumed that the "* 2" is a typo.
* Bug#8602 - This fixes some large-int-to-float screwups in
the Lisp reader.
* Bug#8545 - This fixes the bug where the code should have called
va_copy, but didn't. Also, I changed a limit so that
the MOST_POSITIVE_FIXNUM limit for strings applies to
their length, i.e., does not include the null termination
byte. Stefan hasn't had time to chime in, but if this
last change turns out to be incorrect I will back it out.
This merge doesn't entirely fix Bug#8545, so I'll leave that bug open;
the others I'll close.
[Message part 3 (message/rfc822, inline)]
By code inspection it appears that there's a typo in
detect_coding_charset: an index is multiplied by 2
when it should be multiplied by 4. By bisecting it
appears that this typo was introduced here:
revno: 84043 [merge]
committer: Miles Bader <miles <at> gnu.org>
timestamp: Fri 2008-02-01 16:01:31 +0000
message:
Merge unicode branch
Revision: emacs <at> sv.gnu.org/emacs--devo--0--patch-1037
so I'll CC: this to Miles.
Here's a proposed patch. I haven't tested this, as I don't
have the time to fully understand this code. But from the
description and other uses of code_space, the "* 2" must be
wrong.
=== modified file 'src/coding.c'
--- src/coding.c 2011-04-29 19:47:29 +0000
+++ src/coding.c 2011-05-01 18:05:21 +0000
@@ -5368,8 +5368,8 @@ detect_coding_charset (struct coding_sys
if (src == src_end)
goto too_short;
ONE_MORE_BYTE (c);
- if (c < charset->code_space[(dim - 1 - idx) * 2]
- || c > charset->code_space[(dim - 1 - idx) * 2 + 1])
+ if (c < charset->code_space[(dim - 1 - idx) * 4]
+ || c > charset->code_space[(dim - 1 - idx) * 4 + 1])
break;
}
if (idx < dim)
This bug report was last modified 14 years and 17 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.