Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add missing period to sentence. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
b6959ec2e6ae27fa283fe35882a0754e |
| User & Date: | andybradford 2014-07-19 18:40:32.314 |
Context
|
2014-07-19
| ||
| 19:04 | Update config.guess and config.sub from upstream. ... (check-in: 76370b4c97 user: drh tags: trunk) | |
| 18:40 | Add missing period to sentence. ... (check-in: b6959ec2e6 user: andybradford tags: trunk) | |
| 08:34 | Update internal tables (used by e.g. the \w and \W specifiers in regexp expressions) to Unicode 7.0. This is fully upwards compatible, see [http://www.unicode.org/policies/stability_policy.html] ... (check-in: 3088939eb1 user: jan.nijtmans tags: trunk) | |
Changes
Changes to src/branch.c.
| ︙ | ︙ | |||
332 333 334 335 336 337 338 |
@ The presence of open leaves presumably means
@ that the branch is still being extended with new check-ins.</li>
@ <li> A <div class="sideboxDescribed">%z(href("brlist?closed"))
@ closed branch</a></div> is a branch with only
@ <div class="sideboxDescribed">%z(href("leaves?closed"))
@ closed leaves</a></div>.
@ Closed branches are fixed and do not change (unless they are first
| | | 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 |
@ The presence of open leaves presumably means
@ that the branch is still being extended with new check-ins.</li>
@ <li> A <div class="sideboxDescribed">%z(href("brlist?closed"))
@ closed branch</a></div> is a branch with only
@ <div class="sideboxDescribed">%z(href("leaves?closed"))
@ closed leaves</a></div>.
@ Closed branches are fixed and do not change (unless they are first
@ reopened).</li>
@ </ol>
style_sidebox_end();
branch_prepare_list_query(&q, showAll?1:(showClosed?-1:0));
cnt = 0;
while( db_step(&q)==SQLITE_ROW ){
const char *zBr = db_column_text(&q, 0);
|
| ︙ | ︙ |