Mercurial > hg > octave-lyh
comparison scripts/strings/untabify.m @ 11150:564e998017f5
docstring fixes
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 23 Oct 2010 03:33:25 -0400 |
parents | 965766039d93 |
children | b1f4bdc276b6 |
comparison
equal
deleted
inserted
replaced
11149:fe3c3dfc07eb | 11150:564e998017f5 |
---|---|
15 ## You should have received a copy of the GNU General Public License | 15 ## You should have received a copy of the GNU General Public License |
16 ## along with Octave; see the file COPYING. If not, see | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | 17 ## <http://www.gnu.org/licenses/>. |
18 | 18 |
19 ## -*- texinfo -*- | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function file} untabify (@var{t}) | 20 ## @deftypefn {Function file} {} untabify (@var{t}) |
21 ## @deftypefnx {Function file} untabify (@var{t}, @var{tw}) | 21 ## @deftypefnx {Function file} {} untabify (@var{t}, @var{tw}) |
22 ## @deftypefnx {Function file} untabify (@var{t}, @var{tw}, @var{deblank}) | 22 ## @deftypefnx {Function file} {} untabify (@var{t}, @var{tw}, @var{deblank}) |
23 ## Replace TAB characters in @var{t}, with spaces. | 23 ## Replace TAB characters in @var{t}, with spaces. |
24 ## The tab width is specified by @var{tw}, or defaults to eight. | 24 ## The tab width is specified by @var{tw}, or defaults to eight. |
25 ## The input, @var{t}, may be either a 2D character array, or a cell | 25 ## The input, @var{t}, may be either a 2D character array, or a cell |
26 ## array of character strings. The output is the same class | 26 ## array of character strings. The output is the same class |
27 ## as the input. | 27 ## as the input. |