vindarel / cl-str

Modern, simple and consistent Common Lisp string manipulation library.
https://vindarel.github.io/cl-str/
MIT License
305 stars 37 forks source link

Noisy printout about Computing Hangul syllables #80

Closed pixpop closed 2 years ago

pixpop commented 2 years ago

Every time I require the str library, it prints a useless message about hangul syllables:

% sbcl
This is SBCL 2.2.6, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.

CL-USER> (require :str)
;;; Computing Hangul syllable names
NIL
CL-USER> 

Is there a way to prevent this from appearing?

vindarel commented 2 years ago

I can't reproduce myself on SBCL 2.0.10 for now

To load "str":                                                                                          
  Load 1 ASDF system:                                                                                   
    str                                                                                                 
; Loading "str"                                                                                         

If it is a warning or a condition it should be possible. Need to investigate.

pixpop commented 2 years ago

I did a bit of searching. Looks like the message comes out of cl-unicode.

dists/quicklisp/software/cl-unicode-20210228-git/util.lisp:    (format t "~&;;; Computing Hangul syllable names")
pixpop commented 2 years ago

I think I'll close this and contact the owner of cl-unicode instead. Sorry for the noise.