Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a typo that prevented the diff-binary setting from being picked up by the mkindex.c comment scanner. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2eea7584d57b80c053c5e9c5041a8b81 |
| User & Date: | drh 2017-10-30 13:22:44.733 |
Context
|
2017-11-03
| ||
| 06:30 | Fix segfault in status, et al, when a file in the checkout cannot be opened. check-in: 3c6d23b752 user: mistachkin tags: trunk | |
|
2017-10-30
| ||
| 13:22 | Fix a typo that prevented the diff-binary setting from being picked up by the mkindex.c comment scanner. check-in: 2eea7584d5 user: drh tags: trunk | |
| 13:20 | Add a blank entry to the end of the Setting array so that loops can be terminated by checking for a null zName pointer. check-in: df654bd993 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
2869 2870 2871 2872 2873 2874 2875 | */ /* ** SETTING: default-perms width=16 default=u ** Permissions given automatically to new users. For more ** information on permissions see the Users page in Server ** Administration of the HTTP UI. */ | > | | 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 | */ /* ** SETTING: default-perms width=16 default=u ** Permissions given automatically to new users. For more ** information on permissions see the Users page in Server ** Administration of the HTTP UI. */ /* ** SETTING: diff-binary boolean default=on ** If enabled, permit files that may be binary ** or that match the "binary-glob" setting to be used with ** external diff programs. If disabled, skip these files. */ /* ** SETTING: diff-command width=40 ** The value is an external command to run when performing a diff. |
| ︙ | ︙ |