X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=sql%2Futils.lisp;h=0e40b1de6a6312cf7cca7183c5164aee402f0716;hb=0d4cb96505d958c3abebebd5a9b9941e291d7889;hp=362d16c178529ae67659996c181bbe5f2e4aac73;hpb=d9f41af62750c622945bb17b622a39689ee5b840;p=clsql.git 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)