regcomp.c: Slight optimization
authorKarl Williamson <public@khwilliamson.com>
Wed, 27 Nov 2013 19:46:42 +0000 (12:46 -0700)
committerKarl Williamson <public@khwilliamson.com>
Tue, 3 Dec 2013 17:05:22 +0000 (10:05 -0700)
commitb8bdff9853c3bb390732840d3ed9f1c99cca82db
tree6a42e655322fcebfa17b324cc42684503f083d64
parent47c56cc834ceb689b97d6751b5f4cbde97589b22
regcomp.c: Slight optimization

A swash is accessed either through its inversion list or its hash (only
large swashes actually have hashes; this is usually transparent).  At
this point in regcomp.c, we only will be looking at the inversion list;
by telling swash_init function that via the flag, later accesses
automatically have a level of indirection removed.
regcomp.c