GNU bug report logs -
#31688
26.1.50; Byte compiler confuses two string variables
Previous Next
Reported by: Gemini Lasswell <gazally <at> runbox.com>
Date: Sat, 2 Jun 2018 17:53:01 UTC
Severity: normal
Tags: notabug
Found in version 26.1.50
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #8 received at 31688 <at> debbugs.gnu.org (full text, mbox):
Gemini Lasswell <gazally <at> runbox.com> writes:
> Here is a test which succeeds when interpreted and fails when
> byte-compiled. The byte compiler is apparently confusing two string
> variables, or optimizing away one of them. I've tried it both
> with and without lexical-binding with the same results.
>
> To reproduce, save this to bug.el:
>
> (require 'ert)
> (ert-deftest test-strings-props ()
> (let* ((str1 "abcdefghij")
> (obj '(a b))
> (str2 "abcdefghij"))
> (put-text-property 0 5 'test obj str2)
> (should (equal "\"abcdefghij\"" (prin1-to-string str1)))))
I don't think this is a bug, the compiler coalesces equal string
literals. `put-text-property' modifies the string destructively, so you
shouldn't use it on literals, for the same reason you shouldn't use
destructive operations on quoted list literals. Another example, not
dependent on compilation:
(defun foo (prop val)
(let ((s "xyz"))
(put-text-property 0 3 prop val s)
s))
(foo 'x 1) ;=> #("xyz" 0 3 (x 1))
(foo 'y 2) ;=> #("xyz" 0 3 (x 1 y 2))
This bug report was last modified 7 years and 67 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.