- Timestamp:
- Nov 24, 2007, 6:31:15 PM (17 years ago)
- File:
-
- 1 edited
-
branches/working-0711/ccl/level-1/l1-sysio.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0711/ccl/level-1/l1-sysio.lisp
r7341 r7734 514 514 (file-octet-filepos file-ioblock)))) 515 515 (unless (eql newpos curpos) 516 ( break"Expected newpos to be ~d, fd is at ~d" newpos curpos))516 (error "Expected newpos to be ~d, fd is at ~d" newpos curpos)) 517 517 (setf (file-ioblock-octet-pos file-ioblock) newpos) 518 518 (fd-stream-advance stream file-ioblock read-p))) … … 529 529 (fd-stream-force-output stream file-ioblock count nil)) 530 530 (unless (eql newpos (file-octet-filepos file-ioblock)) 531 ( break"Expected newpos to be ~d, fd is at ~d"531 (error "Expected newpos to be ~d, fd is at ~d" 532 532 newpos (file-octet-filepos file-ioblock))) 533 533 (setf (file-ioblock-octet-pos file-ioblock) newpos) … … 539 539 (let* ((curpos (file-ioblock-octet-pos file-ioblock))) 540 540 (unless (eql curpos (file-octet-filepos file-ioblock)) 541 ( break"Expected newpos to be ~d, fd is at ~d"541 (error "Expected newpos to be ~d, fd is at ~d" 542 542 curpos (file-octet-filepos file-ioblock))) 543 543 (let* ((n (fd-stream-force-output stream file-ioblock count finish-p)))
Note:
See TracChangeset
for help on using the changeset viewer.
