From 96dfd27725e1c1dd537bb9bd6fefafb7b832e7bd Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 2 May 2015 21:35:49 -0700 Subject: [PATCH] Disable __fish_parse for 2.2 release Fixes #1809 --- builtin.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin.cpp b/builtin.cpp index c5e8e46f9..71ba8a326 100644 --- a/builtin.cpp +++ b/builtin.cpp @@ -4067,7 +4067,9 @@ int builtin_false(parser_t &parser, wchar_t **argv) static const builtin_data_t builtin_datas[]= { { L"[", &builtin_test, N_(L"Test a condition") }, +#if 0 { L"__fish_parse", &builtin_parse, N_(L"Try out the new parser") }, +#endif { L"and", &builtin_generic, N_(L"Execute command if previous command suceeded") }, { L"begin", &builtin_generic, N_(L"Create a block of code") }, { L"bg", &builtin_bg, N_(L"Send job to background") },