Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Told .editorconfig to use tabs for Makefiles, otherwise it mangles them with the default indention style (spaces). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b86c8b476b4af7ed7b5fc311d1e3d1c1 |
User & Date: | stephan 2019-11-09 04:27:43.056 |
Context
2019-11-11
| ||
15:22 | Omit some asm code from the SHA1 implementation as it provides no performance improvement with modern compilers, and SHA1 is seldom used now anyhow. ... (check-in: 20187be7 user: drh tags: trunk) | |
2019-11-09
| ||
04:27 | Told .editorconfig to use tabs for Makefiles, otherwise it mangles them with the default indention style (spaces). ... (check-in: b86c8b47 user: stephan tags: trunk) | |
2019-10-28
| ||
19:16 | Merged in double-dash-flag2 branch, which adds conventional -- handling to the vast majority of commands (the exception being those few which don't call verify_all_arguments()). ... (check-in: 5cca4646 user: stephan tags: trunk) | |
Changes
Changes to .editorconfig.
1 2 3 4 5 6 7 8 9 10 11 12 | # EditorConfig (https://editorconfig.com) Configuration for Fossil # # Following https://fossil-scm.org/fossil/doc/trunk/www/style.wiki # # Defaults for all files [*] end_of_line = lf insert_final_newline = true indent_style = space indent_size = 2 | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # EditorConfig (https://editorconfig.com) Configuration for Fossil # # Following https://fossil-scm.org/fossil/doc/trunk/www/style.wiki # # Defaults for all files [*] end_of_line = lf insert_final_newline = true indent_style = space indent_size = 2 [{Makefile,Makefile.*,*.mk}] indent_style = tab |