diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | gurpmi | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -3,6 +3,7 @@ progress & errors o enhanced doc - gurpmi: + o support exceptions in callback in main wrapper too o support other distros which do not handle exceptions in gtk+ callbacks o use new exception management @@ -14,6 +14,12 @@ use Gtk2; use gurpmi; use urpm::util; +# For other distros w/o exception support: +eval { Glib->enable_exceptions2 }; +if (my $err = $@) { + warn "Error: $err\n"; +} + sub usage() { gurpmi::usage() } #- globals |