ya that's because when you set %i to 0 .. it's not $null

try this
Code:
alias nulltest {
  unset %i
  if (!%i) echo a
  if (%i == $null) echo b
}

it will echo both

Last edited by r0ck0; 11/09/03 05:31 PM.