Stopping the search when a magic matched.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4886 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Benno Schulenberg 2014-05-14 11:51:26 +00:00
parent 5edd0411d6
commit e81a43fac4
2 changed files with 3 additions and 0 deletions

View File

@ -8,6 +8,7 @@
* src/color.c (color_update): Open the magic database only when
actually going to use it, and close it afterward.
* doc/syntax/{perl.nanorc,xml.nanorc}: Improve two magic regexes.
* src/color.c (color_update): Stop seeking when a magic matched.
2014-05-13 Benno Schulenberg <bensberg@justemail.net>
* src/text.c (do_linter): Make an error message somewhat clearer.

View File

@ -310,6 +310,8 @@ void color_update(void)
if (not_compiled)
nfreeregex(&e->ext);
}
if (openfile->syntax)
break;
}
if (stat(openfile->filename, &fileinfo) == 0)
magic_close(cookie);