# HG changeset patch # User John W. Eaton # Date 1386014245 18000 # Node ID 62f94ef938b48a1e477fa7bc3e781aecb61e21b4 # Parent 708173343c5059201b7ec7bdbd44aa5fee519f21 don't use period after end of @seealso{...} * file-io.cc (FSEEK_CUR, FSEEK_END): Don't use period after @seealso in doc string. diff -r 708173343c50 -r 62f94ef938b4 libinterp/corefcn/file-io.cc --- a/libinterp/corefcn/file-io.cc Mon Dec 02 12:05:14 2013 -0500 +++ b/libinterp/corefcn/file-io.cc Mon Dec 02 14:57:25 2013 -0500 @@ -2222,7 +2222,7 @@ @deftypefn {Built-in Function} {} SEEK_CUR ()\n\ Return the numerical value to pass to @code{fseek} to\n\ position the file pointer relative to the current position.\n\ -@seealso{SEEK_SET, SEEK_END}.\n\ +@seealso{SEEK_SET, SEEK_END}\n\ @end deftypefn") { return const_value ("SEEK_CUR", args, 0); @@ -2233,7 +2233,7 @@ @deftypefn {Built-in Function} {} SEEK_END ()\n\ Return the numerical value to pass to @code{fseek} to\n\ position the file pointer relative to the end of the file.\n\ -@seealso{SEEK_SET, SEEK_CUR}.\n\ +@seealso{SEEK_SET, SEEK_CUR}\n\ @end deftypefn") { return const_value ("SEEK_END", args, 1);