author | Camm Maguire <camm@debian.org> | 2015年11月24日 21:19:04 +0000 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2015年11月24日 21:19:04 +0000 |
commit | 8c097a5195b4ac9db531ad1c51dc2c555c315a29 (patch) | |
tree | 062fbb492f88f40a97ea496f9af44db97692d51e | |
parent | dd087ba44c7deddd025009d996a4056751b124da (diff) | |
download | gcl-pathnames.tar.gz |
-rwxr-xr-x | gcl/lsp/gcl_mislib.lsp | 10 |
diff --git a/gcl/lsp/gcl_mislib.lsp b/gcl/lsp/gcl_mislib.lsp index 08e2e05a9..acb86767c 100755 --- a/gcl/lsp/gcl_mislib.lsp +++ b/gcl/lsp/gcl_mislib.lsp @@ -114,13 +114,15 @@ (* (+ h tz) 3600) (* min 60) sec)) (defun compile-file-pathname (pathname) -(make-pathname :defaults pathname :type "o")) + (make-pathname :defaults pathname :type "o")) + (defun constantly (x) -#'(lambda (&rest args) + (lambda (&rest args) (declare (ignore args) (:dynamic-extent args)) -x)) + x)) + (defun complement (fn) -#'(lambda (&rest args) (not (apply fn args)))) + (lambda (&rest args) (not (apply fn args)))) (defun default-system-banner () (let (gpled-modules) |