summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-proc-ext/src
diff options
context:
space:
mode:
authorSeba Gamboa <[email protected]>2015-10-21 14:31:13 -0300
committerSeba Gamboa <[email protected]>2015-10-21 14:31:13 -0300
commit25c8e9536530afa72bacb78702a7a6d132c354f3 (patch)
treefc8c2b24814d4c7a8a994390c6ceb859ceae87ca /mrbgems/mruby-proc-ext/src
parent13b552538af9e9794398e4a4177ba1cea04cccca (diff)
downloadmruby-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')
-rw-r--r--mrbgems/mruby-proc-ext/src/proc.c15
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)
{