diff options
Diffstat (limited to 'stdlib/doc-lookup.tl')
-rw-r--r-- | stdlib/doc-lookup.tl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/stdlib/doc-lookup.tl b/stdlib/doc-lookup.tl index 78597405..c65650b8 100644 --- a/stdlib/doc-lookup.tl +++ b/stdlib/doc-lookup.tl @@ -1,5 +1,3 @@ -(load "doc-syms") - (defvar usr:*doc-url* "https://www.nongnu.org/txr/txr-manpage.html") (defvarl os-symbol @@ -63,6 +61,6 @@ (sym (let ((*package* (find-package "pub"))) (tostring sym))) (t (tostringp sym)))) - (tag (if str [doc-syms str] ""))) + (tag (if str (fmt "S-~,08X" (crc32 str)) ""))) (open-url `@{*doc-url*}#@tag`) (error "~s: ~s not found in symbol index" 'doc sym))) |