From 5d7147e4efe5bfdfdc033b9f582476b2e949a0e3 Mon Sep 17 00:00:00 2001 From: Frank Terbeck Date: Thu, 31 Jan 2008 20:28:54 +0100 Subject: [PATCH] zshrc: fix breakage, which was revealed by a zsh v3.1.7 testrun With these changes, implementing issue389 actually make sense. --- etc/zsh/zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index fc1eedd..671e7c1 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -338,7 +338,7 @@ check_com -c dircolors && eval $(dircolors -b) if [[ -n "$BROKEN_COMPLETION_DIR" ]] ; then print 'Warning: not setting completion directories because broken files have been found.' >&2 else - [[ -d /etc/zsh/completion.d ]] && fpath+=( /etc/zsh/completion.d ) + [[ -d /etc/zsh/completion.d ]] && fpath=( $fpath /etc/zsh/completion.d ) if [[ -d /etc/zsh/functions.d ]] ; then fpath+=( /etc/zsh/functions.d ) for func in /etc/zsh/functions.d/[^_]*[^~] ; do @@ -1359,7 +1359,7 @@ fi # {{{ Use hard limits, except for a smaller stack and no core dumps unlimit -limit stack 8192 +is4 && limit stack 8192 isgrmlcd && limit core 0 # important for a live-cd-system limit -s # }}} -- 2.1.4