Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix harmless coding style issues. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
dc7d0a2e27c48c63656e6b3d96c325fa |
| User & Date: | drh 2017-12-14 18:03:01.127 |
Context
|
2017-12-15
| ||
| 01:54 | Fixes to the "eagle" built-in CSS so that trunk backgrounds look right in the Modern View. check-in: 2c8bff0b2b user: drh tags: trunk | |
|
2017-12-14
| ||
| 18:03 | Fix harmless coding style issues. check-in: dc7d0a2e27 user: drh tags: trunk | |
| 12:04 | Fix the parentheses around the "detail" section of each timeline entry in Verbose and Compact views on the /finfo timeline. check-in: 55dd552136 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
60 61 62 63 64 65 66 | }; /* ** Copy this to initialize a Stmt object to a clean/empty state. This ** is useful to help avoid assertions when performing cleanup in some ** error handling cases. */ | | | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
};
/*
** Copy this to initialize a Stmt object to a clean/empty state. This
** is useful to help avoid assertions when performing cleanup in some
** error handling cases.
*/
#define empty_Stmt_m {BLOB_INITIALIZER,NULL, NULL, NULL, 0, 0}
#endif /* INTERFACE */
const struct Stmt empty_Stmt = empty_Stmt_m;
/*
** Call this routine when a database error occurs.
*/
static void db_err(const char *zFormat, ...){
|
| ︙ | ︙ |
Changes to src/search.c.
| ︙ | ︙ | |||
1070 1071 1072 1073 1074 1075 1076 |
case SRCH_TECHNOTE: zType = " Tech Notes"; zClass = "Note"; break;
}
if( srchFlags==0 ){
zDisable1 = " disabled";
zDisable2 = " disabled";
zPattern = "";
}else{
| | | 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
case SRCH_TECHNOTE: zType = " Tech Notes"; zClass = "Note"; break;
}
if( srchFlags==0 ){
zDisable1 = " disabled";
zDisable2 = " disabled";
zPattern = "";
}else{
zDisable1 = ""; /* Was: " autofocus" */
zDisable2 = "";
zPattern = PD("s","");
}
@ <form method='GET' action='%R/%T(g.zPath)'>
if( zClass ){
@ <div class='searchForm searchForm%s(zClass)'>
}else{
|
| ︙ | ︙ |