scsh-users
[Top] [All Lists]

[zilla@kerner.com: scsh/SGI]

To: "j. p. lewis" <zilla@kerner.com>
Subject: [zilla@kerner.com: scsh/SGI]
From: bdc@ai.mit.edu (Brian D. Carlstrom)
Date: Mon, 21 Nov 94 03:55:57 EST
Cc: scsh-bugs@martigny.ai.mit.edu
> Undefined: (cig-aux)

this isnt an error, just a load warning due to the way and order cig is loaded

> Running 
>       #!/u0/zilla/binM/scsh -s
>       (map (lambda (arg) (display arg) (display " "))
>            command-line-arguments)
>       (newline)
> gives:
>       Error: EOF inside block comment -- no closing !#

also, not an error. you need to end the comment begun with #! with a !#.
i believe the reasons behind this are documented in the manual. try:

        #!/u0/zilla/binM/scsh -s
        !#
        (map (lambda (arg) (display arg) (display " "))
             command-line-arguments)
        (newline)

also, (format #t "~A " arg) for those that like that kinda of thing.

-bri

<Prev in Thread] Current Thread [Next in Thread>