Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Added missing ?-global? hint in one instance of the settings command help. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8dc6873d44d685b1775add9ccf4dedb5 |
| User & Date: | stephan 2013-06-27 18:34:19.995 |
Context
|
2013-06-29
| ||
| 15:26 | Bring in the latest SQLite 3.8.0 alpha version from upstream, for testing. check-in: c3e723e308 user: drh tags: trunk | |
|
2013-06-27
| ||
| 18:34 | Added missing ?-global? hint in one instance of the settings command help. check-in: 8dc6873d44 user: stephan tags: trunk | |
| 14:23 | fixed a typo: s/favors/flavors/ (which arguably should be "flavours" ;) check-in: 7b011abe84 user: stephan tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
2385 2386 2387 2388 2389 2390 2391 |
isManifest = 0;
print_setting(&ctrlSettings[i], db_open_local(0));
}
if( isManifest && g.localOpen ){
manifest_to_disk(db_lget_int("checkout", 0));
}
}else{
| | | 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 |
isManifest = 0;
print_setting(&ctrlSettings[i], db_open_local(0));
}
if( isManifest && g.localOpen ){
manifest_to_disk(db_lget_int("checkout", 0));
}
}else{
usage("?PROPERTY? ?VALUE? ?-global?");
}
}
/*
** The input in a timespan measured in days. Return a string which
** describes that timespan in units of seconds, minutes, hours, days,
** or years, depending on its duration.
|
| ︙ | ︙ |