summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-02 15:45:09 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-02 15:45:09 +0000
commitb288a0fdffd71272bf7b00479a0a42cc7914e695 (patch)
treefc18c847df490bbae61018a9f072c8824d12f3e7
parent7828d324c54604ac0753814166dcc693a0ba74f0 (diff)
downloadruby-b288a0fdffd71272bf7b00479a0a42cc7914e695.tar.gz
ruby-b288a0fdffd71272bf7b00479a0a42cc7914e695.tar.xz
ruby-b288a0fdffd71272bf7b00479a0a42cc7914e695.zip
* method.h (rb_method_type_t): remove a comma at end of
enumerator list. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--method.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c309cd79..81f169b36 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Oct 3 00:43:52 2009 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * method.h (rb_method_type_t): remove a comma at end of
+ enumerator list.
+
Sat Oct 3 00:31:04 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* range.c (discrete_object_p): needs the argument type to get rid
diff --git a/method.h b/method.h
index b6ed9b64e..11fd6bfef 100644
--- a/method.h
+++ b/method.h
@@ -40,7 +40,7 @@ typedef enum {
VM_METHOD_TYPE_UNDEF,
VM_METHOD_TYPE_NOTIMPLEMENTED,
VM_METHOD_TYPE_OPTIMIZED, /* Kernel#send, Proc#call, etc */
- VM_METHOD_TYPE_MISSING, /* wrapper for method_missing(id) */
+ VM_METHOD_TYPE_MISSING /* wrapper for method_missing(id) */
} rb_method_type_t;
typedef struct rb_method_cfunc_struct {