Synch with emacs-w3m.
authoryamaoka <yamaoka>
Wed, 30 Oct 2002 05:42:40 +0000 (05:42 +0000)
committeryamaoka <yamaoka>
Wed, 30 Oct 2002 05:42:40 +0000 (05:42 +0000)
* dgnushack.el (dgnushack-bind-colon-keywords): Protect against unexpected
 data structure.

ChangeLog
lisp/dgnushack.el

index 160ccb9..fcc3ca2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
+
+       * lisp/dgnushack.el (dgnushack-bind-colon-keywords): Protect
+       against unexpected data structure.
+
 2002-10-09  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * lisp/gnus-vers.el (gnus-revision-number): Increment to 02.
index e3b3e53..e058281 100644 (file)
@@ -347,7 +347,8 @@ Try to re-configure with --with-addpath=FLIM_PATH and run make again.
                                     (error nil)))
                   (when (listp form)
                     (while form
-                      (setq elem (pop form))
+                      (setq elem (car-safe form)
+                            form (cdr-safe form))
                       (unless (memq (car-safe elem)
                                     '(defcustom defface defgroup
                                       define-widget quote))