Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
1 check-in using file src/glob.c version ecc7e3a5ce
|
2023-05-22
| ||
| 21:27 | Replaced a complicated bit of logic with something slighlty less complicated, having the same effect. The glob parser used a mix of second-clause for-loop testing and internal break and continue checks without any other internal processing inside the loop. Combining all of this into a single expression requires the line to wrap (bad for clarity) but it does make clear all of the conditions required for this loop to continue iterating. I think it's a net improvement in clarity, though the margin is admittedly small. Testing shows no regression in functionality, limiting this non-functional change to a style improvement. check-in: b878923997 user: wyoung tags: trunk | |