diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-06-20 20:31:28 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-06-20 20:31:28 -0700 |
commit | b2725417c5ebebf42c77e4a1c7ccc093d38be2f4 (patch) | |
tree | 97e13fdb4c01b01de1b2f224abfcfe57c8083a2f /share | |
parent | 20179e0ec729eba70cdf91fafdf21b8412fb45e4 (diff) | |
download | txr-b2725417c5ebebf42c77e4a1c7ccc093d38be2f4.tar.gz txr-b2725417c5ebebf42c77e4a1c7ccc093d38be2f4.tar.bz2 txr-b2725417c5ebebf42c77e4a1c7ccc093d38be2f4.zip |
dump-to-tlo: move to sys package.
* share/txr/stdlib/compiler.tl (usr:dump-to-tlo): This
function has no reason to be named by a usr package symbol.
Renaming to sys:dump-to-tlo.
Diffstat (limited to 'share')
-rw-r--r-- | share/txr/stdlib/compiler.tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/txr/stdlib/compiler.tl b/share/txr/stdlib/compiler.tl index 233ef129..dfab93a9 100644 --- a/share/txr/stdlib/compiler.tl +++ b/share/txr/stdlib/compiler.tl @@ -1640,7 +1640,7 @@ (release-deferred-warnings) (compiler-emit-warnings)))))) -(defun usr:dump-to-tlo (out-stream out) +(defun dump-to-tlo (out-stream out) (let* ((*print-circle* t) (*package* (sys:make-anon-package)) (out-forms (split* out.(get) (op where (op eq :fence))))) |