mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-25 06:09:38 +03:00
Removing the mistaken comparison between a pointer and a literal character.
(It will always be false, so it is apparently unneeded.) git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5355 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
58a0ddebac
commit
677e9474f7
@ -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-12 Benno Schulenberg <bensberg@justemail.net>
|
||||
* src/chars.c: UTF-8 is a stateless encoding, so there is no need to
|
||||
reset any state.
|
||||
|
@ -1149,7 +1149,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
Block a user