* dgnushack.el (dgnushack-bind-colon-keywords): Don't ignore
authoryamaoka <yamaoka>
Thu, 17 May 2001 08:24:16 +0000 (08:24 +0000)
committeryamaoka <yamaoka>
Thu, 17 May 2001 08:24:16 +0000 (08:24 +0000)
 `widget-convert-button', `widget-create' and `widget-put';
 ignore `defface'.

ChangeLog
lisp/dgnushack.el

index ca575cd..47a289b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-05-16  Katsumi Yamaoka <yamaoka@jpl.org>
+
+       * lisp/dgnushack.el (dgnushack-bind-colon-keywords): Don't ignore
+       `widget-convert-button', `widget-create' and `widget-put'; ignore
+       `defface'.
+
 2001-05-14  Katsumi Yamaoka <yamaoka@jpl.org>
 
        * lisp/gnus.el: Require `base64' if `base64-encode-string' is not a
index b7c55fa..267c2ea 100644 (file)
@@ -295,10 +295,9 @@ to the specified name LIBRARY (a la calling `load' instead of `load-library')."
                   (while form
                     (setq elem (pop form))
                     (unless (memq (car-safe elem)
-                                  '(\` backquote defcustom defgroup
-                                    define-widget quote
-                                    widget-convert-button
-                                    widget-create widget-put))
+                                  '(\` backquote
+                                    defcustom defface defgroup
+                                    define-widget quote))
                       (while (consp elem)
                         (push (car elem) form)
                         (setq elem (cdr elem)))