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
7ad5afb9
Commit
7ad5afb9
authored
7 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: remove some unneeded parentheses, and shorten two function calls
parent
e1b0f2b2
master
feature/match-parens
refactor/readbility
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/global.c
+4
-6
src/global.c
src/winio.c
+2
-2
src/winio.c
with
6 additions
and
8 deletions
+6
-8
src/global.c
View file @
7ad5afb9
...
...
@@ -993,11 +993,9 @@ void shortcut_init(void)
#endif
#ifdef ENABLE_HISTORIES
add_to_funcs
(
get_history_older_void
,
(
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
|
MWHEREISFILE
),
add_to_funcs
(
get_history_older_void
,
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
|
MWHEREISFILE
,
N_
(
"PrevHstory"
),
WITHORSANS
(
prevhistory_gist
),
TOGETHER
,
VIEW
);
add_to_funcs
(
get_history_newer_void
,
(
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
|
MWHEREISFILE
),
add_to_funcs
(
get_history_newer_void
,
MWHEREIS
|
MREPLACE
|
MREPLACEWITH
|
MWHEREISFILE
,
N_
(
"NextHstory"
),
WITHORSANS
(
nexthistory_gist
),
BLANKAFTER
,
VIEW
);
#endif
...
...
@@ -1055,9 +1053,9 @@ void shortcut_init(void)
add_to_funcs
(
do_page_down
,
MBROWSER
,
nextpage_tag
,
WITHORSANS
(
nextpage_gist
),
TOGETHER
,
VIEW
);
add_to_funcs
(
do_first_file
,
(
MBROWSER
|
MWHEREISFILE
)
,
add_to_funcs
(
do_first_file
,
MBROWSER
|
MWHEREISFILE
,
N_
(
"First File"
),
WITHORSANS
(
firstfile_gist
),
TOGETHER
,
VIEW
);
add_to_funcs
(
do_last_file
,
(
MBROWSER
|
MWHEREISFILE
)
,
add_to_funcs
(
do_last_file
,
MBROWSER
|
MWHEREISFILE
,
N_
(
"Last File"
),
WITHORSANS
(
lastfile_gist
),
BLANKAFTER
,
VIEW
);
#ifndef NANO_TINY
add_to_funcs
(
do_prev_word_void
,
MBROWSER
,
...
...
This diff is collapsed.
Click to expand it.
src/winio.c
View file @
7ad5afb9
...
...
@@ -96,13 +96,13 @@ void run_macro(void)
size_t
i
;
if
(
recording
)
{
status
line
(
HUSH
,
_
(
"Cannot run macro while recording"
));
status
bar
(
_
(
"Cannot run macro while recording"
));
snip_last_keystroke
();
return
;
}
if
(
macro_length
==
0
)
{
status
line
(
HUSH
,
_
(
"Macro is empty"
));
status
bar
(
_
(
"Macro is empty"
));
return
;
}
...
...
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