r11859: Canonicalize whitespace
[clsql.git] / sql / base-classes.lisp
index 8e0cc496a5e7c4b0714dddc9b4e17e14fa7c0aa2..297b22f9b32c2337616e02f1c8e78b8140af1ba4 100644 (file)
@@ -5,7 +5,7 @@
 ;;;; Name:          classes.lisp
 ;;;; Purpose:       Classes for High-level SQL interface
 ;;;; Programmers:   Kevin M. Rosenberg based on
-;;;;                 original code by Pierre R. Mai 
+;;;;                 original code by Pierre R. Mai
 ;;;; Date Started:  Feb 2002
 ;;;;
 ;;;; $Id$
@@ -25,9 +25,9 @@
   ((name :initform nil :initarg :name :reader database-name)
    (connection-spec :initform nil :initarg :connection-spec
                     :reader connection-spec
-                   :documentation "Require to use connection pool")
+                    :documentation "Require to use connection pool")
    (database-type :initarg :database-type :initform :unknown
-                 :reader database-type)
+                  :reader database-type)
    (state :initform :closed :reader database-state)
    (autocommit :initform t :accessor database-autocommit)
    (command-recording-stream :accessor command-recording-stream :initform nil)
@@ -37,9 +37,9 @@
    (transaction-level :initform 0 :accessor transaction-level)
    (transaction :initform nil :accessor transaction)
    (conn-pool :initform nil :initarg :conn-pool :accessor conn-pool)
-   (attribute-cache :initform (make-hash-table :size 100 :test 'equal) 
-                   :accessor attribute-cache
-                   :documentation "Internal cache of table attributes. It is keyed by table-name. Values
+   (attribute-cache :initform (make-hash-table :size 100 :test 'equal)
+                    :accessor attribute-cache
+                    :documentation "Internal cache of table attributes. It is keyed by table-name. Values
 are a list of ACTION specified for table and any cached value of list-attributes-types."))
   (:documentation
    "This class is the supertype of all databases handled by CLSQL."))
@@ -47,10 +47,10 @@ are a list of ACTION specified for table and any cached value of list-attributes
 (defmethod print-object ((object database) stream)
   (print-unreadable-object (object stream :type t :identity t)
     (format stream "~A ~A"
-           (if (slot-boundp object 'name)
-               (database-name object)
-             "<unbound>")
-           (database-state object)))
+            (if (slot-boundp object 'name)
+                (database-name object)
+              "<unbound>")
+            (database-state object)))
   object)
 
 (setf (documentation 'database-name 'function)