diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-09-23 01:36:53 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-09-23 01:36:53 +0000 |
commit | 8c7499bdfa85657ea6c2517ada0ef4a4db489beb (patch) | |
tree | 1c37a6088704b234484b1352cd1f882fb2a253ad /math/kaskade/files/patch-bb | |
parent | Catch up with Wnn6-lib update. (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_1'.release/4.1.1
Diffstat (limited to 'math/kaskade/files/patch-bb')
-rw-r--r-- | math/kaskade/files/patch-bb | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/math/kaskade/files/patch-bb b/math/kaskade/files/patch-bb deleted file mode 100644 index 8fa9bbaa29ff..000000000000 --- a/math/kaskade/files/patch-bb +++ /dev/null @@ -1,36 +0,0 @@ -*** kaskade.cc.orig Wed Jul 9 14:06:44 1997 ---- kaskade.cc Wed Jul 9 14:09:41 1997 -*************** -*** 101,107 **** - if (Continue == True) return noPicture; - if (!Cmd.isTrue("pause")) { Continue = True; return noPicture; } - -! char s[5]; cout << " <CR>"; cout.flush(); gets(s); strToLower(s); - if (strchr(s,'q') || strchr(s,'e')) { cout << "\nEXIT FORCED\n"; exit(1); } - if (strchr(s,'c') || strchr(s,'g')) { Continue = True; return noPicture; } - if (strchr(s,'p') || strchr(s,'P')) { return picture; } ---- 101,107 ---- - if (Continue == True) return noPicture; - if (!Cmd.isTrue("pause")) { Continue = True; return noPicture; } - -! char s[5]; cout << " <CR>"; cout.flush(); fgets(s,256,stdin); strToLower(s); - if (strchr(s,'q') || strchr(s,'e')) { cout << "\nEXIT FORCED\n"; exit(1); } - if (strchr(s,'c') || strchr(s,'g')) { Continue = True; return noPicture; } - if (strchr(s,'p') || strchr(s,'P')) { return picture; } -*************** -*** 110,116 **** - - void PauseAnyWay() - { -! char s[5]; cout << " <CR>"; cout.flush(); gets(s); strToLower(s); - if (strchr(s,'q') || strchr(s,'e')) { cout << "\nExit forced\n"; exit(1); } - } - //------------------------------------------------------------------------- ---- 110,116 ---- - - void PauseAnyWay() - { -! char s[5]; cout << " <CR>"; cout.flush(); fgets(s,256,stdin); strToLower(s); - if (strchr(s,'q') || strchr(s,'e')) { cout << "\nExit forced\n"; exit(1); } - } - //------------------------------------------------------------------------- |