Mercurial > hg > octave-lyh
comparison scripts/io/textscan.m @ 11589:b0084095098e
missing semicolons in script files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 18:26:09 -0500 |
parents | 3c6e8aaa9555 |
children | d0b799dafede |
comparison
equal
deleted
inserted
replaced
11588:d5bd2766c640 | 11589:b0084095098e |
---|---|
75 | 75 |
76 if (isa (fid, "double") && fid > 0 || ischar (fid)) | 76 if (isa (fid, "double") && fid > 0 || ischar (fid)) |
77 if (ischar (format)) | 77 if (ischar (format)) |
78 if (ischar (fid)) | 78 if (ischar (fid)) |
79 if (nargout == 2) | 79 if (nargout == 2) |
80 error ("textscan: cannot provide position information for character input") | 80 error ("textscan: cannot provide position information for character input"); |
81 endif | 81 endif |
82 str = fid; | 82 str = fid; |
83 else | 83 else |
84 ## Maybe skip header lines | 84 ## Maybe skip header lines |
85 headerlines = find (strcmpi (args, "headerlines"), 1); | 85 headerlines = find (strcmpi (args, "headerlines"), 1); |