From 0081fb656094a845700e887c00a1c10459af3233 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Tue, 19 Feb 2019 12:50:56 +0100 Subject: [PATCH] Oops, fix trailing closing parens. When using interactive recompiling of the code in Emacs/SLIME, extra closing parens are just ignored in Emacs before sending the current form to the CL compiler. When compiling from the source files, of course, that doesn't work. See #910. --- src/utils/transforms.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/transforms.lisp b/src/utils/transforms.lisp index 750add8..0c6961d 100644 --- a/src/utils/transforms.lisp +++ b/src/utils/transforms.lisp @@ -383,7 +383,7 @@ :clock-seq-var (aref id 8) :clock-seq-low (aref id 9) :node (uuid::arr-to-bytes 10 15 id)))) - (princ-to-string uuid))))) + (princ-to-string uuid)))) (defun unix-timestamp-to-timestamptz (unixtime-string) "Takes a unix timestamp (seconds since beginning of 1970) and converts it