summaryrefslogtreecommitdiffstats
path: root/kate/scripts/script-indent-c1-test.lua
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-07 03:45:53 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-07 03:45:53 +0000
commit10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch)
tree4bc444c00a79e88105f2cfce5b6209994c413ca0 /kate/scripts/script-indent-c1-test.lua
parent307136d8eef0ba133b78ceee8e901138d4c996a1 (diff)
downloadtdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz
tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip
Revert automated changes
Sorry guys, they are just not ready for prime time Work will continue as always git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/scripts/script-indent-c1-test.lua')
-rw-r--r--kate/scripts/script-indent-c1-test.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/kate/scripts/script-indent-c1-test.lua b/kate/scripts/script-indent-c1-test.lua
index c54f20424..d2593b962 100644
--- a/kate/scripts/script-indent-c1-test.lua
+++ b/kate/scripts/script-indent-c1-test.lua
@@ -15,12 +15,12 @@ function indentChar(c)
-- unindent } and {, if not in a comment
- if not(string.tqfind(textLine,"^%s*//")) then
+ if not(string.find(textLine,"^%s*//")) then
katedebug("no comment")
katedebug(c);
if (c=="}") or (c=="{") then
katedebug("} or { found");
- if (string.tqfind(textLine,"^%s%s%s%s")) then
+ if (string.find(textLine,"^%s%s%s%s")) then
katedebug("removing one indentation level");
document.removeText(line,0,line,tabWidth)
view.setCursorPositionReal(line,col-tabWidth)
@@ -60,7 +60,7 @@ function indentNewLine()
function firstNonSpace( text )
- local pos=string.tqfind(text,"[^%s]")
+ local pos=string.find(text,"[^%s]")
if pos then
return pos
else
@@ -69,7 +69,7 @@ function indentNewLine()
end
function lastNonSpace (text)
- local pos=string.tqfind(text,"[^%s]%s*$")
+ local pos=string.find(text,"[^%s]%s*$")
if pos then
return pos
else
@@ -88,7 +88,7 @@ function indentNewLine()
strCurrentLine=document.textLine(intCurrentLine)
intLastChar= lastNonSpace(strCurrentLine)
intFirstChar=firstNonSpace(strCurrentLine)
- if not (string.tqfind(strCurrentLine,"//")) then
+ if not (string.find(strCurrentLine,"//")) then
for intCurrentChar=intLastChar,intFirstChar,-1 do
ch=string.sub(strCurrentLine,intCurrentChar,intCurrentChar)
if (ch=="(") or (ch=="[") then
@@ -122,7 +122,7 @@ function indentNewLine()
katedebug( "line: " .. intCurrentLine)
katedebug( openParenCount .. ", " .. openBraceCount)
- local ok,match=pcall(function () return string.sub(strCurrentLine,string.tqfind(strCurrentLine,"^%s+")) end)
+ local ok,match=pcall(function () return string.sub(strCurrentLine,string.find(strCurrentLine,"^%s+")) end)
if ok then
katedebug("Line HAD leading whitespaces")
strIndentFiller=match