[mcclim-cvs] CVS mcclim/Apps/Listener
ahefner
ahefner at common-lisp.net
Mon Feb 5 03:41:37 UTC 2007
Update of /project/mcclim/cvsroot/mcclim/Apps/Listener
In directory clnet:/tmp/cvs-serv12508
Modified Files:
file-types.lisp
Log Message:
Fix for some bogus mailcap entry noted on IRC.
--- /project/mcclim/cvsroot/mcclim/Apps/Listener/file-types.lisp 2006/03/29 10:43:37 1.10
+++ /project/mcclim/cvsroot/mcclim/Apps/Listener/file-types.lisp 2007/02/05 03:41:37 1.11
@@ -419,17 +419,20 @@
(let ((table (make-hash-table :size 8))
(foo nil)) ; <- position after reading required fields
(when ;; First read the required fields.
- (multiple-value-bind (text pos)
- (read-mailcap-field line)
- (multiple-value-bind (media-type type subtype)
- (read-mime-type text)
- (multiple-value-bind (view-command pos)
- (read-mailcap-field line pos)
- (setf foo pos)
- (setf (gethash :type table) type)
- (setf (gethash :subtype table) subtype)
- (setf (gethash :media-type table) media-type)
- #| --> |# (setf (gethash :view-command table) view-command))))
+ (with-simple-restart (skip "Skip mailcap entry \"~A\"" (string-trim #(#\Space #\Tab) line))
+ (multiple-value-bind (text pos)
+ (read-mailcap-field line)
+ (and pos
+ (multiple-value-bind (media-type type subtype)
+ (read-mime-type text)
+ (multiple-value-bind (view-command pos)
+ (read-mailcap-field line pos)
+ (setf foo pos)
+ (setf (gethash :type table) type)
+ (setf (gethash :subtype table) subtype)
+ (setf (gethash :media-type table) media-type)
+ ;; Note the return value:
+ (setf (gethash :view-command table) view-command))))))
;; If the required fields were read successfully, read
;; the options into the hash table.
(loop
More information about the Mcclim-cvs
mailing list