[前][次][番号順一覧][スレッド一覧]

ruby-changes:26147

From: nobu <ko1@a...>
Date: Wed, 5 Dec 2012 13:08:32 +0900 (JST)
Subject: [ruby-changes:26147] nobu:r38204 (trunk): * remove trailing spaces.

nobu	2012-12-05 13:08:17 +0900 (Wed, 05 Dec 2012)

  New Revision: 38204

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=38204

  Log:
    * remove trailing spaces.

  Modified files:
    trunk/ext/dl/lib/dl/func.rb
    trunk/ext/nkf/nkf-utf8/nkf.h
    trunk/ext/psych/lib/psych.rb
    trunk/ext/psych/yaml/emitter.c
    trunk/ext/psych/yaml/parser.c
    trunk/ext/psych/yaml/reader.c
    trunk/ext/psych/yaml/scanner.c
    trunk/ext/psych/yaml/writer.c
    trunk/ext/psych/yaml/yaml.h
    trunk/ext/psych/yaml/yaml_private.h
    trunk/lib/erb.rb

Index: lib/erb.rb
===================================================================
--- lib/erb.rb	(revision 38203)
+++ lib/erb.rb	(revision 38204)
@@ -586,7 +586,7 @@
     def add_put_cmd(out, content)
       out.push("#{@put_cmd} #{content_dump(content)}")
     end
-    
+
     def add_insert_cmd(out, content)
       out.push("#{@insert_cmd}((#{content}).to_s)")
     end
Index: ext/dl/lib/dl/func.rb
===================================================================
--- ext/dl/lib/dl/func.rb	(revision 38203)
+++ ext/dl/lib/dl/func.rb	(revision 38204)
@@ -14,7 +14,7 @@
     if DL.fiddle?
       CALL_TYPE_TO_ABI = Hash.new { |h, k|
         raise RuntimeError, "unsupported call type: #{k}"
-      }.merge({ :stdcall => 
+      }.merge({ :stdcall =>
                 (Fiddle::Function::STDCALL rescue Fiddle::Function::DEFAULT),
                 :cdecl   => Fiddle::Function::DEFAULT,
                 nil      => Fiddle::Function::DEFAULT
Index: ext/nkf/nkf-utf8/nkf.h
===================================================================
--- ext/nkf/nkf-utf8/nkf.h	(revision 38203)
+++ ext/nkf/nkf-utf8/nkf.h	(revision 38204)
@@ -1,8 +1,8 @@
 /*
- * 
+ *
  * nkf.h - Header file for nkf
  * 
- * $Id: nkf.h,v 1.6 2008/11/07 02:43:43 naruse Exp $
+ * $Id$
  */
 
 #ifndef NKF_H
Index: ext/psych/yaml/yaml_private.h
===================================================================
--- ext/psych/yaml/yaml_private.h	(revision 38203)
+++ ext/psych/yaml/yaml_private.h	(revision 38204)
@@ -231,9 +231,9 @@
         (string).pointer[offset] <= (yaml_char_t) 'f') ?                        \
        ((string).pointer[offset] - (yaml_char_t) 'a' + 10) :                    \
        ((string).pointer[offset] - (yaml_char_t) '0'))
- 
+
 #define AS_HEX(string)  AS_HEX_AT((string),0)
- 
+
 /*
  * Check if the character is ASCII.
  */
Index: ext/psych/yaml/reader.c
===================================================================
--- ext/psych/yaml/reader.c	(revision 38203)
+++ ext/psych/yaml/reader.c	(revision 38204)
@@ -52,7 +52,7 @@
 {
     /* Ensure that we had enough bytes in the raw buffer. */
 
-    while (!parser->eof 
+    while (!parser->eof
             && parser->raw_buffer.last - parser->raw_buffer.pointer < 3) {
         if (!yaml_parser_update_raw_buffer(parser)) {
             return 0;
@@ -295,7 +295,7 @@
                                 parser->offset, value);
 
                     break;
-                
+
                 case YAML_UTF16LE_ENCODING:
                 case YAML_UTF16BE_ENCODING:
 
@@ -318,7 +318,7 @@
                      *
                      * The following formulas are used for decoding
                      * and encoding characters using surrogate pairs:
-                     * 
+                     *
                      *  U  = U' + 0x10000   (0x01 00 00 <= U <= 0x10 FF FF)
                      *  U' = yyyyyyyyyyxxxxxxxxxx   (0 <= U' <= 0x0F FF FF)
                      *  W1 = 110110yyyyyyyyyy
Index: ext/psych/yaml/yaml.h
===================================================================
--- ext/psych/yaml/yaml.h	(revision 38203)
+++ ext/psych/yaml/yaml.h	(revision 38204)
@@ -1,7 +1,7 @@
 /**
  * @file yaml.h
  * @brief Public interface for libyaml.
- * 
+ *
  * Include the header file with the code:
  * @code
  * #include <yaml.h>
@@ -388,7 +388,7 @@
 
     /** The event data. */
     union {
-        
+
         /** The stream parameters (for @c YAML_STREAM_START_EVENT). */
         struct {
             /** The document encoding. */
@@ -724,7 +724,7 @@
 
     /** The node data. */
     union {
-        
+
         /** The scalar parameters (for @c YAML_SCALAR_NODE). */
         struct {
             /** The scalar value. */
Index: ext/psych/yaml/emitter.c
===================================================================
--- ext/psych/yaml/emitter.c	(revision 38203)
+++ ext/psych/yaml/emitter.c	(revision 38204)
@@ -517,7 +517,7 @@
         if (emitter->best_width < 0) {
             emitter->best_width = INT_MAX;
         }
-        
+
         if (!emitter->line_break) {
             emitter->line_break = YAML_LN_BREAK;
         }
@@ -607,7 +607,7 @@
             if (!yaml_emitter_write_indent(emitter))
                 return 0;
         }
-        
+
         if (event->data.document_start.tag_directives.start
                 != event->data.document_start.tag_directives.end) {
             implicit = 0;
@@ -721,7 +721,7 @@
 }
 
 /*
- * 
+ *
  * Expect a flow item node.
  */
 
@@ -1402,7 +1402,7 @@
 {
     size_t anchor_length;
     yaml_string_t string;
-    
+
     anchor_length = strlen((char *)anchor);
     STRING_ASSIGN(string, anchor, anchor_length);
 
Index: ext/psych/yaml/scanner.c
===================================================================
--- ext/psych/yaml/scanner.c	(revision 38203)
+++ ext/psych/yaml/scanner.c	(revision 38204)
@@ -762,7 +762,7 @@
     }
 
     /* Fetch the next token from the queue. */
-    
+
     *token = DEQUEUE(parser, parser->tokens);
     parser->token_available = 0;
     parser->tokens_parsed ++;
@@ -1121,7 +1121,7 @@
         yaml_simple_key_t simple_key;
         simple_key.possible = 1;
         simple_key.required = required;
-        simple_key.token_number = 
+        simple_key.token_number =
             parser->tokens_parsed + (parser->tokens.tail - parser->tokens.head);
         simple_key.mark = parser->mark;
 
@@ -1202,7 +1202,7 @@
  * Push the current indentation level to the stack and set the new level
  * the current column is greater than the indentation level.  In this case,
  * append or insert the specified token into the token queue.
- * 
+ *
  */
 
 static int
@@ -1935,7 +1935,7 @@
          *
          *  - in the flow context;
          *  - in the block context, but not at the beginning of the line or
-         *  after '-', '?', or ':' (complex value).  
+         *  after '-', '?', or ':' (complex value).
          */
 
         if (!CACHE(parser, 1)) return 0;
@@ -3001,7 +3001,7 @@
             *indent = 1;
     }
 
-   return 1; 
+   return 1;
 }
 
 /*
Index: ext/psych/yaml/parser.c
===================================================================
--- ext/psych/yaml/parser.c	(revision 38203)
+++ ext/psych/yaml/parser.c	(revision 38204)
@@ -1295,7 +1295,7 @@
         token = PEEK_TOKEN(parser);
         if (!token) goto error;
     }
-    
+
     for (default_tag_directive = default_tag_directives;
             default_tag_directive->handle; default_tag_directive++) {
         if (!yaml_parser_append_tag_directive(parser, *default_tag_directive, 1,
Index: ext/psych/yaml/writer.c
===================================================================
--- ext/psych/yaml/writer.c	(revision 38203)
+++ ext/psych/yaml/writer.c	(revision 38204)
@@ -74,7 +74,7 @@
         unsigned int value;
         size_t k;
 
-        /* 
+        /*
          * See the "reader.c" code for more details on UTF-8 encoding.  Note
          * that we assume that the buffer contains a valid UTF-8 sequence.
          */
Index: ext/psych/lib/psych.rb
===================================================================
--- ext/psych/lib/psych.rb	(revision 38203)
+++ ext/psych/lib/psych.rb	(revision 38204)
@@ -18,8 +18,8 @@
 ###
 # = Overview
 #
-# Psych is a YAML parser and emitter. 
-# Psych leverages libyaml [Home page: http://pyyaml.org/wiki/LibYAML] 
+# Psych is a YAML parser and emitter.
+# Psych leverages libyaml [Home page: http://pyyaml.org/wiki/LibYAML]
 # or [Git repo: https://github.com/zerotao/libyaml] for its YAML parsing
 # and emitting capabilities. In addition to wrapping libyaml, Psych also
 # knows how to serialize and de-serialize most Ruby objects to and from

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]