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