Eelco Chaudron <[email protected]> writes: > On 2 Nov 2023, at 14:20, Roi Dayan via dev wrote: > >> From: Gaetan Rivet <[email protected]> >> >> The enchant dictionary synchronizes additions to the source file. >> Keep the two word source separate by adding the extra words only >> to the current session. >> >> Signed-off-by: Gaetan Rivet <[email protected]> >> Acked-by: Roi Dayan <[email protected]> >> --- >> utilities/checkpatch.py | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/utilities/checkpatch.py b/utilities/checkpatch.py >> index 9276640760d4..b484a37db2e8 100755 >> --- a/utilities/checkpatch.py >> +++ b/utilities/checkpatch.py >> @@ -95,7 +95,7 @@ def open_spell_check_dict(): >> 'dictionary.txt') >> spell_check_dict = enchant.DictWithPWL('en_US', word_dic) >> for kw in extra_keywords: >> - spell_check_dict.add(kw) >> + spell_check_dict.add_to_session(kw) > > I guess this should be the first patch (or maybe a fixes patch in general).
+1 - I would be fine with merging this on its own. >> >> return True >> except: >> -- >> 2.40.1 >> >> _______________________________________________ >> dev mailing list >> [email protected] >> https://mail.openvswitch.org/mailman/listinfo/ovs-dev > > _______________________________________________ > dev mailing list > [email protected] > https://mail.openvswitch.org/mailman/listinfo/ovs-dev _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
