aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-01-08 15:13:08 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-01-08 15:13:08 -0800
commitd69f408b14a267ff2968f21f24241cb3e87102de (patch)
treea471faba103bb913456f5ec7622b9c3952241328 /builtin.cpp
parente8d6c96c1e8f998b54b2f274399047086197b167 (diff)
Rename builtin parse to __fish_parse
Diffstat (limited to 'builtin.cpp')
-rw-r--r--builtin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin.cpp b/builtin.cpp
index 61f7ed8b..e475e777 100644
--- a/builtin.cpp
+++ b/builtin.cpp
@@ -4315,6 +4315,7 @@ int builtin_parse(parser_t &parser, wchar_t **argv)
static const builtin_data_t builtin_datas[]=
{
{ L"[", &builtin_test, N_(L"Test a condition") },
+ { L"__fish_parse", &builtin_parse, N_(L"Try out the new parser") },
{ L"and", &builtin_generic, N_(L"Execute command if previous command suceeded") },
{ L"begin", &builtin_begin, N_(L"Create a block of code") },
{ L"bg", &builtin_bg, N_(L"Send job to background") },
@@ -4346,7 +4347,6 @@ static const builtin_data_t builtin_datas[]=
{ L"jobs", &builtin_jobs, N_(L"Print currently running jobs") },
{ L"not", &builtin_generic, N_(L"Negate exit status of job") },
{ L"or", &builtin_generic, N_(L"Execute command if previous command failed") },
- { L"parse", &builtin_parse, N_(L"Try out the new parser") },
{ L"printf", &builtin_printf, N_(L"Prints formatted text") },
{ L"pwd", &builtin_pwd, N_(L"Print the working directory") },
{ L"random", &builtin_random, N_(L"Generate random number") },