What is the Scheme expression required to pass command-line options to Guile?
---- I am using Geiser to run Guile within Emacs and I have (setq geiser-guile-load-init-file-p t) in my Emacs init file. All seems well. >From https://www.gnu.org/software/guile/manual/guile.html#Init-File 4.4.1 The Init File, ~/.guile When run interactively, Guile will load a local initialization file from ~/.guile. This file should contain Scheme expressions for evaluation. This facility lets the user customize their interactive Guile environment, pulling in extra modules or parameterizing the REPL implementation. thanks, Tobin Harding.