home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!cs.utexas.edu!asuvax!ncar!noao!arizona!mcbride
- From: mcbride@cs.arizona.edu (Chris M. McBride)
- Newsgroups: comp.sys.cbm
- Subject: Re: 2 Q's: BMI & SAVE@
- Message-ID: <30370@optima.cs.arizona.edu>
- Date: 23 Jan 93 08:26:05 GMT
- References: <1993Jan17.192438.12044@netcom.com> <C17In9.28u@fulcrum.co.uk> <1993Jan22.062624.23025@netcom.com>
- Sender: news@cs.arizona.edu
- Organization: U of Arizona CS Dept, Tucson
- Lines: 24
-
- In article <1993Jan22.062624.23025@netcom.com> fuzzy@netcom.com (Fuzzy Fox) writes:
- >srowe@fulcrum.co.uk (Simon Rowe) writes:
- >
- >>Could someone post the patch to fix the "@:fname" bug (if it is fairly short).
- >
- >OPEN 15,8,15,"S0:fname" : CLOSE 15
- >SAVE "fname",8
- >
-
- Well This is the reason doing a simple scratch and save DOESN'T work.
- If you don't want this nasty bug to appear, you should ALWAYS use a
- "0:" in EVERY I mean EVERY command. In order for the above 'patch' to
- work correctly it should read:
-
- open 15,8,15,"s0:fname" : close15
- save "0:fname",8
-
- Even when you issue commands like Initialize you should still use 0:
- ie "I0:" instead of just "I"...
-
- Chris
-
-
-
-