ruby-changes:4216
From: ko1@a...
Date: Thu, 6 Mar 2008 14:06:48 +0900 (JST)
Subject: [ruby-changes:4216] akr - Ruby:r15706 (trunk): * include/ruby/missing.h (cbrt): add declaration.
akr 2008-03-06 14:06:30 +0900 (Thu, 06 Mar 2008)
New Revision: 15706
Modified files:
trunk/ChangeLog
trunk/include/ruby/missing.h
Log:
* include/ruby/missing.h (cbrt): add declaration.
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/include/ruby/missing.h?r1=15706&r2=15705&diff_format=u
http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=15706&r2=15705&diff_format=u
Index: include/ruby/missing.h
===================================================================
--- include/ruby/missing.h (revision 15705)
+++ include/ruby/missing.h (revision 15706)
@@ -87,6 +87,10 @@
extern double lgamma_r(double, int *);
#endif
+#ifndef HAVE_CBRT
+extern double cbrt(double);
+#endif
+
#ifndef isinf
# ifndef HAVE_ISINF
# if defined(HAVE_FINITE) && defined(HAVE_ISNAN)
Index: ChangeLog
===================================================================
--- ChangeLog (revision 15705)
+++ ChangeLog (revision 15706)
@@ -1,3 +1,7 @@
+Thu Mar 6 14:00:10 2008 Tanaka Akira <akr@f...>
+
+ * include/ruby/missing.h (cbrt): add declaration.
+
Thu Mar 6 11:14:14 2008 Nobuyoshi Nakada <nobu@r...>
* misc/ruby-mode.el (ruby-add-log-current-method): use ruby style
@@ -362,13 +366,13 @@
Thu Feb 28 11:19:51 2008 Nobuyoshi Nakada <nobu@r...>
- * string.c (rb_str_reverse_bang): removed unsed variables.
+ * string.c (rb_str_reverse_bang): removed unused variables.
* include/ruby/encoding.h (rb_str_coderange_scan_restartable): added
prototype.
* string.c (rb_str_coderange_scan_restartable, rb_str_times): removed
- unsed variables.
+ unused variables.
* string.c (rb_str_reverse_bang): ditto
@@ -389,16 +393,16 @@
a Tk::Tile::Button widget. Of course, you can back to use
standard Tk widgets as the default widget set by calling
"Tk.default_widget_set = :Tk", whenever you want. Based on
- thie feature, you can use Ttk widget styling engine on your
+ the feature, you can use Ttk widget styling engine on your
old Ruby/Tk application without modifying its source, if you
- don'tuse widget options unsupported on Ttk widgets (At first,
+ don't use widget options unsupported on Ttk widgets (At first,
call "Tk.default_widget_set = :Ttk", and next load and run
your application).
This is one step for supporting Tcl/Tk8.5 features.
Wed Feb 27 22:55:42 2008 NARUSE, Yui <naruse@r...>
- * string.c (rb_str_coderange_scan_restartable): coderange scaning
+ * string.c (rb_str_coderange_scan_restartable): coderange scanning
for partial read.
* io.c (read_all): set coderange when not convert encoding.
--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/