summaryrefslogtreecommitdiff
path: root/tools/gmmproc.in
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@usa.net>2004-01-05 17:28:20 +0000
committerMurray Cumming <murrayc@src.gnome.org>2004-01-05 17:28:20 +0000
commit5928d7d90718a1566344c1ef3edd982e4cbb41af (patch)
tree96ee9d45c42673436e7e136a21593176ac33ebbc /tools/gmmproc.in
parent8155c4ba872ccb9bfe518d0406999c75b82601e5 (diff)
downloadglibmm-5928d7d90718a1566344c1ef3edd982e4cbb41af.tar.gz
Removed the mergecdocs option - because we always want to merge C docs, to
2004-01-03 Murray Cumming <murrayc@usa.net> * tools/gmmproc.in, pm/WrapParser.pm, DocsParser.pm: Removed the mergecdocs option - because we always want to merge C docs, to avoid accidental upload of half-complete docs.
Diffstat (limited to 'tools/gmmproc.in')
-rw-r--r--tools/gmmproc.in11
1 files changed, 1 insertions, 10 deletions
diff --git a/tools/gmmproc.in b/tools/gmmproc.in
index a2f5ebf0..c21ba62f 100644
--- a/tools/gmmproc.in
+++ b/tools/gmmproc.in
@@ -64,7 +64,6 @@ $main::defsdir = ".";
$main::source = "";
$main::debug = 0;
$main::unwrapped = 1;
-$main::mergecdocs = 0; # e.g. gtk_docs.xml, contain C comments to be added to our generated C++ code.
{ # checking the environment for a set variable can trigger a warning
no warnings;
@@ -87,11 +86,7 @@ $$objWrapParser{source} = $main::source;
$$objOutputter{source} = $main::source;
$$objOutputter{destdir} = $ARGV[1];
-
-if($main::mergecdocs eq 1)
-{
- $$objWrapParser{mergecdocs} = 1;
-}
+# Merge the C docs, e.g. gtk_docs.xml
# Suck the whole file into one big string, breaking it into tokens:
$objWrapParser->read_file($main::srcdir, $main::source);
@@ -206,10 +201,6 @@ sub parse_command_line_args()
{
push @main::macrodirs, shift @ARGV;
}
- elsif (/^--mergecdocs/)
- {
- $main::mergecdocs = 1
- }
elsif (/^--unwrapped/)
{
$main::unwrapped = 1;