summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-06 07:19:16 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-06 07:19:16 +0000
commit9be95d2a71782e7cf88269ef3c38671fb8e681b3 (patch)
tree7b330c1738ffc2b4589b09e75ab6cfe24185bb66
parentc7e4f91246a0508c15f2d5d10d0a3de7ba3152ff (diff)
Remove RUBY_EVENT_SPECIFIED_LINE
Follow up of r61044 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61048 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--include/ruby/ruby.h1
-rw-r--r--vm_trace.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index ac0cecd952..ee873182e7 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -2096,7 +2096,6 @@ int ruby_native_thread_p(void);
#define RUBY_EVENT_TRACEPOINT_ALL 0xffff
/* special events */
-#define RUBY_EVENT_SPECIFIED_LINE 0x010000
#define RUBY_EVENT_COVERAGE 0x020000
/* internal events */
diff --git a/vm_trace.c b/vm_trace.c
index f7337164e2..2adadff178 100644
--- a/vm_trace.c
+++ b/vm_trace.c
@@ -719,7 +719,6 @@ symbol2event_flag(VALUE v)
C(thread_begin, THREAD_BEGIN);
C(thread_end, THREAD_END);
C(fiber_switch, FIBER_SWITCH);
- C(specified_line, SPECIFIED_LINE);
C(a_call, A_CALL);
C(a_return, A_RETURN);
#undef C