From c0c49604d436b83f8afac4e60d342d63e2ea4eb2 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sun, 2 Nov 2014 19:16:49 -0800 Subject: [PATCH] Replace :utf with :utf-8 since :utf is no longer an alias. --- tests/unicode.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unicode.lisp b/tests/unicode.lisp index f863e3181..16c0c77f4 100644 --- a/tests/unicode.lisp +++ b/tests/unicode.lisp @@ -171,7 +171,7 @@ (define-test unicode.word-break "Test Unicode word break algorithm" (:tag :unicode) - (with-open-file (s *word-break-test* :direction :input :external-format :utf) + (with-open-file (s *word-break-test* :direction :input :external-format :utf-8) (loop for line = (read-line s nil nil) while line do -- GitLab