Le 15/08/2013 09:59, Frank Lanitz a écrit :
[...] GeanyLaTeX: Replace NZV-makro with EMPTY-makro
Modified Paths:
geanylatex/src/geanylatex.c geanylatex/src/latexutils.c
Modified: geanylatex/src/geanylatex.c 10 files changed, 5 insertions(+), 5 deletions(-) =================================================================== @@ -1447,7 +1447,7 @@ void glatex_insert_usepackage_dialog(G_GNUC_UNUSED GtkMenuItem * menuitem, break; } }
if (classoptions != NULL && NZV(orientation_string))
if (classoptions != NULL && EMPTY(orientation_string))
[...]
This isn't correct, `NZV` used to be "non-zero value", and `EMPTY` is "zero value", so as Nick changed inside Geany, it should be `NZV` -> `!EMPTY` and `!NZV` -> `EMPTY`.
Cheers, Colomban
Am 15.08.2013 14:24, schrieb Colomban Wendling:
This isn't correct, `NZV` used to be "non-zero value", and `EMPTY` is "zero value", so as Nick changed inside Geany, it should be `NZV` -> `!EMPTY` and `!NZV` -> `EMPTY`.
Should be now correct inside PR 110
Cheers, Frank