Skip to content
Snippets Groups Projects
Commit 06da063d authored by Enrico Tassi's avatar Enrico Tassi
Browse files

new patch to fix missing closing bracket

parent 33c332dd
No related branches found
No related tags found
No related merge requests found
lua-ldoc (1.4.3-2) unstable; urgency=medium
* Patch: close missing bracket in template file
-- Enrico Tassi <gareuselesinge@debian.org> Mon, 17 Aug 2015 14:40:09 +0200
lua-ldoc (1.4.3-1) unstable; urgency=medium
* New upstream version:
......
......@@ -3,11 +3,11 @@ Date: Mon, 4 Mar 2013 11:27:26 +0100
Subject: Fix the interpreter to lua5.1 (since lua may be lua50 too)
---
ldoc.lua | 2 +-
ldoc.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ldoc.lua b/ldoc.lua
index 0d44850..7fa86c9 100644
index e32472c..3454bcf 100644
--- a/ldoc.lua
+++ b/ldoc.lua
@@ -1,4 +1,4 @@
......
From 516e017f97feff9beabddffbcd6bbbcc920db2e1 Mon Sep 17 00:00:00 2001
From: Julian Wollrath <jwollrath@web.de>
Date: Fri, 26 Dec 2014 17:19:57 +0100
Subject: [PATCH] Remove non-existing 'one 1.md' from tests/config.ld
Subject: Remove non-existing 'one 1.md' from tests/config.ld
---
tests/config.ld | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/config.ld b/tests/config.ld
index 22b498319958..08621bcad9d4 100644
index 22b4983..08621bc 100644
--- a/tests/config.ld
+++ b/tests/config.ld
@@ -2,4 +2,4 @@ format='markdown'
......@@ -17,6 +16,3 @@ index 22b498319958..08621bcad9d4 100644
use_markdown_titles=true
-topics = {'one 1.md','two.md'}
+topics = {'two.md'}
--
2.1.4
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>
0001-Fix-the-interpreter-to-lua5.2-since-lua-may-be-lua50.patch
0002-Remove-non-existing-one-1.md-from-tests-config.ld.patch
0003-Fix-broken-template-missing-closing-bracket.patch
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment