diff options
Diffstat (limited to 'scsh.init')
-rw-r--r-- | scsh.init | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -190,6 +190,12 @@ )) +;;@ (FILE-POSITION <port> . <k>) +(define (file-position port . args) + (if (null? args) + (tell port) + (apply seek port args))) + ;;; (OUTPUT-PORT-WIDTH <port>) (define (output-port-width . arg) 79) |