Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
415bf826
Commit
415bf826
authored
7 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: move an 'if' and then remove an unneeded label
parent
9bce8bfe
master
feature/match-parens
refactor/readbility
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/text.c
+3
-4
src/text.c
with
3 additions
and
4 deletions
+3
-4
src/text.c
View file @
415bf826
...
...
@@ -3198,12 +3198,9 @@ void do_linter(void)
while
(
TRUE
)
{
int
kbinput
;
functionptrtype
func
;
if
(
tmplint
!=
curlint
)
{
#ifdef ENABLE_MULTIBUFFER
struct
stat
lintfileinfo
;
new_lint_loop:
if
(
stat
(
curlint
->
filename
,
&
lintfileinfo
)
!=
-
1
)
{
if
(
openfile
->
current_stat
->
st_ino
!=
lintfileinfo
.
st_ino
)
{
openfilestruct
*
tmpof
=
openfile
;
...
...
@@ -3256,7 +3253,7 @@ void do_linter(void)
break
;
}
else
{
curlint
=
restlint
;
goto
new_lint_loop
;
continue
;
}
free
(
dontwantfile
);
...
...
@@ -3266,6 +3263,8 @@ void do_linter(void)
}
}
#endif
/* ENABLE_MULTIBUFFER */
if
(
tmplint
!=
curlint
)
{
goto_line_posx
(
curlint
->
lineno
,
curlint
->
colno
-
1
);
titlebar
(
NULL
);
adjust_viewport
(
CENTERING
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help