I'm using $ini(inifile,section,0) to get the amount of items i need to store in a hash table $ini() returns comments in an ini file while /hload -i ignores the comments.

Example Code:
Code:
alias test {
  var %items = $ini(inifile,section,0)
  hmake tmp %items
  hload -i tmp inifile section
  ; the point is now, that $hget(tmp,0) is different from %items 
  ; but in my opinion they should be identical
}

content of the ini-file:
Code:
[section]
;item=example1
;item=example2
item=bla


$ini should ignore comments too.


one step closer to world domination