ruby-changes:23947
From: nobu <ko1@a...>
Date: Sun, 10 Jun 2012 06:36:46 +0900 (JST)
Subject: [ruby-changes:23947] nobu:r35998 (trunk): * removed trailing spaces.
nobu 2012-06-10 06:36:05 +0900 (Sun, 10 Jun 2012) New Revision: 35998 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=35998 Log: * removed trailing spaces. Modified files: trunk/ChangeLog trunk/NEWS trunk/common.mk trunk/ia64.s trunk/insns.def Index: ChangeLog =================================================================== --- ChangeLog (revision 35997) +++ ChangeLog (revision 35998) @@ -5,8 +5,8 @@ Sun Jun 10 03:09:41 2012 Martin Bosslet <Martin.Bosslet@g...> * ext/openssl/ossl.c: Fix error in example. Patch by David Albert. - - Add/extend existing documentation. Examples now also cover RSA + + Add/extend existing documentation. Examples now also cover RSA signatures and PBKDF2. [ruby-core: 45154][ruby-trunk - Bug #6475] @@ -18,7 +18,7 @@ functionality introduced in r35797. The new callback approach gives clients maximum flexibility to decide on their own what to do on renegotiation attempts. - Add documentation for SSL module and SSLError. + Add documentation for SSL module and SSLError. * test/openssl/test_ssl.rb: Add a test for SSLContext#renegotiation_cb. @@ -74,7 +74,7 @@ Sat Jun 9 22:27:05 2012 Tanaka Akira <akr@f...> * process.c (retry_fork): rewrite a complex "for" statement by - simple statements. + simple statements. Sat Jun 9 21:50:04 2012 Tanaka Akira <akr@f...> @@ -105,9 +105,9 @@ (rb_spawn): don't need to give default_close_others argument for rb_spawn_internal. (rb_f_system): don't need to give default_close_others argument for - rb_spawn_internal. + rb_spawn_internal. (rb_f_spawn): don't need to give default_close_others argument for - rb_exec_arg_prepare. + rb_exec_arg_prepare. Sat Jun 9 09:00:58 2012 Tanaka Akira <akr@f...> @@ -257,7 +257,7 @@ (rb_exec_err): Give the absolute path of the invoking command for proc_exec_v, instead of the command name. - * internal.h: add command_abspath field for rb_exec_arg. + * internal.h: add command_abspath field for rb_exec_arg. Wed Jun 6 20:08:01 2012 Tanaka Akira <akr@f...> @@ -306,7 +306,7 @@ * process.c (rb_exec_arg_init): don't return a value. (rb_exec_arg_prepare): ditto. - (rb_spawn_process): don't take the prog argument. extract the + (rb_spawn_process): don't take the prog argument. extract the information from earg. (rb_spawn_internal): follow rb_spawn_process change. (rb_f_spawn): ditto. Index: insns.def =================================================================== --- insns.def (revision 35997) +++ insns.def (revision 35998) @@ -815,7 +815,7 @@ args[0] = obj; args[1] = Qfalse; r = rb_check_funcall(v, rb_intern("respond_to_missing?"), 2, args); - if (r != Qundef && RTEST(r)) + if (r != Qundef && RTEST(r)) expr_type = "method"; } break; Index: common.mk =================================================================== --- common.mk (revision 35997) +++ common.mk (revision 35998) @@ -763,7 +763,7 @@ id.$(OBJEXT): {$(VPATH)}id.c $(RUBY_H_INCLUDES) $(ID_H_INCLUDES) vm_backtrace.$(OBJEXT): {$(VPATH)}vm_backtrace.c \ $(VM_CORE_H_INCLUDES) $(RUBY_H_INCLUDES) \ - {$(VPATH)}internal.h {$(VPATH)}iseq.h + {$(VPATH)}internal.h {$(VPATH)}iseq.h miniprelude.$(OBJEXT): {$(VPATH)}miniprelude.c $(RUBY_H_INCLUDES) \ $(VM_CORE_H_INCLUDES) {$(VPATH)}debug.h {$(VPATH)}internal.h prelude.$(OBJEXT): {$(VPATH)}prelude.c $(RUBY_H_INCLUDES) \ @@ -898,8 +898,8 @@ $(MINIRUBY) $(srcdir)/tool/parse.rb $(TESTRUN_SCRIPT) COMPARE_RUBY = $(BASERUBY) -ITEM = -OPTS = +ITEM = +OPTS = benchmark: $(PROGRAM) PHONY $(BASERUBY) $(srcdir)/benchmark/driver.rb -v \ Index: NEWS =================================================================== --- NEWS (revision 35997) +++ NEWS (revision 35998) @@ -121,15 +121,15 @@ raise NoMethodError in the same case. Constructing such values is still permitted. * TLS 1.1 & 1.2 support by setting OpenSSL::SSL::SSLContext#ssl_version to - :TLSv1_2, :TLSv1_2_server, :TLSv1_2_client or :TLSv1_1, :TLSv1_1_server + :TLSv1_2, :TLSv1_2_server, :TLSv1_2_client or :TLSv1_1, :TLSv1_1_server :TLSv1_1_client. The version being effectively used can be queried - with OpenSSL::SSL#ssl_version. Furthermore, it is also possible to + with OpenSSL::SSL#ssl_version. Furthermore, it is also possible to blacklist the new TLS versions with OpenSSL::SSL:OP_NO_TLSv1_1 and - OpenSSL::SSL::OP_NO_TLSv1_2. + OpenSSL::SSL::OP_NO_TLSv1_2. * Added OpenSSL::SSL::SSLContext#renegotation_cb. A user-defined callback may be set which gets called whenever a new handshake is negotiated. This also allows to programmatically decline (client) renegotiation attempts. - * Support for "0/n" splitting of records as BEAST mitigation via + * Support for "0/n" splitting of records as BEAST mitigation via OpenSSL::SSL::OP_DONT_INSERT_EMPTY_FRAGMENTS. === Language changes Index: ia64.s =================================================================== --- ia64.s (revision 35997) +++ ia64.s (revision 35998) @@ -5,11 +5,11 @@ // // void rb_ia64_flushrs(void) { __builtin_ia64_flushrs(); } // void *rb_ia64_bsp(void) { return __builtin_ia64_bsp(); } -// +// // Note that rb_ia64_flushrs and rb_ia64_bsp works in its own stack frame. // It's because BSP is updated by br.call/brl.call (not alloc instruction). // So rb_ia64_flushrs flushes stack frames including caller's one. -// rb_ia64_bsp returns the address next to caller's register stack frame. +// rb_ia64_bsp returns the address next to caller's register stack frame. // // See also // Intel Itanium Architecture Software Developer's Manual -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/