summaryrefslogtreecommitdiffstats
path: root/genman.txr
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-05-13 19:42:39 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-05-13 19:46:48 -0700
commit28304a063238826c7c8d1e9cad771a5d23d8b37a (patch)
tree8c05fb42478bc84aaa2b8dc0b3ec64fcfbb40c5e /genman.txr
parent9c16c6671ba41187e4b760678d8b1a151d383391 (diff)
downloadtxr-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&lt;" 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.txr15
1 files changed, 14 insertions, 1 deletions
diff --git a/genman.txr b/genman.txr
index 07db7e04..c1416baa 100644
--- a/genman.txr
+++ b/genman.txr
@@ -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)