diff options
| author | 2020-11-26 14:58:36 -0600 | |
|---|---|---|
| committer | 2020-11-26 14:58:36 -0600 | |
| commit | adc3066dc877d671b4c98f2b50048f5e86b6f8df (patch) | |
| tree | a35b45261e6c07117ba4c0e6b9368689740f4755 /build_win.bat | |
| parent | Add code in parser to automatically indent long strings. (diff) | |
Update doc-format and boot.janet docstrings.
Make doc-format respect leading indents, increase the default format
width to better accommodate markdown formatted documentation. We still
need to support single line style doc strings, such as those used
for most c functions which can be a single line of much longer than
80 or 120 characters.
Consecutive whitespace internal to lines is not preserved, though.
Diffstat (limited to 'build_win.bat')
| -rw-r--r-- | build_win.bat | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build_win.bat b/build_win.bat index d625950e..a4aa4c61 100644 --- a/build_win.bat +++ b/build_win.bat @@ -28,10 +28,10 @@ if not "%JANET_BUILD%" == "" ( @set JANET_COMPILE=%JANET_COMPILE% /DJANET_BUILD="\"%JANET_BUILD%\"" ) -mkdir build -mkdir build\core -mkdir build\mainclient -mkdir build\boot +if not exist build mkdir build +if not exist build\core mkdir build\core +if not exist build\mainclient mkdir build\mainclient +if not exist build\boot mkdir build\boot @rem Build the bootstrap interpreter for %%f in (src\core\*.c) do ( |
