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

ChangeLog
lisp/dgnushack.el

index 463739b..67929cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2002-10-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
 
+       * lisp/dgnushack.el (dgnushack-bind-colon-keywords): Protect
+       against unexpected data structure.
+
+2002-10-30  TSUCHIYA Masatoshi  <tsuchiya@namazu.org>
+
        * lisp/nnshimbun.el: Clean up codes.
        (nnshimbun-buffer, nnshimbun-current-directory)
        (nnshimbun-current-group, nnshimbun-server-directory): Removed.
index 4cccaae..67f7510 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))