From 5c5a388ed7ec05d32c73991bc2fa385bf1090ab8 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 2 Jul 2009 13:46:36 +0000 Subject: 27087: change return codes from failed "." --- Src/zsh.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Src/zsh.h') diff --git a/Src/zsh.h b/Src/zsh.h index 87b561085..bd872a55a 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1730,10 +1730,10 @@ struct nameddir { enum source_return { /* Source ran OK */ SOURCE_OK = 0, - /* Internal error sourcing file */ - SOURCE_ERROR = 1, /* File not found */ - SOURCE_NOT_FOUND = 2 + SOURCE_NOT_FOUND = 1, + /* Internal error sourcing file */ + SOURCE_ERROR = 2 }; /***********************************/ -- cgit 1.4.1