pgLatLon
annotate make-doc.sh @ 79:16787a19a325
Do not return CSTRING to static memory
Avoids wrong pfree under certain circumstances
(e.g. array_agg on empty EBOX or ECLUSTER).
Avoids wrong pfree under certain circumstances
(e.g. array_agg on empty EBOX or ECLUSTER).
| author | jbe |
|---|---|
| date | Thu Oct 23 10:16:01 2025 +0200 (4 days ago) |
| parents | 3b70e93cc07d |
| children | b0e17a5a0258 |
| rev | line source |
|---|---|
| jbe@0 | 1 #!/bin/sh |
| jbe@0 | 2 # |
| jbe@0 | 3 # This command can be used to update the README.html file after changing the |
| jbe@0 | 4 # README.mkd file. |
| jbe@0 | 5 |
| jbe@0 | 6 echo "<html><head><title>"`grep '[^ \t\r\n][^ \t\r\n]*' README.mkd | head -n 1`"</title></head><body>" > README.html |
| jbe@0 | 7 markdown2 README.mkd >> README.html |
| jbe@0 | 8 echo "</body></html>" >> README.html |