GNU bug report logs -
#2878
bindat-pack returns unibyte string for emacs 22 but multibyte string for emacs 23
Previous Next
Reported by: Yee Keat Phuah <ykphuah <at> gmail.com>
Date: Fri, 3 Apr 2009 15:25:05 UTC
Severity: normal
Done: Chong Yidong <cyd <at> stupidchicken.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
This is an automatic notification regarding your bug report
which was filed against the emacs package:
#2878: bindat-pack returns unibyte string for emacs 22 but multibyte string for emacs 23
It has been closed by Chong Yidong <cyd <at> stupidchicken.com>.
Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Chong Yidong <cyd <at> stupidchicken.com> by
replying to this email.
--
2878: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=2878
Emacs Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Miles Bader <miles <at> gnu.org> writes:
> I think it should be checked in. I don't have intimate familiarity
> with this code, but I did look at the problem and make the patch.
>
> The other code in the file stores numerical values into the
> `bindat-raw' using aset, and then wants to return the whole thing as a
> unicode string containing those byte values. The old code made a
> vector, stored into it, and turned the vector into a string using
> `concat' -- however that ends up making a _multibyte_ string (I don't
> know whether this is a bug in concat or not). The new method of
> making a string initially and storing directly into it results in a
> unibyte string, which is what is desired (this method is also more
> efficient).
OK, I've checked in your fix. Thanks.
[Message part 3 (message/rfc822, inline)]
Hi,
This piece of code returned nil on emacs 22 and t on emacs 23.
(let* ((spec `((:method-id vec 4)))
(data `((:ref-type . ,(vector #x00 #x00 #x00 #x00 #x00 #x00 #x00 #x39))
(:method-id . ,(vector #x09 #x90 #xec #xd8))))
(packed (bindat-pack spec data)))
(multibyte-string-p packed))
And because of it being multibyte, when i want to send it over the
wire to a sub process in a binary data format, it gets transformed and
the sub process does not get a byte-by-byte equivalent of the
concatenation of the 2 vectors above. I have tried using
string-as-unibyte and the effect is still the same.
--
Cheers,
Phuah Yee Keat
This bug report was last modified 16 years and 23 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.