-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40825 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
62 changed files
with
132 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13763,7 +13763,7 @@ Tue Apr 17 17:33:55 2001 Yukihiro Matsumoto <[email protected]> | |
|
||
* eval.c (handle_rescue): use === to compare exception match. | ||
|
||
* error.c (syserr_eqq): comparison between SytemCallErrors should | ||
* error.c (syserr_eqq): comparison between SystemCallErrors should | ||
based on their error numbers. | ||
|
||
Tue Apr 17 16:54:39 2001 K.Kosako <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14297,7 +14297,7 @@ Thu Jun 10 09:10:08 2010 Yukihiro Matsumoto <[email protected]> | |
|
||
Wed Jun 9 22:51:50 2010 Tanaka Akira <[email protected]> | ||
|
||
* time.c (find_time_t): always outerpolate from past. | ||
* time.c (find_time_t): always extrapolate from past. | ||
[ruby-core:30672] reported by Benoit Daloze. | ||
|
||
Wed Jun 9 22:13:08 2010 Tanaka Akira <[email protected]> | ||
|
@@ -76939,7 +76939,7 @@ Sat May 28 16:39:21 2005 GOTOU Yuuzou <[email protected]> | |
Sat May 28 05:15:44 2005 GOTOU Yuuzou <[email protected]> | ||
|
||
* ext/openssl/ossl_x509store.c (ossl_x509stctx_set_time): should | ||
not set internal flag directry. | ||
not set internal flag directory. | ||
|
||
Sat May 28 02:00:11 2005 GOTOU Yuuzou <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
* maintainers: | ||
* - Takaaki Tateishi ([email protected]) | ||
* | ||
* doumentation: | ||
* documentation: | ||
* - Vincent Batts ([email protected]) | ||
*/ | ||
|
||
|
@@ -465,7 +465,7 @@ curses_beep(VALUE obj) | |
/* | ||
* Document-method: Curses.flash | ||
* | ||
* Flashs the screen, for visual alarm on the terminal, if possible; | ||
* Flashes the screen, for visual alarm on the terminal, if possible; | ||
* otherwise it sounds the alert. | ||
* | ||
* see also Curses.beep | ||
|
@@ -1129,7 +1129,7 @@ curses_init_color(VALUE obj, VALUE color, VALUE r, VALUE g, VALUE b) | |
/* | ||
* Document-method: Curses.has_colors? | ||
* | ||
* Returns +true+ or +false+ depending on whether the terminal has color capbilities. | ||
* Returns +true+ or +false+ depending on whether the terminal has color capabilities. | ||
*/ | ||
static VALUE | ||
curses_has_colors(VALUE obj) | ||
|
@@ -1478,7 +1478,7 @@ window_s_allocate(VALUE class) | |
* Document-method: Curses::Window.new | ||
* call-seq: new(height, width, top, left) | ||
* | ||
* Contruct a new Curses::Window with constraints of | ||
* Construct a new Curses::Window with constraints of | ||
* +height+ lines, +width+ columns, begin at +top+ line, and begin +left+ most column. | ||
* | ||
* A new window using full screen is called as | ||
|
@@ -1506,7 +1506,7 @@ window_initialize(VALUE obj, VALUE h, VALUE w, VALUE top, VALUE left) | |
* Document-method: Curses::Window.subwin | ||
* call-seq: subwin(height, width, top, left) | ||
* | ||
* Contruct a new subwindow with constraints of | ||
* Construct a new subwindow with constraints of | ||
* +height+ lines, +width+ columns, begin at +top+ line, and begin +left+ most column. | ||
* | ||
*/ | ||
|
@@ -2352,7 +2352,7 @@ window_bkgd(VALUE obj, VALUE ch) | |
/* | ||
* Document-method: Curses::Window.getbkgd | ||
* | ||
* Returns an Interer (+ch+) for the character property in the current window. | ||
* Returns an Integer (+ch+) for the character property in the current window. | ||
*/ | ||
static VALUE | ||
window_getbkgd(VALUE obj) | ||
|
@@ -2501,7 +2501,7 @@ window_timeout(VALUE obj, VALUE delay) | |
* call-seq: | ||
* new(height, width) | ||
* | ||
* Contruct a new Curses::Pad with constraints of +height+ lines, +width+ | ||
* Construct a new Curses::Pad with constraints of +height+ lines, +width+ | ||
* columns | ||
* | ||
*/ | ||
|
@@ -2530,7 +2530,7 @@ pad_initialize(VALUE obj, VALUE h, VALUE w) | |
* call-seq: | ||
* subpad(height, width, begin_x, begin_y) | ||
* | ||
* Contruct a new subpad with constraints of +height+ lines, +width+ columns, | ||
* Construct a new subpad with constraints of +height+ lines, +width+ columns, | ||
* begin at +begin_x+ line, and +begin_y+ columns on the pad. | ||
* | ||
*/ | ||
|
@@ -3581,10 +3581,10 @@ Init_curses(void) | |
#endif | ||
#ifdef KEY_SR | ||
/* Document-const: KEY_SR | ||
* Scroll 1 line backware (reverse) | ||
* Scroll 1 line backward (reverse) | ||
*/ | ||
/* Document-const: SR | ||
* Scroll 1 line backware (reverse) | ||
* Scroll 1 line backward (reverse) | ||
*/ | ||
rb_curses_define_const(KEY_SR); | ||
rb_define_const(mKey, "SR", INT2NUM(KEY_SR)); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* ext/dl/dl.c | ||
* | ||
* doumentation: | ||
* documentation: | ||
* - Vincent Batts ([email protected]) | ||
* | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.