linting: drop messages for other files when configured for one buffer

This fixes https://savannah.gnu.org/bugs/?53445.
master
Benno Schulenberg 2018-03-25 21:41:46 +02:00
parent 88234c90bc
commit 5726514869
1 changed files with 6 additions and 2 deletions

View File

@ -3198,19 +3198,21 @@ void do_linter(void)
while (TRUE) { while (TRUE) {
int kbinput; int kbinput;
functionptrtype func; functionptrtype func;
#ifdef ENABLE_MULTIBUFFER
struct stat lintfileinfo; struct stat lintfileinfo;
if (stat(curlint->filename, &lintfileinfo) != -1 && if (stat(curlint->filename, &lintfileinfo) != -1 &&
openfile->current_stat->st_ino != lintfileinfo.st_ino) { openfile->current_stat->st_ino != lintfileinfo.st_ino) {
openfilestruct *tmpof = openfile; openfilestruct *tmpof = openfile;
#ifdef ENABLE_MULTIBUFFER
while (tmpof != openfile->next) { while (tmpof != openfile->next) {
if (tmpof->current_stat->st_ino == lintfileinfo.st_ino) if (tmpof->current_stat->st_ino == lintfileinfo.st_ino)
break; break;
tmpof = tmpof->next; tmpof = tmpof->next;
} }
#endif
if (tmpof->current_stat->st_ino != lintfileinfo.st_ino) { if (tmpof->current_stat->st_ino != lintfileinfo.st_ino) {
#ifdef ENABLE_MULTIBUFFER
char *msg = charalloc(1024 + strlen(curlint->filename)); char *msg = charalloc(1024 + strlen(curlint->filename));
int i; int i;
@ -3225,6 +3227,7 @@ void do_linter(void)
} else if (i == 1) { } else if (i == 1) {
open_buffer(curlint->filename, TRUE); open_buffer(curlint->filename, TRUE);
} else { } else {
#endif
char *dontwantfile = mallocstrcpy(NULL, curlint->filename); char *dontwantfile = mallocstrcpy(NULL, curlint->filename);
lintstruct *restlint = NULL; lintstruct *restlint = NULL;
@ -3259,10 +3262,11 @@ void do_linter(void)
free(dontwantfile); free(dontwantfile);
} }
#ifdef ENABLE_MULTIBUFFER
} else } else
openfile = tmpof; openfile = tmpof;
#endif
} }
#endif /* ENABLE_MULTIBUFFER */
if (tmplint != curlint) { if (tmplint != curlint) {
goto_line_posx(curlint->lineno, curlint->colno - 1); goto_line_posx(curlint->lineno, curlint->colno - 1);