[Move *db-spec* into config and give golf prefix and move *golf-server* out clinton@unknownlamer.org**20080118045520 *golf-server* is not actually a user configuration variable ] { hunk ./src/config.lisp 30 -(defvar *golf-server* nil - "UCW Server for tee-it-up") +(defvar *golf-db-spec* (list :bdb "golf:bdb;") + "Location of the Elephant Database") hunk ./src/database.lisp 53 -(defvar *db-spec* (list :bdb "golf:bdb;") - "Location of the Elephant Database") - hunk ./src/database.lisp 59 - (let ((*db-spec* (copy-list *db-spec*))) - (if (eq (car *db-spec*) :bdb) - (setf (cadr *db-spec*) - (translate-logical-pathname (cadr *db-spec*)))) - *db-spec*))))) + (let ((*golf-db-spec* (copy-list *golf-db-spec*))) + (if (eq (car *golf-db-spec*) :bdb) + (setf (cadr *golf-db-spec*) + (translate-logical-pathname (cadr *golf-db-spec*)))) + *golf-db-spec*))))) hunk ./src/site-control.lisp 2 + +(defvar *golf-server* nil + "UCW Server for tee-it-up") }