From 4d1c0eaa5244905c72ef29496af42e2dbd5111e6 Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Thu, 21 Jun 2012 20:20:23 -0700 Subject: [PATCH] Fix var set in __fish_config_interactive.fish __fish_config_interactive.fish uses the presence of __fish_init_1_50_0 to decide whether it should perform a one-time initialization of universal variables. Unfortunately, it sets the variable __fish_init_1_23_0. Fix this to set __fish_init_1_50_0 instead. --- share/functions/__fish_config_interactive.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/__fish_config_interactive.fish b/share/functions/__fish_config_interactive.fish index 3c2c720a3..7b0cca367 100644 --- a/share/functions/__fish_config_interactive.fish +++ b/share/functions/__fish_config_interactive.fish @@ -83,7 +83,7 @@ function __fish_config_interactive -d "Initializations that should be performed set -l line2 (printf (_ 'Type %shelp%s for instructions on how to use fish') (set_color green) (set_color normal)) set -U fish_greeting $line1\n$line2 end - set -U __fish_init_1_23_0 + set -U __fish_init_1_50_0 # # Set various defaults using these throwaway functions