Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a minor preprocessor directive typo. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a5c08fde0ab2e9f700fd612ce53291de |
User & Date: | jan 2016-08-03 14:04:16 |
Context
2016-08-04
| ||
00:42 | Bring the sync protocol documentation more up-to-date. Fix typos in the command-line documentation for "push" and "sync". check-in: 3dcf69a7 user: drh tags: trunk | |
2016-08-03
| ||
14:04 | Fix a minor preprocessor directive typo. check-in: a5c08fde user: jan tags: trunk | |
08:17 | Fix typos in the How CGI Works document. check-in: 9c87cb29 user: drh tags: trunk | |
Changes
Changes to src/branch.c.
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
** Allows bits in the mBplqFlags parameter to branch_prepare_list_query().
*/
#define BRL_CLOSED_ONLY 0x001 /* Show only closed branches */
#define BRL_OPEN_ONLY 0x002 /* Show only open branches */
#define BRL_BOTH 0x003 /* Show both open and closed branches */
#define BRL_OPEN_CLOSED_MASK 0x003
#define BRL_MTIME 0x004 /* Include lastest check-in time */
#dfeine BRL_ORDERBY_MTIME 0x008 /* Sort by MTIME. (otherwise sort by name)*/
#endif /* INTERFACE */
/*
** Prepare a query that will list branches.
**
** If (which<0) then the query pulls only closed branches. If
|
| |
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
** Allows bits in the mBplqFlags parameter to branch_prepare_list_query().
*/
#define BRL_CLOSED_ONLY 0x001 /* Show only closed branches */
#define BRL_OPEN_ONLY 0x002 /* Show only open branches */
#define BRL_BOTH 0x003 /* Show both open and closed branches */
#define BRL_OPEN_CLOSED_MASK 0x003
#define BRL_MTIME 0x004 /* Include lastest check-in time */
#define BRL_ORDERBY_MTIME 0x008 /* Sort by MTIME. (otherwise sort by name)*/
#endif /* INTERFACE */
/*
** Prepare a query that will list branches.
**
** If (which<0) then the query pulls only closed branches. If
|