GNU bug report logs -
#7146
(make-symbol "") issues
Previous Next
Reported by: Frank <some.frank <at> gmail.com>
Date: Sat, 2 Oct 2010 12:36:02 UTC
Severity: minor
Tags: fixed
Fixed in version 24.1
Done: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #26 received at 7146 <at> debbugs.gnu.org (full text, mbox):
Chong Yidong <cyd <at> stupidchicken.com> writes:
> Frank <some.frank <at> gmail.com> writes:
>
>> 1) Start `emacs -Q'
>> 2) Load the file bug.el into a buffer via the menu
>> 3) <M-x> byte-compile-file
>> 4) <M-x> load-file bug.elc
>> 5) <C-x b> *scratch*
>> 6) (foo) *** emacs crashes or foo returns some odd number ***
>
> I assume by (foo) you mean typing "(foo)" and doing C-j or C-x C-e.
>
> I'm afraid I don't see any crash. The number 6 appears in the echo
> area, that's all.
The problem is that there is no read syntax for a symbol with an empty
name, so it can't reliably be printed to a string (file) and read back.
(symbol-name (aref [#: x] 0)) => "x" ; This is what happens in the report.
but (symbol-name (aref [#:] 0)) => ""
You could change the reader to somehow recognize the first case. The
problem would come back if you changed `make-symbol' to `intern',
though, since it really prints as nothing at all.
This bug report was last modified 13 years and 299 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.