GNU bug report logs - #15479
Feature request: defcustom inherit type

Previous Next

Package: emacs;

Reported by: Devin Homan <devinwh7 <at> gmail.com>

Date: Sat, 28 Sep 2013 18:24:01 UTC

Severity: wishlist

Tags: wontfix

Done: Lars Ingebrigtsen <larsi <at> gnus.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Devin Homan <devinwh7 <at> gmail.com>
To: 15479 <at> debbugs.gnu.org
Subject: bug#15479: Feature request: defcustom inherit type
Date: Fri, 27 Sep 2013 22:20:03 -0800
I think that it would be useful for client code to be able to create defcustom variables that
inherit their type properties from another defcustom variable so that changes in the provided code
are reflected in the client.  This would allow client code to create defcustom's that are used as
temporary, dynamic bindings that the user can customize without having to worry about additions to
the accepted types in the provided code.

For example, in the provided source there is:

(defcustom foo-bar "A" "Doc." :group foo :type '(string))

(defun foo-smash () "Doc." (message "%s" foo-bar))

(provide 'foo)

then the client code can have:

(require 'foo)

(defcustom cat-thing1 "B" "Doc." :group cat :type '(inherit foo-bar))

(defcustom cat-thing2 "C" "Doc." :group cat :type '(inherit foo-bar))

(let ((foo-bar cat-thing1)) (foo-smash))

(let ((foo-bar cat-thing2)) (foo-smash))

So if the maintainer of 'foo' decides to add an additional type, such as integer, then that change
will automatically be shown in 'cat'.




This bug report was last modified 5 years and 261 days ago.

Previous Next


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