gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-


From: Benjamin Wolsey
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_start-39-gb5f9e24
Date: Fri, 11 Feb 2011 10:45:19 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  b5f9e2456d0e42f116df502cb5a46aadf6cff9a2 (commit)
      from  18f485af3ad2585a29582c25d7c8ff511fc0fc5f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=b5f9e2456d0e42f116df502cb5a46aadf6cff9a2


commit b5f9e2456d0e42f116df502cb5a46aadf6cff9a2
Author: Benjamin Wolsey <address@hidden>
Date:   Fri Feb 11 11:47:28 2011 +0100

    Don't force writeLog to off if no flag is passed.

diff --git a/gui/gnash.cpp b/gui/gnash.cpp
index ff6176a..730434b 100644
--- a/gui/gnash.cpp
+++ b/gui/gnash.cpp
@@ -262,7 +262,10 @@ getDebuggingOptions(gnash::Player& p)
         ->notifier(boost::bind(&LogFile::setVerbosity, &dbglogfile, _1)),
         _("Produce verbose output"))
 
-    ("writelog,w", po::bool_switch()
+    // NB: if we use a bool_switch(), the default will be false. TODO:
+    // make a sensible process for handling command-line and rcfile options.
+    ("writelog,w", po::value<bool>()
+        ->zero_tokens()
         ->notifier(boost::bind(&RcInitFile::useWriteLog, &rcfile, _1)),
         _("Produce the disk based debug log"))
 

-----------------------------------------------------------------------

Summary of changes:
 gui/gnash.cpp |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]