mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
Make CALL_STACK_LIMIT_EXCEEDED_ERR_MSG
more generic
We're now using this when a stack overflow is detected during eval/substitution loops, too.
This commit is contained in:
parent
175caab583
commit
21599a49ea
|
@ -220,8 +220,7 @@ enum class pipeline_position_t : uint8_t {
|
||||||
|
|
||||||
/// Error message on reaching maximum call stack depth.
|
/// Error message on reaching maximum call stack depth.
|
||||||
#define CALL_STACK_LIMIT_EXCEEDED_ERR_MSG \
|
#define CALL_STACK_LIMIT_EXCEEDED_ERR_MSG \
|
||||||
_(L"The function call stack limit has been exceeded. Do you have an accidental infinite " \
|
_(L"The call stack limit has been exceeded. Do you have an accidental infinite loop?")
|
||||||
L"loop?")
|
|
||||||
|
|
||||||
/// Error message when encountering an unknown builtin name.
|
/// Error message when encountering an unknown builtin name.
|
||||||
#define UNKNOWN_BUILTIN_ERR_MSG _(L"Unknown builtin '%ls'")
|
#define UNKNOWN_BUILTIN_ERR_MSG _(L"Unknown builtin '%ls'")
|
||||||
|
|
|
@ -13,7 +13,7 @@ end
|
||||||
|
|
||||||
left
|
left
|
||||||
|
|
||||||
#CHECKERR: {{.*}} The function call stack limit has been exceeded. {{.*}}
|
#CHECKERR: {{.*}} The call stack limit has been exceeded. {{.*}}
|
||||||
#CHECKERR: {{.*}}
|
#CHECKERR: {{.*}}
|
||||||
#CHECKERR: {{.*}}
|
#CHECKERR: {{.*}}
|
||||||
#CHECKERR: {{.*}}
|
#CHECKERR: {{.*}}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user