Fossil SCM
Fix a missing comma in the suspicious-checkin-comment warning message.
Commit
53b23ea28876e3d379988774d9a84f439cb42890c4ed2d5089a33ec639713b5e
Parent
4c62db1870fcc7d…
1 file changed
+1
-1
+1
-1
| --- src/checkin.c | ||
| +++ src/checkin.c | ||
| @@ -2327,11 +2327,11 @@ | ||
| 2327 | 2327 | Blob tmp = *pSus; |
| 2328 | 2328 | blob_init(pSus, 0, 0); |
| 2329 | 2329 | blob_appendf(pSus, |
| 2330 | 2330 | "Possible comment formatting error%s:" |
| 2331 | 2331 | "%b\n" |
| 2332 | - "Edit, continue or abort (E/c/a)? ", | |
| 2332 | + "Edit, continue, or abort (E/c/a)? ", | |
| 2333 | 2333 | nIssue>1 ? "s" : "", &tmp); |
| 2334 | 2334 | blob_reset(&tmp); |
| 2335 | 2335 | return 1; |
| 2336 | 2336 | }else{ |
| 2337 | 2337 | return 0; |
| 2338 | 2338 |
| --- src/checkin.c | |
| +++ src/checkin.c | |
| @@ -2327,11 +2327,11 @@ | |
| 2327 | Blob tmp = *pSus; |
| 2328 | blob_init(pSus, 0, 0); |
| 2329 | blob_appendf(pSus, |
| 2330 | "Possible comment formatting error%s:" |
| 2331 | "%b\n" |
| 2332 | "Edit, continue or abort (E/c/a)? ", |
| 2333 | nIssue>1 ? "s" : "", &tmp); |
| 2334 | blob_reset(&tmp); |
| 2335 | return 1; |
| 2336 | }else{ |
| 2337 | return 0; |
| 2338 |
| --- src/checkin.c | |
| +++ src/checkin.c | |
| @@ -2327,11 +2327,11 @@ | |
| 2327 | Blob tmp = *pSus; |
| 2328 | blob_init(pSus, 0, 0); |
| 2329 | blob_appendf(pSus, |
| 2330 | "Possible comment formatting error%s:" |
| 2331 | "%b\n" |
| 2332 | "Edit, continue, or abort (E/c/a)? ", |
| 2333 | nIssue>1 ? "s" : "", &tmp); |
| 2334 | blob_reset(&tmp); |
| 2335 | return 1; |
| 2336 | }else{ |
| 2337 | return 0; |
| 2338 |