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
eb67af93
Commit
eb67af93
authored
8 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: fix compilation with --enable-tiny --enable-help
parent
efdd7392
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/global.c
+2
-2
src/global.c
with
2 additions
and
2 deletions
+2
-2
src/global.c
View file @
eb67af93
...
...
@@ -523,9 +523,9 @@ void shortcut_init(void)
#endif
const
char
*
nano_replace_msg
=
N_
(
"Replace a string or a regular expression"
);
const
char
*
nano_gotoline_msg
=
N_
(
"Go to line and column number"
);
const
char
*
nano_whereis_next_msg
=
N_
(
"Repeat the last search"
);
#ifndef NANO_TINY
const
char
*
nano_mark_msg
=
N_
(
"Mark text starting from the cursor position"
);
const
char
*
nano_whereis_next_msg
=
N_
(
"Repeat the last search"
);
const
char
*
nano_copy_msg
=
N_
(
"Copy the current line and store it in the cutbuffer"
);
const
char
*
nano_indent_msg
=
N_
(
"Indent the current line"
);
...
...
@@ -598,11 +598,11 @@ void shortcut_init(void)
const
char
*
nano_savefile_msg
=
N_
(
"Save file without prompting"
);
const
char
*
nano_findprev_msg
=
N_
(
"Search next occurrence backward"
);
const
char
*
nano_findnext_msg
=
N_
(
"Search next occurrence forward"
);
#endif
const
char
*
nano_case_msg
=
N_
(
"Toggle the case sensitivity of the search"
);
const
char
*
nano_reverse_msg
=
N_
(
"Reverse the direction of the search"
);
#endif
#ifdef HAVE_REGEX_H
const
char
*
nano_regexp_msg
=
N_
(
"Toggle the use of regular expressions"
);
...
...
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