Differences From Artifact [0dfee06e96]:
- File src/search.c — part of check-in [841772c858] at 2011-11-03 17:31:10 on branch trunk — Break up the command-line commands into commonly-use and auxiliary commands and only show the commonly-used ones with "fossil help". Add a new command "fossil commands" to show auxiliary and test commands. (user: drh size: 5535) [more...]
To Artifact [a669a99184]:
- File src/search.c — part of check-in [a496d8e88d] at 2012-03-29 14:54:45 on branch mgagnon_fix — Add vim modline everywhere (user: mgagnon size: 5577)
| ︙ | ︙ | |||
204 205 206 207 208 209 210 |
"SELECT rid, uuid, date, comment, 0, 0 FROM srch"
" WHERE x>%d ORDER BY x DESC, date DESC",
iBest/3
);
print_timeline(&q, 1000, 0);
db_finalize(&q);
}
| > > > > > | 204 205 206 207 208 209 210 211 212 213 214 215 |
"SELECT rid, uuid, date, comment, 0, 0 FROM srch"
" WHERE x>%d ORDER BY x DESC, date DESC",
iBest/3
);
print_timeline(&q, 1000, 0);
db_finalize(&q);
}
/*
* vim:ts=2:sts=2:et:sw=2:ft=c
*/
|