# HG changeset patch # User jwe # Date 1199478393 0 # Node ID 113fd59c0932022d55927ded75b3bc316bec9c3e # Parent 3093cb640697179a50d4ce85b951f5f6bc1d28b9 [3-0-0-branch @ 2008-01-04 20:26:32 by jwe] diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2008-01-04 Thomas Treichl + + * strings/strtrim.m: Doc fix. + 2008-01-02 John W. Eaton * plot/print.m: Correctly handle pbm terminal. diff --git a/scripts/strings/strtrim.m b/scripts/strings/strtrim.m --- a/scripts/strings/strtrim.m +++ b/scripts/strings/strtrim.m @@ -1,4 +1,4 @@ -## Copyright (C) 1996, 2007 Kurt Hornik +## Copyright (C) 1996, 2007, 2008 Kurt Hornik ## ## This file is part of Octave. ## @@ -16,11 +16,13 @@ ## along with Octave; see the file COPYING. If not, see ## . -## -*- texinfo -*- @deftypefn {Function File} {} deblank (@var{s}) +## -*- texinfo -*- +## @deftypefn {Function File} {} deblank (@var{s}) ## Remove leading and trailing blanks and nulls from @var{s}. If ## @var{s} is a matrix, @var{deblank} trims each row to the length of ## longest string. If @var{s} is a cell array, operate recursively on -## each element of the cell array. @end deftypefn +## each element of the cell array. +## @end deftypefn ## Author: John Swensen