"": output previous action to stderr

When redirecting output from "", it prints the command
to stdout, which garbles things like:

	% foo
	<inspect output>
	% "" > /dev/snarf

Now, we send it to stderr.
front
Ori Bernstein 2020-03-08 11:46:34 -07:00
parent fe39388250
commit e652be5559
1 changed files with 2 additions and 2 deletions

View File

@ -4,10 +4,10 @@ PROMPT='[^ ]*(%|;)+[ ]+'
_x = `{" $* | tail -1}
if(~ $#_x 0) {
echo no such command found
echo no such command found >[1=2]
exit notfound
}
echo ' ' $_x
echo ' ' $_x >[1=2]
_x=`{ echo -n 'eval '''; echo $_x | sed 's/^'$PROMPT'//; s/''/''''/g; s/$/''/'}
rc -c $"_x