aboutsummaryrefslogtreecommitdiffstats
path: root/dirs.scm
diff options
context:
space:
mode:
authorThomas Bushnell, BSG <tb@debian.org>2005-12-04 20:03:34 -0800
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:33 -0800
commit69d4f1c761291d2c33c4b22454877402465b2c48 (patch)
treee46e0725a432b1f6460515fa521da6bb174bb226 /dirs.scm
parentf351d4a6571016e8a571e274032891e06e03911a (diff)
downloadslib-69d4f1c761291d2c33c4b22454877402465b2c48.tar.gz
slib-69d4f1c761291d2c33c4b22454877402465b2c48.zip
Import Debian changes 3a2-3debian/3a2-3
slib (3a2-3) unstable; urgency=low * Brought all source files up-to-date with upstream CVS. Repeat changes from version 3a2-1 in Makefile.
Diffstat (limited to 'dirs.scm')
-rw-r--r--dirs.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/dirs.scm b/dirs.scm
index 0592021..4c5769f 100644
--- a/dirs.scm
+++ b/dirs.scm
@@ -33,12 +33,12 @@
;;If @0 cannot be supported by the platform, then #f is returned.
(define current-directory
(case (software-type)
- ;;((AMIGA) )
- ;;((MACOS THINKC) )
- ((MS-DOS WINDOWS ATARIST OS/2) (lambda () (system->line "cd")))
- ;;((NOSVE) )
- ((UNIX COHERENT PLAN9) (lambda () (system->line "pwd")))
- ;;((VMS) )
+ ;;((amiga) )
+ ;;((macos thinkc) )
+ ((ms-dos windows atarist os/2) (lambda () (system->line "cd")))
+ ;;((nosve) )
+ ((unix coherent plan9) (lambda () (system->line "pwd")))
+ ;;((vms) )
(else #f)))
;;@body
@@ -49,9 +49,9 @@
(define (dir:lister dirname tmp)
(case (software-type)
- ((UNIX COHERENT PLAN9)
+ ((unix coherent plan9)
(zero? (system (string-append "ls '" dirname "' > " tmp))))
- ((MS-DOS WINDOWS OS/2 ATARIST)
+ ((ms-dos windows os/2 atarist)
(zero? (system (string-append "DIR /B \"" dirname "\" > " tmp))))
(else (slib:error (software-type) 'list?))))