1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* whitespace cleanup.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2011-11-04 07:19:23 +00:00
parent ab682d95e0
commit 413f24d3b0
14 changed files with 34 additions and 34 deletions

View file

@ -4334,7 +4334,7 @@ VpDivd(Real *c, Real *r, Real *a, Real *b)
VpAsgn(c, a, VpGetSign(b)); VpAsgn(c, a, VpGetSign(b));
VpSetZero(r,VpGetSign(a)); VpSetZero(r,VpGetSign(a));
goto Exit; goto Exit;
} }
word_a = a->Prec; word_a = a->Prec;
word_b = b->Prec; word_b = b->Prec;

View file

@ -137,7 +137,7 @@ fdbm_initialize(int argc, VALUE *argv, VALUE obj)
FilePathValue(file); FilePathValue(file);
/* /*
* Note: * Note:
* The dbm compatibility layer of gdbm 1.9 doesn't respect O_CLOEXEC. * The dbm compatibility layer of gdbm 1.9 doesn't respect O_CLOEXEC.
*/ */

View file

@ -611,13 +611,13 @@ etc_systmpdir(void)
* the logged in user than environment variables such as $USER. For example: * the logged in user than environment variables such as $USER. For example:
* *
* require 'etc' * require 'etc'
* *
* login = Etc.getlogin * login = Etc.getlogin
* info = Etc.getpwnam(login) * info = Etc.getpwnam(login)
* username = info.gecos.split(/,/).first * username = info.gecos.split(/,/).first
* puts "Hello #{username}, I see your login name is #{login}" * puts "Hello #{username}, I see your login name is #{login}"
* *
* Note that the methods provided by this module are not always secure. * Note that the methods provided by this module are not always secure.
* It should be used for informational purposes, and not for security. * It should be used for informational purposes, and not for security.
*/ */
void void

View file

@ -869,7 +869,7 @@ int_ossl_asn1_decode0_cons(unsigned char **pp, long max_len, long length,
rb_ary_push(ary, value); rb_ary_push(ary, value);
if (length > 0) if (length > 0)
length -= inner_read; length -= inner_read;
if (infinite && if (infinite &&
NUM2INT(ossl_asn1_get_tag(value)) == V_ASN1_EOC && NUM2INT(ossl_asn1_get_tag(value)) == V_ASN1_EOC &&
SYM2ID(ossl_asn1_get_tag_class(value)) == sUNIVERSAL) { SYM2ID(ossl_asn1_get_tag_class(value)) == sUNIVERSAL) {

View file

@ -409,7 +409,7 @@ Init_ossl_digest()
* data1 = File.read('file1') * data1 = File.read('file1')
* sha256 = OpenSSL::Digest::SHA256.new * sha256 = OpenSSL::Digest::SHA256.new
* digest1 = sha256.digest(data1) * digest1 = sha256.digest(data1)
* *
* data2 = File.read('file2') * data2 = File.read('file2')
* sha256.reset * sha256.reset
* digest2 = sha256.digest(data2) * digest2 = sha256.digest(data2)

View file

@ -82,10 +82,10 @@ ossl_engine_s_load(int argc, VALUE *argv, VALUE klass)
#if HAVE_ENGINE_LOAD_NURON #if HAVE_ENGINE_LOAD_NURON
OSSL_ENGINE_LOAD_IF_MATCH(nuron); OSSL_ENGINE_LOAD_IF_MATCH(nuron);
#endif #endif
#if HAVE_ENGINE_LOAD_SUREWARE #if HAVE_ENGINE_LOAD_SUREWARE
OSSL_ENGINE_LOAD_IF_MATCH(sureware); OSSL_ENGINE_LOAD_IF_MATCH(sureware);
#endif #endif
#if HAVE_ENGINE_LOAD_UBSEC #if HAVE_ENGINE_LOAD_UBSEC
OSSL_ENGINE_LOAD_IF_MATCH(ubsec); OSSL_ENGINE_LOAD_IF_MATCH(ubsec);
#endif #endif
#if HAVE_ENGINE_LOAD_PADLOCK #if HAVE_ENGINE_LOAD_PADLOCK
@ -136,7 +136,7 @@ ossl_engine_s_engines(VALUE klass)
/* Need a ref count of two here because of ENGINE_free being /* Need a ref count of two here because of ENGINE_free being
* called internally by OpenSSL when moving to the next ENGINE * called internally by OpenSSL when moving to the next ENGINE
* and by us when releasing the ENGINE reference */ * and by us when releasing the ENGINE reference */
ENGINE_up_ref(e); ENGINE_up_ref(e);
WrapEngine(klass, obj, e); WrapEngine(klass, obj, e);
rb_ary_push(ary, obj); rb_ary_push(ary, obj);
} }

View file

@ -45,7 +45,7 @@ struct ossl_generate_cb_arg {
int yield; int yield;
int stop; int stop;
int state; int state;
}; };
int ossl_generate_cb_2(int p, int n, BN_GENCB *cb); int ossl_generate_cb_2(int p, int n, BN_GENCB *cb);
void ossl_generate_cb_stop(void *ptr); void ossl_generate_cb_stop(void *ptr);
#endif #endif

View file

@ -159,7 +159,7 @@ readline_getc(FILE *input)
} }
} }
} }
#endif #endif
c = rb_funcall(readline_instream, id_getbyte, 0, 0); c = rb_funcall(readline_instream, id_getbyte, 0, 0);
if (NIL_P(c)) return EOF; if (NIL_P(c)) return EOF;
return NUM2CHR(c); return NUM2CHR(c);

View file

@ -1385,7 +1385,7 @@ static void
discard_cmsg(struct cmsghdr *cmh, char *msg_end, int msg_peek_p) discard_cmsg(struct cmsghdr *cmh, char *msg_end, int msg_peek_p)
{ {
# if !defined(FD_PASSING_WORK_WITH_RECVMSG_MSG_PEEK) # if !defined(FD_PASSING_WORK_WITH_RECVMSG_MSG_PEEK)
/* /*
* FreeBSD 8.2.0, NetBSD 5 and MacOS X Snow Leopard doesn't * FreeBSD 8.2.0, NetBSD 5 and MacOS X Snow Leopard doesn't
* allocate fds by recvmsg with MSG_PEEK. * allocate fds by recvmsg with MSG_PEEK.
* [ruby-dev:44189] * [ruby-dev:44189]

26
hash.c
View file

@ -3151,24 +3151,24 @@ env_update(VALUE env, VALUE hash)
* A Hash is a dictionary-like collection of unique keys and their values. * A Hash is a dictionary-like collection of unique keys and their values.
* Also called associative arrays, they are similar to Arrays, but where an * Also called associative arrays, they are similar to Arrays, but where an
* Array uses integers as its index, a Hash allows you to use any object * Array uses integers as its index, a Hash allows you to use any object
* type. * type.
* *
* Hashes enumerate their values in the order that the corresponding keys * Hashes enumerate their values in the order that the corresponding keys
* were inserted. * were inserted.
* *
* A Hash can be easily created by using its implicit form: * A Hash can be easily created by using its implicit form:
* *
* grades = { "Jane Doe" => 10, "Jim Doe" => 6 } * grades = { "Jane Doe" => 10, "Jim Doe" => 6 }
* *
* Hashes allow an alternate syntax form when your keys are always symbols. * Hashes allow an alternate syntax form when your keys are always symbols.
* Instead of * Instead of
* *
* options = { :font_size => 10, :font_family => "Arial" } * options = { :font_size => 10, :font_family => "Arial" }
* *
* You could write it as: * You could write it as:
* *
* options = { font_size: 10, font_family: "Arial" } * options = { font_size: 10, font_family: "Arial" }
* *
* Each named key is a symbol you can access in hash: * Each named key is a symbol you can access in hash:
* *
* options[:font_size] # => 10 * options[:font_size] # => 10
@ -3180,7 +3180,7 @@ env_update(VALUE env, VALUE hash)
* *
* Hashes have a <em>default value</em> that is returned when accessing * Hashes have a <em>default value</em> that is returned when accessing
* keys that do not exist in the hash. If no default is set +nil+ is used. * keys that do not exist in the hash. If no default is set +nil+ is used.
* You can set the default value by sending it as an argument to Hash.new: * You can set the default value by sending it as an argument to Hash.new:
* *
* grades = Hash.new(0) * grades = Hash.new(0)
* *
@ -3188,11 +3188,11 @@ env_update(VALUE env, VALUE hash)
* *
* grades = {"Timmy Doe" => 8} * grades = {"Timmy Doe" => 8}
* grades.default = 0 * grades.default = 0
* *
* Accessing a value in a Hash requires using its key: * Accessing a value in a Hash requires using its key:
* *
* puts grades["Jane Doe"] # => 10 * puts grades["Jane Doe"] # => 10
* *
* === Common Uses * === Common Uses
* *
* Hashes are an easy way to represent data structures, such as * Hashes are an easy way to represent data structures, such as
@ -3200,12 +3200,12 @@ env_update(VALUE env, VALUE hash)
* books = {} * books = {}
* books[:matz] = "The Ruby Language" * books[:matz] = "The Ruby Language"
* books[:black] = "The Well-Grounded Rubyist" * books[:black] = "The Well-Grounded Rubyist"
* *
* Hashes are also commonly used as a way to have named parameters in * Hashes are also commonly used as a way to have named parameters in
* functions. Note that no brackets are used below. If a hash is the last * functions. Note that no brackets are used below. If a hash is the last
* argument on a method call, no braces are needed, thus creating a really * argument on a method call, no braces are needed, thus creating a really
* clean interface: * clean interface:
* *
* Person.create(name: "John Doe", age: 27) * Person.create(name: "John Doe", age: 27)
* *
* def self.create(params) * def self.create(params)

2
io.c
View file

@ -5629,7 +5629,7 @@ rb_open_file(int argc, VALUE *argv, VALUE io)
* be passed the opened +file+ as an argument, and the File object will * be passed the opened +file+ as an argument, and the File object will
* automatically be closed when the block terminates. In this instance, * automatically be closed when the block terminates. In this instance,
* <code>File.open</code> returns the value of the block. * <code>File.open</code> returns the value of the block.
* *
* See IO.new for a list of values for the +opt+ parameter. * See IO.new for a list of values for the +opt+ parameter.
*/ */

View file

@ -5233,14 +5233,14 @@ rb_str_tr_bang(VALUE str, VALUE src, VALUE repl)
* call-seq: * call-seq:
* str.tr(from_str, to_str) => new_str * str.tr(from_str, to_str) => new_str
* *
* Returns a copy of <i>str</i> with the characters in <i>from_str</i> * Returns a copy of <i>str</i> with the characters in <i>from_str</i>
* replaced by the corresponding characters in <i>to_str</i>. If * replaced by the corresponding characters in <i>to_str</i>. If
* <i>to_str</i> is shorter than <i>from_str</i>, it is padded with its last * <i>to_str</i> is shorter than <i>from_str</i>, it is padded with its last
* character in order to maintain the correspondence. * character in order to maintain the correspondence.
* *
* "hello".tr('el', 'ip') #=> "hippo" * "hello".tr('el', 'ip') #=> "hippo"
* "hello".tr('aeiou', '*') #=> "h*ll*" * "hello".tr('aeiou', '*') #=> "h*ll*"
* *
* Both strings may use the c1-c2 notation to denote ranges of characters, * Both strings may use the c1-c2 notation to denote ranges of characters,
* and <i>from_str</i> may start with a <code>^</code>, which denotes all * and <i>from_str</i> may start with a <code>^</code>, which denotes all
* characters except those listed. * characters except those listed.

View file

@ -1091,7 +1091,7 @@ consume_communication_pipe(void)
{ {
#define CCP_READ_BUFF_SIZE 1024 #define CCP_READ_BUFF_SIZE 1024
/* buffer can be shared because no one refers to them. */ /* buffer can be shared because no one refers to them. */
static char buff[CCP_READ_BUFF_SIZE]; static char buff[CCP_READ_BUFF_SIZE];
ssize_t result; ssize_t result;
retry: retry:
@ -1150,11 +1150,11 @@ thread_timer(void *p)
timeout.tv_usec = TIME_QUANTUM_USEC; timeout.tv_usec = TIME_QUANTUM_USEC;
/* polling (TIME_QUANTUM_USEC usec) */ /* polling (TIME_QUANTUM_USEC usec) */
result = select(timer_thread_pipe[0] + 1, &rfds, 0, 0, &timeout); result = select(timer_thread_pipe[0] + 1, &rfds, 0, 0, &timeout);
} }
else { else {
/* wait (infinite) */ /* wait (infinite) */
result = select(timer_thread_pipe[0] + 1, &rfds, 0, 0, 0); result = select(timer_thread_pipe[0] + 1, &rfds, 0, 0, 0);
} }
if (result == 0) { if (result == 0) {

4
time.c
View file

@ -4882,7 +4882,7 @@ time_load(VALUE klass, VALUE str)
* t = Time.new(1993, 02, 24, 12, 0, 0, "+09:00") * t = Time.new(1993, 02, 24, 12, 0, 0, "+09:00")
* *
* Was that a monday? * Was that a monday?
* *
* t.monday? #=> false * t.monday? #=> false
* *
* What year was that again? * What year was that again?
@ -4905,7 +4905,7 @@ time_load(VALUE klass, VALUE str)
* *
* t1 = Time.new(2010) * t1 = Time.new(2010)
* t2 = Time.new(2011) * t2 = Time.new(2011)
* *
* t1 == t2 #=> false * t1 == t2 #=> false
* t1 == t1 #=> true * t1 == t1 #=> true
* t1 < t2 #=> true * t1 < t2 #=> true