diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-05-13 19:42:39 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-05-13 19:46:48 -0700 |
commit | 28304a063238826c7c8d1e9cad771a5d23d8b37a (patch) | |
tree | 8c05fb42478bc84aaa2b8dc0b3ec64fcfbb40c5e /genman.txr | |
parent | 9c16c6671ba41187e4b760678d8b1a151d383391 (diff) | |
download | txr-28304a063238826c7c8d1e9cad771a5d23d8b37a.tar.gz txr-28304a063238826c7c8d1e9cad771a5d23d8b37a.tar.bz2 txr-28304a063238826c7c8d1e9cad771a5d23d8b37a.zip |
doc: sort doc-syms, and html-decode.
* genman.txr: generate doc-syms as a sorted list fed to
hash-from-pairs. Now the symbols won't jump around so much
whenever we update it. Also, the names must be HTML-decoded.
For instance "str<" was being stored as "str<" causing
(doc 'str<) to fail. We use TXR @(output) to adjust the
formatting as if it were maintained by hand.
* share/txr/stdlib/doc-syms.tl: Regenerated.
Diffstat (limited to 'genman.txr')
-rw-r--r-- | genman.txr | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -295,4 +295,17 @@ function tocjump(hash) { </body> </html> @(end) -@(do (file-put "share/txr/stdlib/doc-syms.tl" ^(defvarl doc-syms ,symhash))) +@(bind (name code) @(transpose [nsort (mapcar (tb ((sym code)) + (list (html-decode sym) code)) + (hash-pairs symhash)) : car])) +@(output "share/txr/stdlib/doc-syms.tl") +(defparml doc-syms + (hash-from-pairs +@ (repeat) + (@(tostring name) @(tostring code)) +@(first) + '((@(tostring name) @(tostring code)) +@(last) + (@(tostring name) @(tostring code))))) +@ (end) +@(end) |