[More spell scraping support clinton@unknownlamer.org**20080427035022 * Rename initial-spell-parse to parse-scraped-spell * New function: parse-scraped-spells parses list of raw scraped spells ] { hunk ./src/srd-import.lisp 260 -(defun scrape-spell-directory (directory-path) - (mapcar (lambda (spell-filename) - (ignore-errors (scrape-spell spell-filename))) - (fad:list-directory directory-path))) - -(defun initial-spell-parse (scraped-spell) +(defun parse-scraped-spell (scraped-spell) hunk ./src/srd-import.lisp 274 + +(defun scrape-spell-directory (directory-path) + (mapcar (lambda (spell-filename) + (ignore-errors (scrape-spell spell-filename))) + (fad:list-directory directory-path))) + +(defun parse-scraped-spells (scraped-spells) + (mapcar #'parse-scraped-spell scraped-spells)) + + }