diff options
-rw-r--r-- | slv2/slv2.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/slv2/slv2.h b/slv2/slv2.h index c3019a4..49e31f5 100644 --- a/slv2/slv2.h +++ b/slv2/slv2.h @@ -341,8 +341,8 @@ slv2_collection_get(SLV2Collection collection, #define SLV2_FOREACH(iter, collection) \ for (SLV2Iter (iter) = slv2_collection_begin(collection); \ - !slv2_iter_end(i); \ - i = slv2_iter_next(i)) + !slv2_iter_end(iter); \ + (iter) = slv2_iter_next(iter)) /* SLV2PluginClasses */ @@ -533,6 +533,8 @@ slv2_world_new(void); /** Set an SLV2 option for @a world. + + Currently recognized options: SLV2_OPTION_FILTER_LANG. */ SLV2_API void |