diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-07-31 03:41:53 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-07-31 03:41:53 +0800 |
commit | 5af8327ff40e6475a50ba7f239254fcc4bd8dad9 (patch) | |
tree | 32a654890fad6b1c4d7007a6da36d0107cce36ca /lib | |
parent | b8d8036da7543c57c03d0baf218691c74419ec0a (diff) | |
download | gsoc2013-epiphany-5af8327ff40e6475a50ba7f239254fcc4bd8dad9.tar.gz gsoc2013-epiphany-5af8327ff40e6475a50ba7f239254fcc4bd8dad9.tar.zst gsoc2013-epiphany-5af8327ff40e6475a50ba7f239254fcc4bd8dad9.zip |
Allow set-but-empty EPHY_DEBUG_BREAK variable.
2005-07-30 Christian Persch <chpe@cvs.gnome.org>
* lib/ephy-debug.c: (trap_handler):
Allow set-but-empty EPHY_DEBUG_BREAK variable.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ephy-debug.c b/lib/ephy-debug.c index a00fe1fab..d999e7b3a 100644 --- a/lib/ephy-debug.c +++ b/lib/ephy-debug.c @@ -126,7 +126,7 @@ trap_handler (const char *log_domain, { /* default behaviour only */ } - else + else if (ephy_debug_break[0] != '\0') { g_print ("Unrecognised value of EPHY_DEBUG_BREAK env var: %s!\n", ephy_debug_break); |