Mercurial > hg > octave-lyh
changeset 11603:113fd59c0932 release-3-0-x
[3-0-0-branch @ 2008-01-04 20:26:32 by jwe]
author | jwe |
---|---|
date | Fri, 04 Jan 2008 20:26:33 +0000 |
parents | 3093cb640697 |
children | 4c9677b526b1 |
files | scripts/ChangeLog scripts/strings/strtrim.m |
diffstat | 2 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2008-01-04 Thomas Treichl <Thomas.Treichl@gmx.net> + + * strings/strtrim.m: Doc fix. + 2008-01-02 John W. Eaton <jwe@octave.org> * plot/print.m: Correctly handle pbm terminal.
--- 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 ## <http://www.gnu.org/licenses/>. -## -*- 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 <jpswensen@jhu.edu>