Source : function without any C++ hacks

Thanks, @faho
This commit is contained in:
Mahmoud Al-Qudsi 2018-03-15 18:18:57 -05:00
parent 5732aeac9a
commit 5a561bcfce
6 changed files with 11 additions and 17 deletions

View file

@ -105,6 +105,13 @@ if not contains -- $__fish_data_dir/completions $fish_complete_path
set fish_complete_path $fish_complete_path $__fish_data_dir/completions set fish_complete_path $fish_complete_path $__fish_data_dir/completions
end end
# : is a sh/bash-compatibility function, but because its name can cause problems on many
# systems, it is saved as colon.fish and not :.fish, which means that it's never autoloaded
# since the name of the file and the name of the function differ. Force evaluation of colon.fish
# as a function by simply trying to load the non-existent function colon, which will pull in
# colon.fish and lead to `:` being recognized. Sourced up here so it can be used later safely.
type -q colon; or true # just to reset $status
# #
# This is a Solaris-specific test to modify the PATH so that # This is a Solaris-specific test to modify the PATH so that
# Posix-conformant tools are used by default. It is separate from the # Posix-conformant tools are used by default. It is separate from the

View file

@ -746,12 +746,6 @@ static void setup_user(bool force) {
} }
} }
void misc_init_with_paths() {
// Since ':' can cause problems in filenames, the : function is saved to colon.fish
// But that means it isn't autoloaded since the name doesn't match the function.
bool loaded = function_load(L"colon");
}
/// Various things we need to initialize at run-time that don't really fit any of the other init /// Various things we need to initialize at run-time that don't really fit any of the other init
/// routines. /// routines.
void misc_init() { void misc_init() {
@ -769,7 +763,7 @@ void misc_init() {
// MS Windows tty devices do not currently have either a read or write timestamp. Those // MS Windows tty devices do not currently have either a read or write timestamp. Those
// respective fields of `struct stat` are always the current time. Which means we can't // respective fields of `struct stat` are always the current time. Which means we can't
// use them. So we assume no external program has written to the terminal behind our // use them. So we assume no external program has written to the terminal behind our
// back. This makes multiline prompt usable. See issue #2859 and // back. This makes multiline promptusable. See issue #2859 and
// https://github.com/Microsoft/BashOnWindows/issues/545 // https://github.com/Microsoft/BashOnWindows/issues/545
has_working_tty_timestamps = false; has_working_tty_timestamps = false;
#endif #endif

View file

@ -67,8 +67,6 @@ void env_init(const struct config_paths_t *paths = NULL);
/// Various things we need to initialize at run-time that don't really fit any of the other init /// Various things we need to initialize at run-time that don't really fit any of the other init
/// routines. /// routines.
void misc_init(); void misc_init();
/// Same as misc_init() but after configuration paths have been loaded
void misc_init_with_paths();
class env_var_t { class env_var_t {
private: private:

View file

@ -384,9 +384,6 @@ int main(int argc, char **argv) {
const io_chain_t empty_ios; const io_chain_t empty_ios;
if (read_init(paths)) { if (read_init(paths)) {
// Additional initialization that must occur after paths are loaded
misc_init_with_paths();
// Stomp the exit status of any initialization commands (issue #635). // Stomp the exit status of any initialization commands (issue #635).
proc_set_last_status(STATUS_CMD_OK); proc_set_last_status(STATUS_CMD_OK);

View file

@ -194,13 +194,11 @@ int function_exists(const wcstring &cmd) {
return loaded_functions.find(cmd) != loaded_functions.end(); return loaded_functions.find(cmd) != loaded_functions.end();
} }
bool function_load(const wcstring &cmd) { void function_load(const wcstring &cmd) {
if (!parser_keywords_is_reserved(cmd)) { if (!parser_keywords_is_reserved(cmd)) {
scoped_rlock locker(functions_lock); scoped_rlock locker(functions_lock);
return load(cmd) == 0; load(cmd);
} }
return false; //not loaded
} }
int function_exists_no_autoload(const wcstring &cmd, const env_vars_snapshot_t &vars) { int function_exists_no_autoload(const wcstring &cmd, const env_vars_snapshot_t &vars) {

View file

@ -74,7 +74,7 @@ void function_set_desc(const wcstring &name, const wcstring &desc);
int function_exists(const wcstring &name); int function_exists(const wcstring &name);
/// Attempts to load a function if not yet loaded. This is used by the completion machinery. /// Attempts to load a function if not yet loaded. This is used by the completion machinery.
bool function_load(const wcstring &name); void function_load(const wcstring &name);
/// Returns true if the function with the name name exists, without triggering autoload. /// Returns true if the function with the name name exists, without triggering autoload.
int function_exists_no_autoload(const wcstring &name, const env_vars_snapshot_t &vars); int function_exists_no_autoload(const wcstring &name, const env_vars_snapshot_t &vars);