Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-11 | Change coding style | John Ankarström | |
This is the coding style used in Plan 9. Eschewing the whitespace here has several large benefits: 1. Control constructs are much easier to type. 2. Long conditions are very naturally handled: if(bla && bla && bla || yada && yada && yada) Because "if(" and "|| " (or "&& ") are the same length, the two parts of the condition are aligned. 3. It becomes much less bothersome to convert a single-statement body to a multiple-statement body. It may seem minor, but the extra space is extra work. | |||
2021-07-10 | re.c: Fix usage message | John Ankarström | |
2021-07-10 | re.c: Ensure no file name contains newline | John Ankarström | |
Otherwise, the operation is broken, as it depends on reading file names separated by newlines. | |||
2021-07-10 | Add re | John Ankarström | |