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

ruby-changes:9059

From: nobu <ko1@a...>
Date: Tue, 9 Dec 2008 16:14:30 +0900 (JST)
Subject: [ruby-changes:9059] Ruby:r20596 (trunk): * id.h, include/ruby/{intern,oniguruma}.h, regenc.h, regparse.h,

nobu	2008-12-09 16:14:13 +0900 (Tue, 09 Dec 2008)

  New Revision: 20596

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

  Log:
    * id.h, include/ruby/{intern,oniguruma}.h, regenc.h, regparse.h,
      template/*.tmpl: removed trailing garbage spaces.

  Modified files:
    trunk/id.h
    trunk/include/ruby/intern.h
    trunk/include/ruby/oniguruma.h
    trunk/regenc.h
    trunk/regparse.h
    trunk/template/id.h.tmpl
    trunk/template/insns.inc.tmpl
    trunk/template/insns_info.inc.tmpl
    trunk/template/known_errors.inc.tmpl
    trunk/template/minsns.inc.tmpl
    trunk/template/opt_sc.inc.tmpl
    trunk/template/optinsn.inc.tmpl
    trunk/template/optunifs.inc.tmpl
    trunk/template/vm.inc.tmpl
    trunk/template/vmtc.inc.tmpl
    trunk/template/yasmdata.rb.tmpl

Index: regparse.h
===================================================================
--- regparse.h	(revision 20595)
+++ regparse.h	(revision 20596)
@@ -192,7 +192,7 @@
   AbsAddrType    call_addr;
   /* for multiple call reference */
   OnigDistance min_len; /* min length (byte) */
-  OnigDistance max_len; /* max length (byte) */ 
+  OnigDistance max_len; /* max length (byte) */
   int char_len;         /* character length  */
   int opt_count;        /* referenced count in optimize_node_left() */
 } EncloseNode;
Index: include/ruby/intern.h
===================================================================
--- include/ruby/intern.h	(revision 20595)
+++ include/ruby/intern.h	(revision 20596)
@@ -28,7 +28,7 @@
 #endif
 #include "ruby/st.h"
 
-/* 
+/*
  * Functions and variables that are used by more than one source file of
  * the kernel.
  */
Index: include/ruby/oniguruma.h
===================================================================
--- include/ruby/oniguruma.h	(revision 20595)
+++ include/ruby/oniguruma.h	(revision 20596)
@@ -146,7 +146,7 @@
   OnigCodePoint one_or_more_time;
   OnigCodePoint anychar_anytime;
 } OnigMetaCharTableType;
-  
+
 typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);
 
 typedef struct OnigEncodingTypeST {
@@ -495,7 +495,7 @@
 #define ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED                -21
 #define ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR  -22
 /* general error */
-#define ONIGERR_INVALID_ARGUMENT                              -30 
+#define ONIGERR_INVALID_ARGUMENT                              -30
 /* syntax error */
 #define ONIGERR_END_PATTERN_AT_LEFT_BRACE                    -100
 #define ONIGERR_END_PATTERN_AT_LEFT_BRACKET                  -101
Index: regenc.h
===================================================================
--- regenc.h	(revision 20595)
+++ regenc.h	(revision 20596)
@@ -181,7 +181,7 @@
 #define ONIGENC_IS_ASCII_CODE_CASE_AMBIG(code) \
  (ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_UPPER) ||\
   ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_LOWER))
-   
+
 #ifdef ONIG_ENC_REGISTER
 extern int ONIG_ENC_REGISTER(const char *, OnigEncodingType*);
 #define OnigEncodingName(n) encoding_##n
Index: id.h
===================================================================
--- id.h	(revision 20595)
+++ id.h	(revision 20596)
@@ -1,7 +1,7 @@
 /* DO NOT EDIT THIS FILE DIRECTLY */
 /**********************************************************************
 
-  id.h - 
+  id.h -
 
   $Author: ko1 $
   created at: Thu Jul 12 04:38:07 2007
Index: template/yasmdata.rb.tmpl
===================================================================
--- template/yasmdata.rb.tmpl	(revision 20595)
+++ template/yasmdata.rb.tmpl	(revision 20596)
@@ -7,7 +7,7 @@
       InsnID2NO = {
 <%= insn_id2no %>
       }
-      
+
       def self.id2insn_no id
         if InsnID2NO.has_key? id
           InsnID2NO[id]
Index: template/vm.inc.tmpl
===================================================================
--- template/vm.inc.tmpl	(revision 20595)
+++ template/vm.inc.tmpl	(revision 20596)
@@ -3,7 +3,7 @@
 /*******************************************************************/
 /**
   This file is VM main loop.
-  
+
   ----
   This file is auto generated by insns2vm.rb
   DO NOT TOUCH!
Index: template/insns_info.inc.tmpl
===================================================================
--- template/insns_info.inc.tmpl	(revision 20595)
+++ template/insns_info.inc.tmpl	(revision 20596)
@@ -1,10 +1,10 @@
 /** -*-c-*-
   This file contains instruction information for yarv instruction sequence.
-  
+
   ----
   This file is auto generated by insns2vm.rb
   DO NOT TOUCH!
-  
+
   If you want to fix something, you must edit 'template/insns_info.inc.tmpl'
   or insns2vm.rb
  */
Index: template/minsns.inc.tmpl
===================================================================
--- template/minsns.inc.tmpl	(revision 20595)
+++ template/minsns.inc.tmpl	(revision 20596)
@@ -1,6 +1,6 @@
 /** -*-c-*-
   This file contains YARV instructions list, to define YARVCore::Instructions.
-  
+
   ----
   This file is auto generated by insns2vm.rb
   DO NOT TOUCH!
Index: template/opt_sc.inc.tmpl
===================================================================
--- template/opt_sc.inc.tmpl	(revision 20595)
+++ template/opt_sc.inc.tmpl	(revision 20596)
@@ -3,7 +3,7 @@
 /*******************************************************************/
 /**
   This file is for threaded code.
-  
+
   ----
   This file is auto generated by insns2vm.rb
   DO NOT TOUCH!
Index: template/optunifs.inc.tmpl
===================================================================
--- template/optunifs.inc.tmpl	(revision 20595)
+++ template/optunifs.inc.tmpl	(revision 20596)
@@ -3,7 +3,7 @@
 /*******************************************************************/
 /**
   This file is for threaded code.
-  
+
   ----
   This file is auto generated by insns2vm.rb
   DO NOT TOUCH!
@@ -21,7 +21,7 @@
     UNIFIED_insn_name_1,
     UNIFIED_insn_name_2, ...};
   ...
-  
+
   static const int *const *const unified_insns_data[] = {
     UNIFIED_insn_nameA,
     UNIFIED_insn_nameB, ...};
Index: template/known_errors.inc.tmpl
===================================================================
--- template/known_errors.inc.tmpl	(revision 20595)
+++ template/known_errors.inc.tmpl	(revision 20596)
@@ -1,4 +1,4 @@
-/** -*-c-*- 
+/** -*-c-*-
  * DO NOT EDIT
  * This file is automatically generated by tools/generic_erb.rb from
  * template/known_errors.inc.tmpl and defs/known_errors.def.
Index: template/vmtc.inc.tmpl
===================================================================
--- template/vmtc.inc.tmpl	(revision 20595)
+++ template/vmtc.inc.tmpl	(revision 20596)
@@ -3,7 +3,7 @@
 /*******************************************************************/
 /**
   This file is for threaded code.
-  
+
   ----
   This file is auto generated by insns2vm.rb
   DO NOT TOUCH!
Index: template/id.h.tmpl
===================================================================
--- template/id.h.tmpl	(revision 20595)
+++ template/id.h.tmpl	(revision 20596)
@@ -2,7 +2,7 @@
 /* DO NOT EDIT THIS FILE DIRECTLY */
 /**********************************************************************
 
-  id.h - 
+  id.h -
 
   $Author$
   created at: Sun Oct 19 21:12:51 2008
Index: template/insns.inc.tmpl
===================================================================
--- template/insns.inc.tmpl	(revision 20595)
+++ template/insns.inc.tmpl	(revision 20596)
@@ -1,6 +1,6 @@
 /** -*-c-*-
   This file contains YARV instructions list.
-  
+
   ----
   This file is auto generated by insns2vm.rb
   DO NOT TOUCH!
Index: template/optinsn.inc.tmpl
===================================================================
--- template/optinsn.inc.tmpl	(revision 20595)
+++ template/optinsn.inc.tmpl	(revision 20596)
@@ -3,7 +3,7 @@
 /*******************************************************************/
 /**
   This file is for threaded code.
-  
+
   ----
   This file is auto generated by insns2vm.rb
   DO NOT TOUCH!

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

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