annotate scripts/miscellaneous/isdeployed.m @ 16491:b10a23fe80bb

doc: Tweak docstrings of functions changed for Texinfo 5.0 compatibility. * scripts/audio/wavread.m, scripts/miscellaneous/getappdata.m, scripts/miscellaneous/license.m, scripts/miscellaneous/ver.m, scripts/plot/daspect.m, scripts/plot/graphics_toolkit.m, scripts/plot/pbaspect.m, scripts/polynomial/splinefit.m, scripts/set/union.m, scripts/signal/freqz.m: Improve docstring wording.
author Rik <rik@octave.org>
date Wed, 10 Apr 2013 22:43:30 -0700
parents f3d52523cde1
children 1c89599167a6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14138
72c96de7a403 maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents: 11559
diff changeset
1 ## Copyright (C) 2012 John W. Eaton
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 ##
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 ## This file is part of Octave.
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 ##
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 ## under the terms of the GNU General Public License as published by
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 ## your option) any later version.
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 ##
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 ## General Public License for more details.
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 ##
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 ## You should have received a copy of the GNU General Public License
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 ## <http://www.gnu.org/licenses/>.
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 ## -*- texinfo -*-
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 ## @deftypefn {Function File} {} isdeployed ()
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 ## Return true if the current program has been compiled and is running
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 ## separately from the Octave interpreter and false if it is running in
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 ## the Octave interpreter. Currently, this function always returns
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 ## false in Octave.
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 ## @end deftypefn
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 function retval = isdeployed ()
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 retval = false;
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 endfunction
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
31
11559
26a6435857bc provide isdeployed function
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 %!assert (isdeployed (), false)