Tue 07 Sep 2010 01:20:40 PM UTC, original submission:
using ,help after (activate-readline) hangs guile. Here is what happen when I C-c out of it. This is from a freshly built and installed guile using default options to configure from the release_1-9-12 tag.
$ guile
GNU Guile 1.9.12
Copyright (C) 1995-2010 Free Software Foundation, Inc.
Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
This program is free software, and you are welcome to redistribute it
under certain conditions; type `,show c' for details.
Enter `,help' for help.
scheme@(guile-user)> ,help
Help Commands [abbrev]:
,help [all | GROUP | [-c] COMMAND]
[,h] - Show help.
,show [TOPIC] [,s] - Gives information about Guile.
,apropos REGEXP [,a] - Find bindings/modules/packages.
,describe OBJ [,d] - Show description/documentation.
Command Groups:
,help all - List all commands
,help module - List module commands
,help language - List language commands
,help compile - List compile commands
,help profile - List profile commands
,help debug - List debug commands
,help inspect - List inspect commands
,help system - List system commands
Type `,help -c COMMAND' to show documentation of a particular command.
scheme@(guile-user)> (use-modules (ice-9 readline))
;;; note: autocompilation is enabled, set GUILE_AUTO_COMPILE=0
;;; or pass the --no-autocompile argument to disable.
;;; compiling /usr/local/share/guile/2.0/ice-9/readline.scm
;;; compiled /home/dsmith/.cache/guile/ccache/2.0-0.R-LE-8/usr/local/share/guile/2.0/ice-9/readline.scm.go
scheme@(guile-user)> (activate-readline)
scheme@(guile-user)> ,help
^CThrow to key `signal' while reading command:
ERROR: User interrupt
While compiling expression:
ERROR: In procedure macroexpand:
ERROR: source expression failed to match any pattern in help
scheme@(guile-user)>
|