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

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

bug#12096: 24.1; Several documented functions in URL package are not def


From: Aurélien Aptel
Subject: bug#12096: 24.1; Several documented functions in URL package are not defined
Date: Sat, 4 Aug 2012 22:34:21 +0200

On Sat, Aug 4, 2012 at 9:44 AM, Stefan Monnier <monnier@iro.umontreal.ca> wrote:
> This does not remove a useless constructor, but instead adds a useless
> contructor (the ":constructor nil" thingy is there to disable the
> automatic creation of a default constructor).

Are you sure?

(progn
  (require 'cl)
  (fmakunbound 'make-foo)
  (fmakunbound 'cake)
  (defstruct (foo (:constructor cake)) a b c)
  (mapcar 'fboundp '(make-foo cake)))

=> (nil t)





reply via email to

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