From ac2066b6f439b2497e761fbd99c9675db0b03bbd Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Tue, 22 Sep 2009 22:43:28 +0200 Subject: New implementation registration mechanism, for the elisp side of things. Implementations must invoke define-geiser-implementation with an appropriate set of methods. Simple inheritance is supported. Each geiser module defines and registers the method names it uses. --- elisp/geiser-custom.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'elisp/geiser-custom.el') diff --git a/elisp/geiser-custom.el b/elisp/geiser-custom.el index bdaac06..789c824 100644 --- a/elisp/geiser-custom.el +++ b/elisp/geiser-custom.el @@ -45,9 +45,12 @@ (defvar geiser-custom--memoized-vars nil) +(defun geiser-custom--memoize (name) + (add-to-list 'geiser-custom--memoized-vars name)) + (defmacro geiser-custom--defcustom (name &rest body) `(progn - (add-to-list 'geiser-custom--memoized-vars ',name) + (geiser-custom--memoize ',name) (defcustom ,name ,@body))) (defun geiser-custom--memoized-state () @@ -56,7 +59,6 @@ (when (boundp name) (push (cons name (symbol-value name)) result))))) - (provide 'geiser-custom) ;;; geiser-custom.el ends here -- cgit v1.2.3