mirror of git://git.sv.gnu.org/nano.git
Backport r5355 from trunk.
git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_2_4_branch@5416 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
0e3472b107
commit
af6dd93510
|
@ -1,3 +1,7 @@
|
|||
2015-08-13 Benno Schulenberg <bensberg@justemail.net>
|
||||
* src/search.c (do_find_bracket): Remove mistaken comparison between
|
||||
pointer and literal character. Found with cppcheck.
|
||||
|
||||
2015-08-11 Benno Schulenberg <bensberg@justemail.net>
|
||||
* src/files.c (write_file): Avoid calling copy_file() with a null
|
||||
pointer. Found with cppcheck.
|
||||
|
|
|
@ -1129,7 +1129,7 @@ void do_find_bracket(void)
|
|||
|
||||
ch = openfile->current->data + openfile->current_x;
|
||||
|
||||
if (ch == '\0' || (ch = mbstrchr(matchbrackets, ch)) == NULL) {
|
||||
if ((ch = mbstrchr(matchbrackets, ch)) == NULL) {
|
||||
statusbar(_("Not a bracket"));
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue