aboutsummaryrefslogtreecommitdiffhomepage
path: root/complete.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-12-08 21:41:38 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-12-08 21:41:38 -0800
commit6a8219a02e8017ffd39437dc830d0422dc3472a6 (patch)
treefb97baa1a44b85f182b46cfa3befac6950426830 /complete.cpp
parentc8f7d33a9a6205ebf3ed8fe2a24836325b80f96c (diff)
Remove Python dependency from Makefile and Xcode build
Diffstat (limited to 'complete.cpp')
-rw-r--r--complete.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/complete.cpp b/complete.cpp
index 22b23973..36733697 100644
--- a/complete.cpp
+++ b/complete.cpp
@@ -44,7 +44,6 @@
#include "parser_keywords.h"
#include "wutil.h"
#include "path.h"
-#include "builtin_scripts.h"
/*
Completion description strings, mostly for different types of files, such as sockets, block devices, etc.
@@ -419,9 +418,7 @@ public:
static completion_autoload_t completion_autoloader;
/** Constructor */
-completion_autoload_t::completion_autoload_t() : autoload_t(L"fish_complete_path",
- internal_completion_scripts,
- sizeof internal_completion_scripts / sizeof *internal_completion_scripts)
+completion_autoload_t::completion_autoload_t() : autoload_t(L"fish_complete_path", NULL, 0)
{
}