Imported from ../bash-2.05a.tar.gz.
[platform/upstream/bash.git] / builtins / break.def
index d996536..e90a32b 100644 (file)
@@ -40,8 +40,9 @@ $END
 #include "common.h"
 
 extern char *this_command_name;
+extern int posixly_correct;
 
-static int check_loop_level ();
+static int check_loop_level __P((void));
 
 /* The depth of while's and until's. */
 int loop_level = 0;
@@ -58,10 +59,10 @@ int
 break_builtin (list)
      WORD_LIST *list;
 {
-  int newbreak;
+  long newbreak;
 
   if (check_loop_level () == 0)
-    return (EXECUTION_FAILURE);
+    return (EXECUTION_SUCCESS);
 
   newbreak = get_numeric_arg (list, 1);
 
@@ -93,10 +94,10 @@ int
 continue_builtin (list)
      WORD_LIST *list;
 {
-  int newcont;
+  long newcont;
 
   if (check_loop_level () == 0)
-    return (EXECUTION_FAILURE);
+    return (EXECUTION_SUCCESS);
 
   newcont = get_numeric_arg (list, 1);
 
@@ -121,7 +122,7 @@ static int
 check_loop_level ()
 {
 #if defined (BREAK_COMPLAINS)
-  if (loop_level == 0)
+  if (loop_level == 0 && posixly_correct == 0)
     builtin_error ("only meaningful in a `for', `while', or `until' loop");
 #endif /* BREAK_COMPLAINS */