Add .ss as accepted file ending for r6rs programs

This commit is contained in:
retropikzel 2026-03-17 08:01:42 +02:00
parent 1b98ebe27f
commit dbaf7ce486
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ append_dirs=""
while :; do
case ${1:-} in
*.sps) input_file="$1"; rnrs=R6RS; shift ;;
*.ss) input_file="$1"; rnrs=R6RS; shift ;;
*.scm) input_file="$1"; rnrs=R7RS; shift ;;
-o) output_file="$2"; shift; shift ;;
-D) echo "Warning: -D not supported, so \"$1 $2\" is ignored"; shift; shift ;;