Fix two issues on OS X, a non-compatible use of the expr command and a bad init of a socket for the universal variable daemon

darcs-hash:20060109144418-ac50b-c6232eae5b964f66d0638289291340aa66cd5983.gz
This commit is contained in:
axel
2006-01-10 00:44:18 +10:00
parent ce689e69d5
commit ae511451fe
5 changed files with 7 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
function _contains_help -d "Helper function for contains"
set bullet \*
if expr match "$LANG" ".*UTF" >/dev/null
if expr "$LANG" : ".*UTF" >/dev/null
set bullet \u2022
end
@@ -677,7 +677,7 @@ end
function __fish_type_help -d "Help for the type shellscript function"
set bullet \*
if expr match "$LANG" ".*UTF" >/dev/null
if expr "$LANG" : ".*UTF" >/dev/null
set bullet \u2022
end