hyotang666

Results 9 issues of hyotang666

The behavior that I got is below (the dribbled one). ```lisp "dribble" ? (lisp-implementation-version) "Version 1.12 (v1.12) LinuxX8664" ? (defclass fun () () (:metaclass c2mop:funcallable-standard-class)) # ? (defmethod initialize-instance :after...

```lisp CL-USER(1): (subtypep '(mod 3) '(mod 3)) => NIL, NIL ``` Type specifier `INTEGER` works fine. ```lisp CL-USER(1): (subtypep '(integer 0 3) '(integer 0 3)) => T, T ``` [CLHS...

```lisp (format nil "~" nil) => "" ```

```lisp (format t "~:" '(a b)) => b(A ) ``` When remove `~(~)` directive, the output is the expected one. ```lisp (format t "~:" '(a b)) => (A B) ```

What I got is the behavior like below. ```lisp CL-USER(0): (asdf:load-system :bordeaux-threads) T CL-USER(1): (bt:with-timeout (1) (error "test")) #: Debugger invoked on condition of type SIMPLE-ERROR test Restarts: 0: TOP-LEVEL...

(with-compilation-unit () (signal 'warning)) signals control-error due to no muffle-warning handler.

Pros: End users no longer needs to setup clhs. Cons: Remove features to lookup :abbrev, :section, :format and :reader-macro. Note: Removed features are not used in colorize code base.

Here is the session. ``` * (lispn:define-namespace test) "" * (symbol-test 'no) debugger invoked on a UNBOUND-TEST in thread #: Symbol NO is unbound in namespace TEST Type HELP for...

This is a typical pitfall. `NIL` does not match any type. ```lisp (typep nil nil) => NIL (typep nil 'null) => T (typep '(0) '(cons fixnum nil)) => NIL (typep...