[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 01/13] psppire-dict: g_return_if_fail for idx in psppire_dict
From: |
Ben Pfaff |
Subject: |
Re: [PATCH 01/13] psppire-dict: g_return_if_fail for idx in psppire_dict_get_variable(). |
Date: |
Tue, 17 Apr 2012 21:13:34 -0700 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) |
John Darrington <address@hidden> writes:
> + g_return_val_if_fail (idx < 0 || dict_get_var_cnt (d->dict) <= idx,
> NULL);
>
> Personally I prefer assertions to be written in their separate components
> rather than ored
> together, like this:
>
> g_return_val_if_fail (idx < 0, NULL);
> g_return_val_if_fail (dict_get_var_cnt (d->dict) <= idx, NULL);
>
> That way, when the condition fails, it's easier to find out which part of the
> condition is failing.
Fair enough. I made that change and pushed this commit.
I'll leave the rest until you have time to look them over.
Thanks,
Ben.
[PATCH 02/13] gui: Use canonical names for signals., Ben Pfaff, 2012/04/16
[PATCH 03/13] gui: Add undocumented --measure-startup option., Ben Pfaff, 2012/04/16
[PATCH 04/13] gui: Call g_thread_init() earlier., Ben Pfaff, 2012/04/16
[PATCH 05/13] format: New functions fmt_change_width(), fmt_change_decimals()., Ben Pfaff, 2012/04/16