]> git.pond.sub.org Git - empserver/commitdiff
The revision before the previous one is wrong, back it out.
authorMarkus Armbruster <armbru@pond.sub.org>
Sun, 26 Mar 2006 17:33:46 +0000 (17:33 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Sun, 26 Mar 2006 17:33:46 +0000 (17:33 +0000)
src/lib/commands/edit.c

index f49f0c4e91e4afa3c4511f45c1ce94315b2ae7b7..ec6f45c238285237646973ac679cb6ff3ae55f3c 100644 (file)
@@ -464,13 +464,13 @@ getin(s_char **what, s_char **p, int *arg, s_char *buf)
     if (**what == '\0')
        return END;
     while (**what && isspace(**what))
-       *what++;
+       (*what)++;
     if (**what == '\0')
        return RET_SYN;
-    for (*p = *what; **p && !isspace(**p); *p++)       /* skip non spaces */
+    for (*p = *what; **p && !isspace(**p); (*p)++)     /* skip non spaces */
        continue;
     while (**p && isspace(**p))
-       *p++;
+       (*p)++;
     if (**p == '\0')
        return RET_SYN;
     *arg = atoi(*p);