File: 0003-Fix-broken-template-missing-closing-bracket.patch

package info (click to toggle)
lua-ldoc 1.4.3-5%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 912 kB
  • ctags: 748
  • sloc: ansic: 56; makefile: 55
file content (21 lines) | stat: -rw-r--r-- 746 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Enrico Tassi <gareuselesinge@debian.org>
Date: Mon, 17 Aug 2015 14:39:14 +0200
Subject: Fix broken template (missing closing bracket)

---
 ldoc/html/ldoc_ltp.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ldoc/html/ldoc_ltp.lua b/ldoc/html/ldoc_ltp.lua
index 07c8a84..7033ad5 100644
--- a/ldoc/html/ldoc_ltp.lua
+++ b/ldoc/html/ldoc_ltp.lua
@@ -65,7 +65,7 @@ return [==[
 # for kind, mods, type in ldoc.kinds() do
 #  if ldoc.allowed_in_contents(type,module) then
 <h2>$(kind)</h2>
-<ul class="$(kind=='Topics' and '' or 'nowrap'">
+<ul class="$(kind=='Topics' and '' or 'nowrap')">
 #  for mod in mods() do local name = ldoc.module_name(mod)
 #   if mod.name == this_mod then
   <li><strong>$(name)</strong></li>