From: Kevin M. Rosenberg Date: Fri, 1 Oct 2004 17:24:52 +0000 (+0000) Subject: r10078: fix typo from manual patch application X-Git-Tag: v3.8.6~224 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=f5e09161c9bbee507927de839b9691523ab53fc2 r10078: fix typo from manual patch application --- diff --git a/db-odbc/odbc-ff-interface.lisp b/db-odbc/odbc-ff-interface.lisp index a7153c8..e46db57 100644 --- a/db-odbc/odbc-ff-interface.lisp +++ b/db-odbc/odbc-ff-interface.lisp @@ -384,9 +384,7 @@ (table-name :pointer-void) (table-name-length :short) (table-type-name :pointer-void) - (table-type-name-length :short) - (unique :short) - (reserved :short)) + (table-type-name-length :short)) :module "odbc" :returning :short) diff --git a/sql/utils.lisp b/sql/utils.lisp index 362d16c..0e40b1d 100644 --- a/sql/utils.lisp +++ b/sql/utils.lisp @@ -58,15 +58,6 @@ (escaped (make-string (length unescaped)))) (substitute #\_ #\- unescaped))) -(dotimes (i (length unescaped)) - (setf (char escaped i) - (cond ((equal (char unescaped i) #\-) - #\_) - ;; ... - (t - (char unescaped i))))) - escaped)) - (defmacro without-interrupts (&body body) #+allegro `(mp:without-scheduling ,@body) #+clisp `(progn ,@body)