File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -133,22 +133,22 @@ local function processMspReply(cmd,rx_buf)
133
133
end
134
134
end
135
135
136
- local function incMax (val ,inc ,base )
136
+ local function incMax (val , inc , base )
137
137
return ((val + inc + base - 1 ) % base ) + 1
138
138
end
139
139
140
140
local function incPage (inc )
141
- currentPage = incMax (currentPage ,inc ,# (PageFiles ))
141
+ currentPage = incMax (currentPage , inc , # (PageFiles ))
142
142
Page = nil
143
143
collectgarbage ()
144
144
end
145
145
146
146
local function incLine (inc )
147
- currentLine = incMax (currentLine ,inc ,# (Page .fields ))
147
+ currentLine = incMax (currentLine , inc , # (Page .fields ))
148
148
end
149
149
150
150
local function incMenu (inc )
151
- menuActive = incMax (menuActive ,inc ,# (menuList ))
151
+ menuActive = incMax (menuActive , inc , # (menuList ))
152
152
end
153
153
154
154
local function requestPage ()
You can’t perform that action at this time.
0 commit comments