Differences From Artifact [2dfa4d5d9d]:
- File src/mkbuiltin.c — part of check-in [41b9873b43] at 2020-08-16 14:08:27 on branch trunk — When compiling with FOSSIL_DEBUG (from the --fossil-debug configure option) do not attempt to "compress" built-in javascript by removing comments and surplus whitespace. This makes the javascript easier to read in a debugger. (user: drh size: 11213) [more...]
- File tools/mkbuiltin.c — part of check-in [a13ab011f4] at 2021-12-25 12:06:16 on branch code-movement — Part one of src/ file relocations discussed in /chat. This step moves the various code generators and translators from src/ to tools/. Edit: moving to branch for further changes, as this broke diff -tk. (user: stephan size: 11213)
To Artifact [8752297a4a]:
- File tools/mkbuiltin.c — part of check-in [ffa1c7d0a0] at 2022-07-28 18:19:07 on branch trunk — Patch the javascript compressor so that it does not elide text after // if the // immediately follows a :, as that text might be part of a URI string literal. (user: drh size: 11237) [more...]
︙ | |||
73 74 75 76 77 78 79 | 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | - + | ** well-behaved source files in this project. */ static void compressJavascript(unsigned char *z, int *pn){ int n = *pn; int i, j, k; for(i=j=0; i<n; i++){ unsigned char c = z[i]; |
︙ |