]> andersk Git - moira.git/commitdiff
should accept \n or \r
authorjweiss <jweiss>
Tue, 4 Apr 1995 19:53:45 +0000 (19:53 +0000)
committerjweiss <jweiss>
Tue, 4 Apr 1995 19:53:45 +0000 (19:53 +0000)
clients/mailmaint/mailmaint.c

index 117942f8f9178d2a59a2e1772a3ceda1b7b0e2e9..fa1cb404476eca0ad17b6f8e3bb8964df6e6a1ce 100644 (file)
@@ -476,7 +476,7 @@ show_all()
     show_text(DISPROW, STARTCOL, "This function may take a \
 while... proceed? [y] ");
     c = getchar() & 0x7f;
-    if (c == 'y' || c == 'Y' || c == '\n') {
+    if (c == 'y' || c == 'Y' || c == '\n' || c == '\r') {
        move(DISPROW + 1, STARTCOL);
        addstr("Processing query...please hold");
        refresh();
This page took 0.040809 seconds and 5 git commands to generate.