Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove unused local variable. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
01d6ef7cf8935ee11d0dc63ed0773779 |
| User & Date: | mistachkin 2012-12-16 07:16:56.804 |
Context
|
2012-12-16
| ||
| 17:13 | Change the default footer to show the approximate time needed to generated the HTML for the page. ... (check-in: ef6285a6a3 user: drh tags: trunk) | |
| 07:16 | Remove unused local variable. ... (check-in: 01d6ef7cf8 user: mistachkin tags: trunk) | |
|
2012-12-15
| ||
| 21:55 | Do not attempt to translate tabs into spaces on a unified diff. ... (check-in: b912619403 user: drh tags: trunk) | |
Changes
Changes to src/diff.c.
| ︙ | ︙ | |||
415 416 417 418 419 420 421 |
*/
static void appendDiffLine(
Blob *pOut, /* Where to write the line of output */
char cPrefix, /* One of " ", "+", or "-" */
DLine *pLine, /* The line to be output */
int html /* True if generating HTML. False for plain text */
){
| < | 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
*/
static void appendDiffLine(
Blob *pOut, /* Where to write the line of output */
char cPrefix, /* One of " ", "+", or "-" */
DLine *pLine, /* The line to be output */
int html /* True if generating HTML. False for plain text */
){
blob_append(pOut, &cPrefix, 1);
if( html ){
char *zHtml;
if( cPrefix=='+' ){
blob_append(pOut, "<span class=\"diffadd\">", -1);
}else if( cPrefix=='-' ){
blob_append(pOut, "<span class=\"diffrm\">", -1);
|
| ︙ | ︙ |