emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#28627: closed (24.5; doc of `copy-sequence')


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#28627: closed (24.5; doc of `copy-sequence')
Date: Sat, 30 Sep 2017 13:05:01 +0000

Your message dated Sat, 30 Sep 2017 16:04:31 +0300
with message-id <address@hidden>
and subject line Re: bug#28627: 24.5; doc of `copy-sequence'
has caused the debbugs.gnu.org bug report #28627,
regarding 24.5; doc of `copy-sequence'
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
28627: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=28627
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: 24.5; doc of `copy-sequence' Date: Wed, 27 Sep 2017 13:40:06 -0700 (PDT)
This (doc string) is not true for an empty sequence:

  "Return a copy of a list, vector, string or char-table."

This ((elisp) `Sequence Functions') is not true for an empty sequence:

     Storing a new element into the copy does not affect the original
     SEQUENCE, and vice versa.  However, the elements of the new
     sequence are not copies; they are identical (eq) to the elements
     of the original.  Therefore, changes made within these elements, as
     found via the copied sequence, are also visible in the original
     sequence.

This has not been true for an empty string since Emacs 23.  It is now
the case, for instance that (eq foo bar) here returns t:

(setq foo ""
      bar (copy-sequence foo))

(Before Emacs 23 it returned nil.)

Similarly, for [].  `copy-sequence' used to give you a new
empty-vector object.  Now it does not.

(However, before those changes the same thing did hold for the empty
list, (): copy-sequence did not return a new empty-list object.)

The doc should make clear that there is only one empty-sequence object,
for each type of sequence.  In particular, `copy-sequence' does not
create a new sequence object if the sequence is empty.


In GNU Emacs 24.5.1 (i686-pc-mingw32)
 of 2015-04-11 on LEG570
Windowing system distributor `Microsoft Corp.', version 6.1.7601
Configured using:
 `configure --prefix=3D/c/usr --host=3Di686-pc-mingw32'



--- End Message ---
--- Begin Message --- Subject: Re: bug#28627: 24.5; doc of `copy-sequence' Date: Sat, 30 Sep 2017 16:04:31 +0300
> Date: Wed, 27 Sep 2017 13:40:06 -0700 (PDT)
> From: Drew Adams <address@hidden>
> 
> The doc should make clear that there is only one empty-sequence object,
> for each type of sequence.  In particular, `copy-sequence' does not
> create a new sequence object if the sequence is empty.

Thanks.  I didn't feel we should guarantee what we have in the current
implementation, especially as describing all the details might be
tedious (does "vectors" include bool-vector or doesn't it?).  So I
just added a vague statement that copying an empty object may yield
the same object.  I think this is enough for Lisp programmers to
produce a valid and future-proof code.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]