From 2344a5c096fd4b1855f8f886ff540a096d81ac56 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Mon, 22 May 2006 12:18:21 +0000 Subject: [PATCH] Factorybrews had been broken for too long. Originally committed to SVN as r399. --- automation/factorybrew/line-per-syllable.lua | 2 +- automation/factorybrew/simple-k-replacer.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/factorybrew/line-per-syllable.lua b/automation/factorybrew/line-per-syllable.lua index 63e8afd04..1a29113b3 100644 --- a/automation/factorybrew/line-per-syllable.lua +++ b/automation/factorybrew/line-per-syllable.lua @@ -151,7 +151,7 @@ end function do_line(meta, styles, config, line) if config.workstyle == "" or config.workstyle == line.style then - return adv_do_line(meta, styles, config, line) + return karaskel.do_line(meta, styles, config, line) else return { n=1, [1]=line } end diff --git a/automation/factorybrew/simple-k-replacer.lua b/automation/factorybrew/simple-k-replacer.lua index cb32bbba7..9e9909a6a 100644 --- a/automation/factorybrew/simple-k-replacer.lua +++ b/automation/factorybrew/simple-k-replacer.lua @@ -136,7 +136,7 @@ end function do_line(meta, styles, config, line) if config.workstyle == "" or config.workstyle == line.style then - return default_do_line(meta, styles, config, line) + return karaskel.do_line(meta, styles, config, line) else return { n=1, [1]=line } end