ash: only catch unexpected exceptions in PS1 expansion
authorRon Yorston <rmy@pobox.com>
Mon, 29 Jul 2019 08:51:14 +0000 (09:51 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Mon, 21 Oct 2019 14:54:40 +0000 (16:54 +0200)
commitc88d3ec458e66d8c25af81ae7b2044933c069563
treebe49ed455212436c9c74e1152905171a5922211a
parent0f1369f0c5b6f0570208f9e5b5cec2b860f23088
ash: only catch unexpected exceptions in PS1 expansion

Commit d1a2fa2a4 (ash: catch error in arithmetic expansion in PS1)
catches all exceptions raised by expandarg().  Some exceptions, such as
the EXEXIT raised when command expansion is used, are expected:

   export PS1='$(echo "$ ")'

These should be processed normally or the shell hangs at the prompt.

function                                             old     new   delta
expandstr                                            344     353      +9
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/0 up/down: 9/0)                 Total: 9 bytes

Signed-off-by: Ron Yorston <rmy@pobox.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c