1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-02 13:26:03 +02:00

Slightly optimized should_ignore_line() by using getjobtext() rather

than getpermtext().
This commit is contained in:
Wayne Davison 2001-04-10 18:03:58 +00:00
parent 09f7ed0d1f
commit 6d4a1bbc5c

View File

@ -981,25 +981,19 @@ should_ignore_line(Eprog prog)
}
if (isset(HISTNOSTORE)) {
char *b = getpermtext(prog, NULL);
char *t = b;
char *b = getjobtext(prog, NULL);
if (*b == 'b' && strncmp(b, "builtin ", 8) == 0)
b += 8;
if (*b == 'h' && strncmp(b, "history", 7) == 0
&& (!b[7] || b[7] == ' ')) {
zsfree(t);
&& (!b[7] || b[7] == ' '))
return 1;
}
if (*b == 'f' && b[1] == 'c' && b[2] == ' ' && b[3] == '-') {
b += 3;
do {
if (*++b == 'l') {
zsfree(t);
if (*++b == 'l')
return 1;
}
} while (ialpha(*b));
}
zsfree(t);
}
return 0;