Explorar el Código

Bugfix to FMT refactor.

Brit Butler hace 12 años
padre
commit
6eab23f8b7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/util.lisp

+ 1 - 1
src/util.lisp

@@ -1,6 +1,6 @@
1 1
 (in-package :coleslaw)
2 2
 
3
-(defun fmt (fmt-str &rest args)
3
+(defun fmt (fmt-str args)
4 4
   "A convenient FORMAT interface for string building."
5 5
   (apply 'format nil fmt-str args))
6 6