about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2009-07-02 13:46:36 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2009-07-02 13:46:36 +0000
commit5c5a388ed7ec05d32c73991bc2fa385bf1090ab8 (patch)
treed959af7afb2d343dc6444bfdc5bcbe2dcc7bb742 /Src/zsh.h
parent7a1f580c036741585368086163ec24607c72c3a8 (diff)
downloadzsh-5c5a388ed7ec05d32c73991bc2fa385bf1090ab8.tar.gz
zsh-5c5a388ed7ec05d32c73991bc2fa385bf1090ab8.tar.xz
zsh-5c5a388ed7ec05d32c73991bc2fa385bf1090ab8.zip
27087: change return codes from failed "."
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h6
1 files changed, 3 insertions, 3 deletions
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
 };
 
 /***********************************/