1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Date: Sun, 21 Apr 2024 00:47:21 -0400
Subject: Fix nroff error
Forwarded: https://github.com/bwalex/tc-play/pull/84
Without this change, running "man ./tcplay.3 > /dev/null" produces the
following on stderr:
mdoc warning: .Lb: no description for library 'libtcplay' available (#49)
---
tcplay.3 | 1 +
1 file changed, 1 insertion(+)
diff --git a/tcplay.3 b/tcplay.3
index 782ece3..c1c846a 100644
--- a/tcplay.3
+++ b/tcplay.3
@@ -45,6 +45,7 @@
.Nm tc_api_task_get_error
.Nd TrueCrypt volume management
.Sh LIBRARY
+.ds doc-str-Lb-libtcplay TrueCrypt volume management (libtcplay, \-ltcplay)
.Lb libtcplay
.Sh SYNOPSIS
.In tcplay_api.h
|