зеркало из https://github.com/github/ruby.git
041e829127
(rb_isalnum): ditto. (rb_isalpha): ditto. (rb_isblank): ditto. (rb_iscntrl): ditto. (rb_isdigit): ditto. (rb_isgraph): ditto. (rb_islower): ditto. (rb_isprint): ditto. (rb_ispunct): ditto. (rb_isspace): ditto. (rb_isupper): ditto. (rb_isxdigit): ditto. (rb_tolower): ditto. (rb_toupper): ditto. * include/ruby/st.h (st_strcasecmp): declared. (st_strncasecmp): ditto. * st.c (type_strcasehash): use st_strcasecmp instead of strcasecmp. (st_strcasecmp): defined. (st_strncasecmp): ditto. * include/ruby/ruby.h: include include/ruby/encoding.h. (ISASCII): use rb_isascii. (ISPRINT): use rb_isprint. (ISSPACE): use rb_isspace. (ISUPPER): use rb_isupper. (ISLOWER): use rb_islower. (ISALNUM): use rb_isalnum. (ISALPHA): use rb_isalpha. (ISDIGIT): use rb_isdigit. (ISXDIGIT): use rb_isxdigit. (TOUPPER): defined. (TOLOWER): ditto. (STRCASECMP): ditto. (STRNCASECMP): ditto. * dir.c, encoding.c, file.c, hash.c, process.c, ruby.c, time.c, transcode.c, ext/readline/readline.c: use locale insensitive functions. [ruby-core:14662] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14829 b2dd03c8-39d4-4d8f-98ff-823fe69b080e |
||
---|---|---|
.. | ||
.cvsignore | ||
README | ||
README.ja | ||
depend | ||
extconf.rb | ||
readline.c |
README
Extension for GNU Readline Library Example: require "readline" include Readline line = readline("Prompt> ", true) [Readline] <module function> readline(prompt, add_history=nil) Reads one line with line editing. The inputted line is added to the history if add_history is true. <class methods> completion_proc = proc Specifies a Proc object to determine completion behavior. It should take input-string, and return an array of completion candidates. completion_proc Returns the completion Proc object. completion_case_fold = bool Sets whether or not to ignore case on completion. completion_case_fold Returns true if completion ignores case. completion_append_character = char Specifies a character to be appended on completion. Nothing will be appended if an empty string ("") or nil is specified. completion_append_character Returns a string containing a character to be appended on completion. The default is a space (" "). vi_editing_mode Specifies VI editing mode. emacs_editing_mode Specifies Emacs editing mode. <class constants> HISTORY The history buffer. It behaves just like an array.