Module Name: src Committed By: rillig Date: Sat Oct 30 10:59:07 UTC 2021
Modified Files: src/usr.bin/indent: indent.c Log Message: indent: remove confusing modulo from code_add_decl_indent The only effects of the modulo operation was to make indent slower and to confuse human readers. During the computation of the indentation, the main focus is on the difference between the current indentation, as computed from the base indentation and the current code, and the target indentation. All these computations take opt.tabsize into account. When looking only at the difference, whether or not a multiple of opt.tabsize is added does not matter. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.182 -r1.183 src/usr.bin/indent/indent.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.