Imported Debian patch 0.1beta-15
[debian/yforth] / coree.c
diff --git a/coree.c b/coree.c
index 8acd70811d667963a5f1b50b44bb2bdc30800e06..5d160e0fa5a3741c77581774a245f62a525a44a5 100644 (file)
--- a/coree.c
+++ b/coree.c
@@ -159,15 +159,16 @@ void _nip() {
 }
 
 void _parse() {
-       register Char delim = (Char) *sp;
+    register Char delim = (Char) *sp;
     register Char *orig = &_input_buffer[_to_in];
     register int i = 0;
     while (_to_in < _in_input_buffer && _input_buffer[_to_in] != delim) {
         _to_in++;
         i++;
     }
-       *sp = (Cell) orig;
+    *sp = (Cell)orig;
     *--sp = i;
+
     if (_to_in < _in_input_buffer) _to_in++;
 }