Fossil SCM
Typo fixes.
Commit
478a0fa79cacdd166f8c0ee26a7f66b1cdc8a28656cfc9517244e28b2ec76082
Parent
798b232ce729f9c…
1 file changed
+9
-9
+9
-9
| --- src/checkin.c | ||
| +++ src/checkin.c | ||
| @@ -2285,41 +2285,41 @@ | ||
| 2285 | 2285 | } |
| 2286 | 2286 | |
| 2287 | 2287 | /* |
| 2288 | 2288 | ** SETTING: verify-comments width=8 default=on show-only-if-changed |
| 2289 | 2289 | ** |
| 2290 | -** This setting determines much sanity checking, if any, the | |
| 2290 | +** This setting determines how much sanity checking, if any, the | |
| 2291 | 2291 | ** "fossil commit" and "fossil amend" commands do against check-in |
| 2292 | 2292 | ** comments. Recognized values: |
| 2293 | 2293 | ** |
| 2294 | 2294 | ** on (Default) Check for bad syntax in check-in comments |
| 2295 | 2295 | ** and offer the user a chance to continue editing for |
| 2296 | 2296 | ** interactive sessions, or simply abort the commit if |
| 2297 | -** commit was entered using using -m or -M | |
| 2297 | +** commit was entered using -m or -M | |
| 2298 | 2298 | ** |
| 2299 | -** off Do not syntax checking of any kind | |
| 2299 | +** off Do not do syntax checking of any kind | |
| 2300 | 2300 | ** |
| 2301 | 2301 | ** links Similar to "on", except only check for bad hyperlinks |
| 2302 | 2302 | ** |
| 2303 | 2303 | ** preview Do all the same checks as "on" but also preview the |
| 2304 | -** checkin comment to the user during interactive sessions | |
| 2304 | +** check-in comment to the user during interactive sessions | |
| 2305 | 2305 | ** and provide an opportunity to accept or re-edit |
| 2306 | 2306 | */ |
| 2307 | 2307 | |
| 2308 | 2308 | #if INTERFACE |
| 2309 | 2309 | #define COMCK_LINKS 0x01 /* Check for back hyperlinks */ |
| 2310 | 2310 | #define COMCK_MARKUP 0x02 /* Check markup */ |
| 2311 | -#define COMCK_PREVIEW 0x04 /* Always preview even if no issues found */ | |
| 2311 | +#define COMCK_PREVIEW 0x04 /* Always preview, even if no issues found */ | |
| 2312 | 2312 | #define COMCK_NOPREVIEW 0x08 /* Never preview, even for other errors */ |
| 2313 | 2313 | #endif /* INTERFACE */ |
| 2314 | 2314 | |
| 2315 | 2315 | /* |
| 2316 | 2316 | ** Check for possible formatting errors in the comment string pComment. |
| 2317 | 2317 | ** |
| 2318 | 2318 | ** If concerns are found, write a description of the problem(s) to |
| 2319 | -** stdout return non-zero. The return value is some combination of | |
| 2320 | -** of the COMCK_* flags depending on what went wrong. | |
| 2319 | +** stdout and return non-zero. The return value is some combination | |
| 2320 | +** of the COMCK_* flags, depending on what went wrong. | |
| 2321 | 2321 | ** |
| 2322 | 2322 | ** If no issues are seen, do not output anything and return zero. |
| 2323 | 2323 | */ |
| 2324 | 2324 | static int suspicious_comment(Blob *pComment, int mFlags){ |
| 2325 | 2325 | char *zStart = blob_str(pComment); |
| @@ -2738,11 +2738,11 @@ | ||
| 2738 | 2738 | } |
| 2739 | 2739 | |
| 2740 | 2740 | /* So that older versions of Fossil (that do not understand delta- |
| 2741 | 2741 | ** manifest) can continue to use this repository, and because |
| 2742 | 2742 | ** delta manifests are usually a bad idea unless the repository |
| 2743 | - ** as a really large number of files, do not create a new | |
| 2743 | + ** has a really large number of files, do not create a new | |
| 2744 | 2744 | ** delta-manifest unless this repository already contains one or more |
| 2745 | 2745 | ** delta-manifests, or unless the delta-manifest is explicitly requested |
| 2746 | 2746 | ** by the --delta option. |
| 2747 | 2747 | ** |
| 2748 | 2748 | ** The forbid-delta-manifests setting prevents new delta manifests, |
| @@ -2749,11 +2749,11 @@ | ||
| 2749 | 2749 | ** even if the --delta option is used. |
| 2750 | 2750 | ** |
| 2751 | 2751 | ** If the remote repository sent an avoid-delta-manifests pragma on |
| 2752 | 2752 | ** the autosync above, then also forbid delta manifests, even if the |
| 2753 | 2753 | ** --delta option is specified. The remote repo will send the |
| 2754 | - ** avoid-delta-manifests pragma if it has its "forbid-delta-manifests" | |
| 2754 | + ** avoid-delta-manifests pragma if its "forbid-delta-manifests" | |
| 2755 | 2755 | ** setting is enabled. |
| 2756 | 2756 | */ |
| 2757 | 2757 | if( !(forceDelta || db_get_boolean("seen-delta-manifest",0)) |
| 2758 | 2758 | || db_get_boolean("forbid-delta-manifests",0) |
| 2759 | 2759 | || g.bAvoidDeltaManifests |
| 2760 | 2760 |
| --- src/checkin.c | |
| +++ src/checkin.c | |
| @@ -2285,41 +2285,41 @@ | |
| 2285 | } |
| 2286 | |
| 2287 | /* |
| 2288 | ** SETTING: verify-comments width=8 default=on show-only-if-changed |
| 2289 | ** |
| 2290 | ** This setting determines much sanity checking, if any, the |
| 2291 | ** "fossil commit" and "fossil amend" commands do against check-in |
| 2292 | ** comments. Recognized values: |
| 2293 | ** |
| 2294 | ** on (Default) Check for bad syntax in check-in comments |
| 2295 | ** and offer the user a chance to continue editing for |
| 2296 | ** interactive sessions, or simply abort the commit if |
| 2297 | ** commit was entered using using -m or -M |
| 2298 | ** |
| 2299 | ** off Do not syntax checking of any kind |
| 2300 | ** |
| 2301 | ** links Similar to "on", except only check for bad hyperlinks |
| 2302 | ** |
| 2303 | ** preview Do all the same checks as "on" but also preview the |
| 2304 | ** checkin comment to the user during interactive sessions |
| 2305 | ** and provide an opportunity to accept or re-edit |
| 2306 | */ |
| 2307 | |
| 2308 | #if INTERFACE |
| 2309 | #define COMCK_LINKS 0x01 /* Check for back hyperlinks */ |
| 2310 | #define COMCK_MARKUP 0x02 /* Check markup */ |
| 2311 | #define COMCK_PREVIEW 0x04 /* Always preview even if no issues found */ |
| 2312 | #define COMCK_NOPREVIEW 0x08 /* Never preview, even for other errors */ |
| 2313 | #endif /* INTERFACE */ |
| 2314 | |
| 2315 | /* |
| 2316 | ** Check for possible formatting errors in the comment string pComment. |
| 2317 | ** |
| 2318 | ** If concerns are found, write a description of the problem(s) to |
| 2319 | ** stdout return non-zero. The return value is some combination of |
| 2320 | ** of the COMCK_* flags depending on what went wrong. |
| 2321 | ** |
| 2322 | ** If no issues are seen, do not output anything and return zero. |
| 2323 | */ |
| 2324 | static int suspicious_comment(Blob *pComment, int mFlags){ |
| 2325 | char *zStart = blob_str(pComment); |
| @@ -2738,11 +2738,11 @@ | |
| 2738 | } |
| 2739 | |
| 2740 | /* So that older versions of Fossil (that do not understand delta- |
| 2741 | ** manifest) can continue to use this repository, and because |
| 2742 | ** delta manifests are usually a bad idea unless the repository |
| 2743 | ** as a really large number of files, do not create a new |
| 2744 | ** delta-manifest unless this repository already contains one or more |
| 2745 | ** delta-manifests, or unless the delta-manifest is explicitly requested |
| 2746 | ** by the --delta option. |
| 2747 | ** |
| 2748 | ** The forbid-delta-manifests setting prevents new delta manifests, |
| @@ -2749,11 +2749,11 @@ | |
| 2749 | ** even if the --delta option is used. |
| 2750 | ** |
| 2751 | ** If the remote repository sent an avoid-delta-manifests pragma on |
| 2752 | ** the autosync above, then also forbid delta manifests, even if the |
| 2753 | ** --delta option is specified. The remote repo will send the |
| 2754 | ** avoid-delta-manifests pragma if it has its "forbid-delta-manifests" |
| 2755 | ** setting is enabled. |
| 2756 | */ |
| 2757 | if( !(forceDelta || db_get_boolean("seen-delta-manifest",0)) |
| 2758 | || db_get_boolean("forbid-delta-manifests",0) |
| 2759 | || g.bAvoidDeltaManifests |
| 2760 |
| --- src/checkin.c | |
| +++ src/checkin.c | |
| @@ -2285,41 +2285,41 @@ | |
| 2285 | } |
| 2286 | |
| 2287 | /* |
| 2288 | ** SETTING: verify-comments width=8 default=on show-only-if-changed |
| 2289 | ** |
| 2290 | ** This setting determines how much sanity checking, if any, the |
| 2291 | ** "fossil commit" and "fossil amend" commands do against check-in |
| 2292 | ** comments. Recognized values: |
| 2293 | ** |
| 2294 | ** on (Default) Check for bad syntax in check-in comments |
| 2295 | ** and offer the user a chance to continue editing for |
| 2296 | ** interactive sessions, or simply abort the commit if |
| 2297 | ** commit was entered using -m or -M |
| 2298 | ** |
| 2299 | ** off Do not do syntax checking of any kind |
| 2300 | ** |
| 2301 | ** links Similar to "on", except only check for bad hyperlinks |
| 2302 | ** |
| 2303 | ** preview Do all the same checks as "on" but also preview the |
| 2304 | ** check-in comment to the user during interactive sessions |
| 2305 | ** and provide an opportunity to accept or re-edit |
| 2306 | */ |
| 2307 | |
| 2308 | #if INTERFACE |
| 2309 | #define COMCK_LINKS 0x01 /* Check for back hyperlinks */ |
| 2310 | #define COMCK_MARKUP 0x02 /* Check markup */ |
| 2311 | #define COMCK_PREVIEW 0x04 /* Always preview, even if no issues found */ |
| 2312 | #define COMCK_NOPREVIEW 0x08 /* Never preview, even for other errors */ |
| 2313 | #endif /* INTERFACE */ |
| 2314 | |
| 2315 | /* |
| 2316 | ** Check for possible formatting errors in the comment string pComment. |
| 2317 | ** |
| 2318 | ** If concerns are found, write a description of the problem(s) to |
| 2319 | ** stdout and return non-zero. The return value is some combination |
| 2320 | ** of the COMCK_* flags, depending on what went wrong. |
| 2321 | ** |
| 2322 | ** If no issues are seen, do not output anything and return zero. |
| 2323 | */ |
| 2324 | static int suspicious_comment(Blob *pComment, int mFlags){ |
| 2325 | char *zStart = blob_str(pComment); |
| @@ -2738,11 +2738,11 @@ | |
| 2738 | } |
| 2739 | |
| 2740 | /* So that older versions of Fossil (that do not understand delta- |
| 2741 | ** manifest) can continue to use this repository, and because |
| 2742 | ** delta manifests are usually a bad idea unless the repository |
| 2743 | ** has a really large number of files, do not create a new |
| 2744 | ** delta-manifest unless this repository already contains one or more |
| 2745 | ** delta-manifests, or unless the delta-manifest is explicitly requested |
| 2746 | ** by the --delta option. |
| 2747 | ** |
| 2748 | ** The forbid-delta-manifests setting prevents new delta manifests, |
| @@ -2749,11 +2749,11 @@ | |
| 2749 | ** even if the --delta option is used. |
| 2750 | ** |
| 2751 | ** If the remote repository sent an avoid-delta-manifests pragma on |
| 2752 | ** the autosync above, then also forbid delta manifests, even if the |
| 2753 | ** --delta option is specified. The remote repo will send the |
| 2754 | ** avoid-delta-manifests pragma if its "forbid-delta-manifests" |
| 2755 | ** setting is enabled. |
| 2756 | */ |
| 2757 | if( !(forceDelta || db_get_boolean("seen-delta-manifest",0)) |
| 2758 | || db_get_boolean("forbid-delta-manifests",0) |
| 2759 | || g.bAvoidDeltaManifests |
| 2760 |