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
bc9862fb
Commit
bc9862fb
authored
8 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: condense some declarations by reshuffling
parent
582a6249
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/nano.c
+4
-9
src/nano.c
with
4 additions
and
9 deletions
+4
-9
src/nano.c
View file @
bc9862fb
...
...
@@ -1812,16 +1812,13 @@ int do_mouse(void)
* TRUE. */
void
do_output
(
char
*
output
,
size_t
output_len
,
bool
allow_cntrls
)
{
size_t
current_len
,
i
=
0
;
#ifndef NANO_TINY
size_t
orig_rows
=
0
,
original_row
=
0
;
#endif
char
*
char_buf
=
charalloc
(
mb_cur_max
());
int
char_len
;
current_len
=
strlen
(
openfile
->
current
->
data
);
size_t
current_len
=
strlen
(
openfile
->
current
->
data
);
size_t
i
=
0
;
#ifndef NANO_TINY
size_t
orig_rows
=
0
,
original_row
=
0
;
if
(
ISSET
(
SOFTWRAP
))
{
if
(
openfile
->
current_y
==
editwinrows
-
1
)
original_row
=
xplustabs
()
/
editwincols
;
...
...
@@ -1850,8 +1847,6 @@ void do_output(char *output, size_t output_len, bool allow_cntrls)
refresh_needed
=
TRUE
;
}
assert
(
openfile
->
current_x
<=
current_len
);
/* Make room for the new character and copy it into the line. */
openfile
->
current
->
data
=
charealloc
(
openfile
->
current
->
data
,
current_len
+
char_len
+
1
);
...
...
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