agnoster: don't set LC_CTYPE

Thanks to the previous commit, this is not needed anymore. Moreover,
there is no guarantee that en_US.UTF-8 is available on the current
system.
This commit is contained in:
Vincent Bernat 2015-12-15 07:55:05 +01:00
parent 4e02a284eb
commit 2eab01aadd

View File

@ -32,20 +32,17 @@ CURRENT_BG='NONE'
# Special Powerline characters # Special Powerline characters
() { # NOTE: This segment separator character is correct. In 2012, Powerline changed
local LC_ALL="" LC_CTYPE="en_US.UTF-8" # the code points they use for their special characters. This is the new code point.
# NOTE: This segment separator character is correct. In 2012, Powerline changed # If this is not working for you, you probably have an old version of the
# the code points they use for their special characters. This is the new code point. # Powerline-patched fonts installed. Download and install the new version.
# If this is not working for you, you probably have an old version of the # Do not submit PRs to change this unless you have reviewed the Powerline code point
# Powerline-patched fonts installed. Download and install the new version. # history and have new information.
# Do not submit PRs to change this unless you have reviewed the Powerline code point # This is defined using a Unicode escape sequence so it is unambiguously readable, regardless of
# history and have new information. # what font the user is viewing this source code in. Do not replace the
# This is defined using a Unicode escape sequence so it is unambiguously readable, regardless of # escape sequence with a single literal character.
# what font the user is viewing this source code in. Do not replace the # Do not change this! Do not make it '\u2b80'; that is the old, wrong code point.
# escape sequence with a single literal character. SEGMENT_SEPARATOR=$'\ue0b0'
# Do not change this! Do not make it '\u2b80'; that is the old, wrong code point.
SEGMENT_SEPARATOR=$'\ue0b0'
}
# Begin a segment # Begin a segment
# Takes two arguments, background and foreground. Both can be omitted, # Takes two arguments, background and foreground. Both can be omitted,