r10078: fix typo from manual patch application
[clsql.git] / sql / utils.lisp
index 362d16c178529ae67659996c181bbe5f2e4aac73..0e40b1de6a6312cf7cca7183c5164aee402f0716 100644 (file)
          (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)