Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix minor grammar bug in open check-out required error message. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
55e2487585d96d679e29f0d2211421a2 |
| User & Date: | andybradford 2017-05-26 02:27:46.740 |
Context
|
2017-05-26
| ||
| 08:44 | Requesting Fossil 2.3 release just after the Unicode 10.0 release (expected around june 20, 2017). If earlier, please revert commit [09bcc322f7bcf52f|09bcc322f7] first. check-in: 6fe0d68914 user: jan.nijtmans tags: trunk | |
| 03:46 | Restore the ability to use amend outside an open check-out disabled by [8c22e1bbcd8ec048]. Only allow interactive edits within an open check-out. Perhaps unixTempFileDir() could be used to locate a suitable TMP location for the edit in the event that there is not an open-checkout. check-in: afef5fb5fc user: andybradford tags: amend-regress | |
| 02:27 | Fix minor grammar bug in open check-out required error message. check-in: 55e2487585 user: andybradford tags: trunk | |
|
2017-05-25
| ||
| 17:07 | Update the change log to show that SQLite 3.19.2 was installed. check-in: ad44efaff3 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1614 1615 1616 1617 1618 1619 1620 |
/*
** Open the local database. If unable, exit with an error.
*/
void db_must_be_within_tree(void){
if( find_repository_option() ){
| | | 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 |
/*
** Open the local database. If unable, exit with an error.
*/
void db_must_be_within_tree(void){
if( find_repository_option() ){
fossil_fatal("the \"%s\" command only works from within an open check-out",
g.argv[1]);
}
if( db_open_local(0)==0 ){
fossil_fatal("current directory is not within an open checkout");
}
db_open_repository(0);
db_verify_schema();
|
| ︙ | ︙ |