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
21edf7bb
Commit
21edf7bb
authored
8 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: do an assignment in a more transparent way
parent
5e4f16da
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
+6
-6
src/text.c
with
6 additions
and
6 deletions
+6
-6
src/text.c
View file @
21edf7bb
...
...
@@ -2861,12 +2861,12 @@ void do_spell(void)
return
;
}
status
=
#ifndef NANO_TINY
openfile
->
mark_set
?
write_marked_file
(
temp
,
temp_file
,
TRUE
,
OVERWRITE
)
:
if
(
openfile
->
mark_set
)
status
=
write_marked_file
(
temp
,
temp_file
,
TRUE
,
OVERWRITE
);
else
#endif
write_file
(
temp
,
temp_file
,
TRUE
,
OVERWRITE
,
FALSE
);
status
=
write_file
(
temp
,
temp_file
,
TRUE
,
OVERWRITE
,
FALSE
);
if
(
!
status
)
{
statusbar
(
_
(
"Error writing temp file: %s"
),
strerror
(
errno
));
...
...
@@ -2878,7 +2878,7 @@ void do_spell(void)
statusbar
(
_
(
"Invoking spell checker, please wait"
));
spell_msg
=
(
alt_speller
!=
NULL
)
?
do_alt_speller
(
temp
)
:
do_int_speller
(
temp
);
do_int_speller
(
temp
);
unlink
(
temp
);
free
(
temp
);
...
...
@@ -2894,7 +2894,7 @@ void do_spell(void)
statusbar
(
_
(
"Spell checking failed: %s"
),
spell_msg
);
else
statusbar
(
_
(
"Spell checking failed: %s: %s"
),
spell_msg
,
strerror
(
errno
));
strerror
(
errno
));
}
else
statusbar
(
_
(
"Finished checking spelling"
));
}
...
...
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