diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1997-11-17 10:50:54 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1997-11-17 10:50:54 +0000 |
commit | 91ab2c359a3e219c9b764e2d8e6efd65b0290d9a (patch) | |
tree | 3d7c2d922a3b567aa8049468e62e01a2a161bbd4 /cad/kaskade/files/patch-bb | |
parent | Activate xinvest. (diff) |
Import kaskade port. kaskade is another Finite Element program
with an X interface.
PR: 4529
Submitted by: Pedro Giffuni <giffunip@asme.org>
Notes
Notes:
svn path=/head/; revision=8681
Diffstat (limited to 'cad/kaskade/files/patch-bb')
-rw-r--r-- | cad/kaskade/files/patch-bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/cad/kaskade/files/patch-bb b/cad/kaskade/files/patch-bb new file mode 100644 index 000000000000..8fa9bbaa29ff --- /dev/null +++ b/cad/kaskade/files/patch-bb @@ -0,0 +1,36 @@ +*** 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); } + } + //------------------------------------------------------------------------- |