Am 12.09.2017 um 18:38 schrieb Allin Cottrell:
On Fri, 8 Sep 2017, Sven Schreiber wrote:
> hi,
> example:
>
> <hansl>
> catch ols # incomplete command
> err = $error
> if err
> printf "%s", errmsg(err)
> endif
> </hansl>
>
> As output I get "Befehl hat zu wenige Argumente? endif", so a spurious
> 'endif' printout at the end.
> This is with a July snapshot, haven't checked more recent snapshots yet.
printf "%s\n", errmsg(err)
The "endif" is just echoing your input.
Whoops, ah OK.
sorry,
sven