annotate scripts/deprecated/paren.m @ 22227:ab139f0733b9

Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349). * help.m (help, do_list_operators): State that quotes are required. * comma.m, paren.m, semicolon.m: Move do deprecated/ directory from help directory. * scripts/deprecated/module.mk: Add comma.m, paren.m, semicolon.m to deprecated directory. * scripts/help/module.mk: Remove comma.m, paren.m, semicolon.m from help directory.
author Lachlan Andrew <lachlanbis@gmail.com>
date Sun, 12 Jun 2016 19:38:22 +1000
parents
children bac0d6f07a3e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22227
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
1 ## Copyright (C) 1996-2015 John W. Eaton
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
2 ##
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
3 ## This file is part of Octave.
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
4 ##
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
6 ## under the terms of the GNU General Public License as published by
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
8 ## your option) any later version.
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
9 ##
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
13 ## General Public License for more details.
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
14 ##
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
15 ## You should have received a copy of the GNU General Public License
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
17 ## <http://www.gnu.org/licenses/>.
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
18
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
19 ## -*- texinfo -*-
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
20 ## @deftypefn {} {} (
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
21 ## @deftypefnx {} {} )
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
22 ## Array index or function argument delimeter.
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
23 ## @end deftypefn
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
24
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
25
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
26 ## Mark file as being tested. No real test needed for a documentation .m file
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
27 %!assert (1)
ab139f0733b9 Document that "help OPERATOR" needs quotes around OPERATOR (bug #39349).
Lachlan Andrew <lachlanbis@gmail.com>
parents:
diff changeset
28