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)
133133 end
134134end
135135
136- local function incMax (val ,inc ,base )
136+ local function incMax (val , inc , base )
137137 return ((val + inc + base - 1 ) % base ) + 1
138138end
139139
140140local function incPage (inc )
141- currentPage = incMax (currentPage ,inc ,# (PageFiles ))
141+ currentPage = incMax (currentPage , inc , # (PageFiles ))
142142 Page = nil
143143 collectgarbage ()
144144end
145145
146146local function incLine (inc )
147- currentLine = incMax (currentLine ,inc ,# (Page .fields ))
147+ currentLine = incMax (currentLine , inc , # (Page .fields ))
148148end
149149
150150local function incMenu (inc )
151- menuActive = incMax (menuActive ,inc ,# (menuList ))
151+ menuActive = incMax (menuActive , inc , # (menuList ))
152152end
153153
154154local function requestPage ()
You can’t perform that action at this time.
0 commit comments