Revert "Changed _alias to alias_no_errors"

This reverts commit dba367d7f1.
This commit is contained in:
Nathan Broadbent
2012-08-21 14:02:00 +12:00
parent 584b211a4a
commit 75e9a909a5
3 changed files with 12 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ enable_nullglob() { if [ $shell = "zsh" ]; then setopt NULL_GLOB; else shopt
disable_nullglob() { if [ $shell = "zsh" ]; then unsetopt NULL_GLOB; else shopt -u nullglob; fi; }
# Alias wrapper that ignores errors if alias is not defined.
alias_no_errors(){ alias "$@" 2> /dev/null; }
_alias(){ alias "$@" 2> /dev/null; }
# Updates SCM Breeze from GitHub.