aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-05-02 21:35:49 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2015-05-02 21:35:49 -0700
commit96dfd27725e1c1dd537bb9bd6fefafb7b832e7bd (patch)
treed11ab1bfaf795607fc29b12c0fca252b00124a1d /builtin.cpp
parent905d8b2aa567f5e876af9eb227f61d3794e506e8 (diff)
Disable __fish_parse for 2.2 release
Fixes #1809
Diffstat (limited to 'builtin.cpp')
-rw-r--r--builtin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin.cpp b/builtin.cpp
index c5e8e46f..71ba8a32 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") },