summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-07-01 20:46:46 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-07-01 20:46:46 -0700
commitb045e1884df090dbba5646c9037c0d5b73ca8ae4 (patch)
tree955a5e6a989051c8f355225a4fcbf92dc2d5958e
parent4e485fd9b56d4087e8cf9e96e29be1df18e5eb8b (diff)
downloadtxr-b045e1884df090dbba5646c9037c0d5b73ca8ae4.tar.gz
txr-b045e1884df090dbba5646c9037c0d5b73ca8ae4.tar.bz2
txr-b045e1884df090dbba5646c9037c0d5b73ca8ae4.zip
* genman.txr: Bugfix: reproduce the correct opening bracket
before a function link.
-rw-r--r--ChangeLog5
-rw-r--r--genman.txr3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8e03f100..afa4ec74 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-07-01 Kaz Kylheku <kaz@kylheku.com>
+
+ * genman.txr: Bugfix: reproduce the correct opening bracket
+ before a function link.
+
2015-06-27 Kaz Kylheku <kaz@kylheku.com>
Fix issues in configure found by ShellCheck.
diff --git a/genman.txr b/genman.txr
index b90c8387..ce70cbb7 100644
--- a/genman.txr
+++ b/genman.txr
@@ -112,9 +112,10 @@ This document was created by
@1)) @1)))
(regsub #/[\(\[][^ )&]+/
(do let* ((tok [@1 1..:])
+ (bkt [@1 0])
(tag [txlhash tok]))
(if tag
- `(<A HREF="#@tag">@tok</A>`
+ `@bkt<A HREF="#@tag">@tok</A>`
@1)) out0)))
(t @1))
BODY