diff options
author | Andy Wingo <wingo@pobox.com> | 2011-02-13 10:41:44 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-02-13 15:06:11 +0100 |
commit | 6f06e8d35f0780187c6bce62fe8ace8be055e727 (patch) | |
tree | 095dfb5d6102af1952992694e930a4d63f71e3d5 /module/scripts/compile.scm | |
parent | c50775e2460da0c9fa49817fe22896d0369184ac (diff) | |
download | guile-6f06e8d35f0780187c6bce62fe8ace8be055e727.tar.gz |
autocompile -> auto-compile
* NEWS:
* check-guile.in:
* doc/guile.1:
* doc/ref/scheme-scripts.texi:
* libguile/init.c:
* libguile/load.c:
* libguile/load.h:
* libguile/script.c:
* module/Makefile.am:
* module/ice-9/boot-9.scm:
* module/scripts/compile.scm:
* module/system/base/compile.scm:
* test-suite/Makefile.am:
* test-suite/tests/popen.test: Change "autocompile" to "auto-compile" or
"auto_compile", as appropriate, in variable names, function names,
command line arguments, and the documentation.
Diffstat (limited to 'module/scripts/compile.scm')
-rw-r--r-- | module/scripts/compile.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/scripts/compile.scm b/module/scripts/compile.scm index f3853ff6a..9763d1d6e 100644 --- a/module/scripts/compile.scm +++ b/module/scripts/compile.scm @@ -1,6 +1,6 @@ ;;; Compile --- Command-line Guile Scheme compiler -*- coding: iso-8859-1 -*- -;; Copyright 2005,2008,2009,2010 Free Software Foundation, Inc. +;; Copyright 2005,2008,2009,2010,2011 Free Software Foundation, Inc. ;; ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public License @@ -151,14 +151,14 @@ Compile each Guile source file FILE into a Guile object. -f, --from=LANG specify a source language other than `scheme' -t, --to=LANG specify a target language other than `objcode' -Note that autocompilation will be turned off. +Note that auto-compilation will be turned off. Report bugs to <~A>.~%" %guile-bug-report-address) (exit 0))) (set! %load-path (append load-path %load-path)) - (set! %load-should-autocompile #f) + (set! %load-should-auto-compile #f) (if (and output-file (or (null? input-files) |