You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I checked that paps.c and it looks to me that updated man page is
right because do_fatal_warnings is defined as gboolean. So I think
paps.c should remove "REAL" from the last arguments.
In 20151223 version of paps, I got the following issue.
paps -h and paps's man pages describe '--g-fatal-warnings' differently
paps.1 man page haven't described about '--g-fatal-warnings' yet but
we are applying the following patch for paps.1 so this issue was raised.
https://github.com/dov/paps/pull/18/commits/4be7c77077cefedf9b000a85cdaf8621700f577a
I checked that paps.c and it looks to me that updated man page is
right because do_fatal_warnings is defined as gboolean. So I think
paps.c should remove "REAL" from the last arguments.
% ./paps --help |& grep g-fatal-warnings
--g-fatal-warnings=REAL Set glib fatal warnings
% grep do_fatal_warnings paps.c
gboolean do_fatal_warnings = FALSE;
{"g-fatal-warnings", 0, 0, G_OPTION_ARG_NONE, &do_fatal_warnings,
if (do_fatal_warnings)
% gdiff -u paps.c.org paps.c
--- paps.c.org 2016-07-20 09:21:33.529764313 +0900
+++ paps.c 2016-07-20 09:22:32.614399477 +0900
@@ -510,7 +510,7 @@
N_("Stretch characters in y-direction to fill lines."), NULL},
*/
{"g-fatal-warnings", 0, 0, G_OPTION_ARG_NONE, &do_fatal_warnings,
The text was updated successfully, but these errors were encountered: