diff options
| author | Seba Gamboa <[email protected]> | 2015-10-21 14:31:13 -0300 |
|---|---|---|
| committer | Seba Gamboa <[email protected]> | 2015-10-21 14:31:13 -0300 |
| commit | 25c8e9536530afa72bacb78702a7a6d132c354f3 (patch) | |
| tree | fc8c2b24814d4c7a8a994390c6ceb859ceae87ca /mrbgems/mruby-proc-ext/src/proc.c | |
| parent | 13b552538af9e9794398e4a4177ba1cea04cccca (diff) | |
| download | mruby-25c8e9536530afa72bacb78702a7a6d132c354f3.tar.gz mruby-25c8e9536530afa72bacb78702a7a6d132c354f3.zip | |
Revert "Mark core gems with mrbgem tag"
This reverts commit 5cdcce8dbddd94ecb9503a0a1d47370c4ef97177.
Diffstat (limited to 'mrbgems/mruby-proc-ext/src/proc.c')
| -rw-r--r-- | mrbgems/mruby-proc-ext/src/proc.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/mrbgems/mruby-proc-ext/src/proc.c b/mrbgems/mruby-proc-ext/src/proc.c index 783fbbd3a..73873a360 100644 --- a/mrbgems/mruby-proc-ext/src/proc.c +++ b/mrbgems/mruby-proc-ext/src/proc.c @@ -5,9 +5,6 @@ #include "mruby/string.h" #include "mruby/debug.h" -/** - * @mrbgem mruby-proc-ext - */ static mrb_value mrb_proc_lambda(mrb_state *mrb, mrb_value self) { @@ -15,9 +12,6 @@ mrb_proc_lambda(mrb_state *mrb, mrb_value self) return mrb_bool_value(MRB_PROC_STRICT_P(p)); } -/** - * @mrbgem mruby-proc-ext - */ static mrb_value mrb_proc_source_location(mrb_state *mrb, mrb_value self) { @@ -39,9 +33,6 @@ mrb_proc_source_location(mrb_state *mrb, mrb_value self) } } -/** - * @mrbgem mruby-proc-ext - */ static mrb_value mrb_proc_inspect(mrb_state *mrb, mrb_value self) { @@ -76,9 +67,6 @@ mrb_proc_inspect(mrb_state *mrb, mrb_value self) return str; } -/** - * @mrbgem mruby-proc-ext - */ static mrb_value mrb_kernel_proc(mrb_state *mrb, mrb_value self) { @@ -100,9 +88,8 @@ mrb_kernel_proc(mrb_state *mrb, mrb_value self) * * prc = lambda{|x, y=42, *other|} * prc.parameters #=> [[:req, :x], [:opt, :y], [:rest, :other]] - * - * @mrbgem mruby-proc-ext */ + static mrb_value mrb_proc_parameters(mrb_state *mrb, mrb_value self) { |
