Overview
Comment: | Forgot to close port in reading config files |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3938623e504737b2ef0a3e25965f1435 |
User & Date: | matt on 2011-07-12 23:52:13 |
Other Links: | manifest | tags |
Context
2011-07-13
| ||
07:37 | corrected broken fix on config file reader check-in: 0a8acd77a1 user: matt tags: trunk | |
2011-07-12
| ||
23:52 | Forgot to close port in reading config files check-in: 3938623e50 user: matt tags: trunk | |
23:47 | Merged run-launch-cleanup into trunk check-in: 70aaddfbce user: matt tags: trunk | |
Changes
Modified configf.scm from [0a1046a4bf] to [42efb1bc58].
︙ | ︙ | |||
71 72 73 74 75 76 77 | (loop (read-line inp) curr-section-name))) (key-val-pr ( x key val ) (let ((alist (hash-table-ref/default res curr-section-name '()))) (hash-table-set! res curr-section-name (config:assoc-safe-add alist key val)) ;; (append alist (list (list key val)))) (loop (read-line inp) curr-section-name))) (else (debug:print 0 "ERROR: problem parsing " path ",\n \"" inl "\"") | | > | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | (loop (read-line inp) curr-section-name))) (key-val-pr ( x key val ) (let ((alist (hash-table-ref/default res curr-section-name '()))) (hash-table-set! res curr-section-name (config:assoc-safe-add alist key val)) ;; (append alist (list (list key val)))) (loop (read-line inp) curr-section-name))) (else (debug:print 0 "ERROR: problem parsing " path ",\n \"" inl "\"") (loop (read-line inp) curr-section-name))))) (close-input-port inp)))) (define (find-and-read-config fname) (let* ((curr-dir (current-directory)) (configinfo (find-config fname)) (toppath (car configinfo)) (configfile (cadr configinfo))) (if toppath (change-directory toppath)) |
︙ | ︙ |