Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a minor typo in the git-import logic. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f7afea949dd59c4ec3e31a6e8907b2d5 |
| User & Date: | drh 2015-12-19 13:08:04.100 |
Context
|
2015-12-19
| ||
| 14:38 | Add support for expanding $ROOT in href= and action= of HTML output into the top-level directory of the repository. ... (check-in: e57ab29584 user: drh tags: trunk) | |
| 14:12 | Initial support for managing technotes from the command-line. ... (Closed-Leaf check-in: 0a13f4cb5f user: djv tags: technote-cli) | |
| 13:08 | Fix a minor typo in the git-import logic. ... (check-in: f7afea949d user: drh tags: trunk) | |
|
2015-12-17
| ||
| 15:58 | Clean rebuild of SQLite (so the source_id of fts5 matches the one from SQLite itself) ... (check-in: 5b30c544d5 user: jan.nijtmans tags: trunk) | |
Changes
Changes to src/import.c.
| ︙ | ︙ | |||
540 541 542 543 544 545 546 |
}else
if( strncmp(zLine, "tag ", 4)==0 ){
gg.xFinish();
gg.xFinish = finish_tag;
trim_newline(&zLine[4]);
gg.zTag = fossil_strdup(&zLine[4]);
}else
| | | 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 |
}else
if( strncmp(zLine, "tag ", 4)==0 ){
gg.xFinish();
gg.xFinish = finish_tag;
trim_newline(&zLine[4]);
gg.zTag = fossil_strdup(&zLine[4]);
}else
if( strncmp(zLine, "reset ", 6)==0 ){
gg.xFinish();
}else
if( strncmp(zLine, "checkpoint", 10)==0 ){
gg.xFinish();
}else
if( strncmp(zLine, "feature", 7)==0 ){
gg.xFinish();
|
| ︙ | ︙ |