summaryrefslogtreecommitdiff
path: root/math/kaskade/files/patch-bb
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-07-21 18:15:36 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-07-21 18:15:36 +0000
commit70f89778c0f2f76bc2f8046e99cc55f2962ac9c2 (patch)
tree14c35099cfb4f4257c5e0b8e589d530fcb829468 /math/kaskade/files/patch-bb
parentFix typo. (ghostscript55htff -> ghostscript55httf) (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_1_0'.release/4.1.0
Notes
Notes: svn path=/head/; revision=30942 svn path=/tags/RELEASE_4_1_0/; revision=30943; tag=release/4.1.0
Diffstat (limited to 'math/kaskade/files/patch-bb')
-rw-r--r--math/kaskade/files/patch-bb36
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); }
- }
- //-------------------------------------------------------------------------