comparison src/file-io.cc @ 9209:923c7cb7f13f

Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction. spellchecked all .txi and .texi files.
author Rik <rdrider0-list@yahoo.com>
date Sun, 17 May 2009 12:18:06 -0700
parents 51dc9691f23f
children c02224afead6
comparison
equal deleted inserted replaced
9208:cb163402bf79 9209:923c7cb7f13f
750 "-*- texinfo -*-\n\ 750 "-*- texinfo -*-\n\
751 @deftypefn {Built-in Function} {} fseek (@var{fid}, @var{offset}, @var{origin})\n\ 751 @deftypefn {Built-in Function} {} fseek (@var{fid}, @var{offset}, @var{origin})\n\
752 Set the file pointer to any location within the file @var{fid}.\n\ 752 Set the file pointer to any location within the file @var{fid}.\n\
753 \n\ 753 \n\
754 The pointer is positioned @var{offset} characters from the @var{origin},\n\ 754 The pointer is positioned @var{offset} characters from the @var{origin},\n\
755 which may be one of the predefined variables @code{SEEK_CUR} (current\n\ 755 which may be one of the predefined variables @w{@code{SEEK_CUR}} (current\n\
756 position), @code{SEEK_SET} (beginning), or @code{SEEK_END} (end of\n\ 756 position), @w{@code{SEEK_SET}} (beginning), or @w{@code{SEEK_END}} (end of\n\
757 file) or strings \"cof\", \"bof\" or \"eof\". If @var{origin} is omitted,\n\ 757 file) or strings \"cof\", \"bof\" or \"eof\". If @var{origin} is omitted,\n\
758 @code{SEEK_SET} is assumed. The offset must be zero, or a value returned\n\ 758 @w{@code{SEEK_SET}} is assumed. The offset must be zero, or a value returned\n\
759 by @code{ftell} (in which case @var{origin} must be @code{SEEK_SET}).\n\ 759 by @code{ftell} (in which case @var{origin} must be @w{@code{SEEK_SET}}).\n\
760 \n\ 760 \n\
761 Return 0 on success and -1 on error.\n\ 761 Return 0 on success and -1 on error.\n\
762 @seealso{ftell, fopen, fclose}\n\ 762 @seealso{ftell, fopen, fclose}\n\
763 @end deftypefn") 763 @end deftypefn")
764 { 764 {
1919 name created from @var{template}. The last six characters of @var{template}\n\ 1919 name created from @var{template}. The last six characters of @var{template}\n\
1920 must be @code{XXXXXX} and these are replaced with a string that makes the\n\ 1920 must be @code{XXXXXX} and these are replaced with a string that makes the\n\
1921 filename unique. The file is then created with mode read/write and\n\ 1921 filename unique. The file is then created with mode read/write and\n\
1922 permissions that are system dependent (on GNU/Linux systems, the permissions\n\ 1922 permissions that are system dependent (on GNU/Linux systems, the permissions\n\
1923 will be 0600 for versions of glibc 2.0.7 and later). The file is opened\n\ 1923 will be 0600 for versions of glibc 2.0.7 and later). The file is opened\n\
1924 with the @code{O_EXCL} flag.\n\ 1924 with the @w{@code{O_EXCL}} flag.\n\
1925 \n\ 1925 \n\
1926 If the optional argument @var{delete} is supplied and is true,\n\ 1926 If the optional argument @var{delete} is supplied and is true,\n\
1927 the file will be deleted automatically when Octave exits, or when\n\ 1927 the file will be deleted automatically when Octave exits, or when\n\
1928 the function @code{purge_tmp_files} is called.\n\ 1928 the function @code{purge_tmp_files} is called.\n\
1929 \n\ 1929 \n\