
	<<Readline module for Gauche>>

 This is very trivial version of GNU readline support for Gauche.
All interface may change in future version.

 You must have Gauche-0.8.2 or later version.


Usage:
 Type "make" command to generate binary module.
 And type "gosh -I . gosh-rl.scm" or "make run" to start interactive gauche
session with readline support.
 Type "make install" to install the files under "/usr/local".


Functions:
 (make-readline-input-port &optional "prompt")
	Make input port with readline support.

 (readline "prompt string")
	Shows "prompt string" and waits for user input.
	And returns <string>.
	If something bad (reaches EOF) returns #f.

 (add-history! "string")
	Add "string" to readline input history.

 (read-history! "filename")
	Restore history from "filename".

 (write-history "filename")
	Save history from "filename".

 (set-readline-name! <"string"|#f>)
	Set readline unique name as "string" or remove the unique name.

 (stifle-history! number)
	Save the number of the history saves.

Q&A:
Q1: Why I can't input or output Ideograph character?
A1: Please check your termimal supports Ideograph character and
    character encoding. And also your readline can handle 8bit character.
    See also rluserman(3readline) manual.

By: YOKOTA Hiroshi
