emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

dolist?


From: Lennart Borgman
Subject: dolist?
Date: Sat, 02 Jul 2005 13:43:12 +0200
User-agent: Mozilla Thunderbird 1.0.2 (Windows/20050317)

I am trying to use dolist in the function below. When I comment out the line marked below I only get the first det from detlst. What is wrong? Is dolist a no-no? Or is this a bug?


(defun instpack-check-pack-list()
 (message "Checking package list detail names...")
 (dolist (pack instpack-package-list)
   (let ((name (nth 0 pack))
     (detlst (nth 1 pack)))
     (message "  %s" name)
     (when detlst
   (dolist (det detlst)
;;(message " det=%s" det) ;; <----------- I only get the first "det" if I comment out this...
     (let ((detname (car det)))
(message (concat " ... checking detail name " (symbol-name detname)))
       (unless (instpack-detail-valid detname)
(error (concat "Detail name " detname " in package " name " is invalid" )))))))))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]