Version: 0.3.0
* Preliminary autoconf support
* Switched to getopt()
* New option: -C (demangle C++ names)
* New options: --help, --version
* Display "format" (printf-like) argument types
* Updated manual page
* New option: -e
diff --git a/ltrace.c b/ltrace.c
index bb7eef8..ebca358 100644
--- a/ltrace.c
+++ b/ltrace.c
@@ -38,6 +38,13 @@
strcat(path, "/.ltrace.conf");
read_config_file(path);
}
+ if (opt_d && opt_e) {
+ struct opt_e_t * tmp = opt_e;
+ while(tmp) {
+ printf("Option -e: %s\n", tmp->name);
+ tmp = tmp->next;
+ }
+ }
if (command) {
execute_program(open_program(command), argv);
}