1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-30 05:40:58 +01:00

Changed iblank() calls on zleline to use ZC_iblank().

This commit is contained in:
Wayne Davison 2005-11-01 02:50:29 +00:00
parent 2c28e857f8
commit aa02446422

View file

@ -459,7 +459,7 @@ int
vifirstnonblank(UNUSED(char **args))
{
zlecs = findbol();
while (zlecs != zlell && iblank(zleline[zlecs]))
while (zlecs != zlell && ZC_iblank(zleline[zlecs]))
zlecs++;
return 0;
}