GNU bug report logs - #10969
24.0.94; Annoying warning for `pop'

Previous Next

Package: emacs;

Reported by: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>

Date: Thu, 8 Mar 2012 06:45:01 UTC

Severity: minor

Found in version 24.0.94

Fixed in version 25.0.94

Done: Noam Postavsky <npostavs <at> users.sourceforge.net>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
To: Thierry Volpiatto <thierry.volpiatto <at> gmail.com>
Cc: 10969 <at> debbugs.gnu.org
Subject: bug#10969: 24.0.94; Annoying warning for `pop'
Date: Fri, 09 Mar 2012 09:46:58 +0100
Thierry Volpiatto <thierry.volpiatto <at> gmail.com> writes:

> Sorry, as always I don't understand your answer.

:-)

> (let ((lst '("a" "b" "c")))
>   (pop (nthcdr 1 lst)))
> =>"b"
>
> What make any sense?

It depends on what `pop' you're using.  With the cl.el pop, you get this:

(setq lst '("a" "b" "c"))
=> ("a" "b" "c")
(pop (nthcdr 1 lst))
=> "b"
lst
=> ("a" "c")

With the Emacs Lisp `pop', you get this:

(setq lst '("a" "b" "c"))
=> ("a" "b" "c")
(pop (nthcdr 1 lst))
Debugger entered--Lisp error: (wrong-type-argument symbolp (nthcdr 1 lst))


-- 
(domestic pets only, the antidote for overdose, milk.)
  bloggy blog http://lars.ingebrigtsen.no/




This bug report was last modified 9 years and 48 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.