Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When dealing with input entered into FvwmPrompt, using shell.c.Args meant that the input had been parsed, which doesn't preserve quotes. Hence, the following: Exec exec xterm -T "Foo Bar" -e mc Was parsed as this: Exec exec xterm -T Fooo Bar -e mc Which is not the same thing. It turns out that ishell preserves the argument list in RawArgs in its context struct, so use this when parsing input from the user. Fixes #662
- Loading branch information