Fossil SCM
Correct clean-glob example to use commas as delimiters since whitespace (other than newline) is not a valid delimiter
Commit
1640479b7dd081357b8a22b9a1beb4ef795e4b40
Parent
15aa04ab0c6fea7…
1 file changed
+1
-1
M
src/db.c
+1
-1
| --- src/db.c | ||
| +++ src/db.c | ||
| @@ -2678,11 +2678,11 @@ | ||
| 2678 | 2678 | ** TRUE for unix and FALSE for Cygwin, Mac and Windows. |
| 2679 | 2679 | ** |
| 2680 | 2680 | ** clean-glob The VALUE is a comma or newline-separated list of GLOB |
| 2681 | 2681 | ** (versionable) patterns specifying files that the "clean" command will |
| 2682 | 2682 | ** delete without prompting or allowing undo. |
| 2683 | -** Example: *.a *.lib *.o | |
| 2683 | +** Example: *.a,*.lib,*.o | |
| 2684 | 2684 | ** |
| 2685 | 2685 | ** clearsign When enabled, fossil will attempt to sign all commits |
| 2686 | 2686 | ** with gpg. When disabled (the default), commits will |
| 2687 | 2687 | ** be unsigned. Default: off |
| 2688 | 2688 | ** |
| 2689 | 2689 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -2678,11 +2678,11 @@ | |
| 2678 | ** TRUE for unix and FALSE for Cygwin, Mac and Windows. |
| 2679 | ** |
| 2680 | ** clean-glob The VALUE is a comma or newline-separated list of GLOB |
| 2681 | ** (versionable) patterns specifying files that the "clean" command will |
| 2682 | ** delete without prompting or allowing undo. |
| 2683 | ** Example: *.a *.lib *.o |
| 2684 | ** |
| 2685 | ** clearsign When enabled, fossil will attempt to sign all commits |
| 2686 | ** with gpg. When disabled (the default), commits will |
| 2687 | ** be unsigned. Default: off |
| 2688 | ** |
| 2689 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -2678,11 +2678,11 @@ | |
| 2678 | ** TRUE for unix and FALSE for Cygwin, Mac and Windows. |
| 2679 | ** |
| 2680 | ** clean-glob The VALUE is a comma or newline-separated list of GLOB |
| 2681 | ** (versionable) patterns specifying files that the "clean" command will |
| 2682 | ** delete without prompting or allowing undo. |
| 2683 | ** Example: *.a,*.lib,*.o |
| 2684 | ** |
| 2685 | ** clearsign When enabled, fossil will attempt to sign all commits |
| 2686 | ** with gpg. When disabled (the default), commits will |
| 2687 | ** be unsigned. Default: off |
| 2688 | ** |
| 2689 |