changeset 20975:b4019ebd45c4

maint: move documentation-only scripts from miscellaneous/ to help/. * ans.m, comma.m, semicolon.m: Move from miscellaneous/ to help/. * scripts/help/module.mk: Add scripts to build system. * scripts/miscellaneous/module.mk: Remove scripts from build system.
author Rik <rik@octave.org>
date Wed, 23 Dec 2015 22:10:02 -0800
parents 1edf15793cac
children 0fd972b06a6f
files scripts/help/ans.m scripts/help/comma.m scripts/help/module.mk scripts/help/semicolon.m scripts/miscellaneous/ans.m scripts/miscellaneous/comma.m scripts/miscellaneous/module.mk scripts/miscellaneous/semicolon.m
diffstat 8 files changed, 96 insertions(+), 96 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/help/ans.m	Wed Dec 23 22:10:02 2015 -0800
@@ -0,0 +1,37 @@
+## Copyright (C) 2006-2015 John W. Eaton
+##
+## This file is part of Octave.
+##
+## Octave is free software; you can redistribute it and/or modify it
+## under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 3 of the License, or (at
+## your option) any later version.
+##
+## Octave is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with Octave; see the file COPYING.  If not, see
+## <http://www.gnu.org/licenses/>.
+
+## -*- texinfo -*-
+## @defvr {Automatic Variable} ans
+## The most recently computed result that was not explicitly assigned to a
+## variable.
+##
+## For example, after the expression
+##
+## @example
+## 3^2 + 4^2
+## @end example
+##
+## @noindent
+## is evaluated, the value returned by @code{ans} is 25.
+## @end defvr
+
+
+## Mark file as being tested.  No real test needed for a documentation .m file
+%!assert (1)
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/help/comma.m	Wed Dec 23 22:10:02 2015 -0800
@@ -0,0 +1,28 @@
+## Copyright (C) 1995-2015 John W. Eaton
+##
+## This file is part of Octave.
+##
+## Octave is free software; you can redistribute it and/or modify it
+## under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 3 of the License, or (at
+## your option) any later version.
+##
+## Octave is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with Octave; see the file COPYING.  If not, see
+## <http://www.gnu.org/licenses/>.
+
+## -*- texinfo -*-
+## @deftypefn {} {} ,
+## Array index, function argument, or command separator.
+## @seealso{semicolon}
+## @end deftypefn
+
+
+## Mark file as being tested.  No real test needed for a documentation .m file
+%!assert (1)
+
--- a/scripts/help/module.mk	Wed Dec 23 21:46:39 2015 -0800
+++ b/scripts/help/module.mk	Wed Dec 23 22:10:02 2015 -0800
@@ -10,12 +10,15 @@
   scripts/help/__gripe_missing_component__.m \
   scripts/help/__makeinfo__.m \
   scripts/help/__unimplemented__.m \
+  scripts/help/ans.m \
+  scripts/help/comma.m \
   scripts/help/doc.m \
   scripts/help/doc_cache_create.m \
   scripts/help/get_first_help_sentence.m \
   scripts/help/help.m \
   scripts/help/lookfor.m \
   scripts/help/print_usage.m \
+  scripts/help/semicolon.m \
   scripts/help/type.m \
   scripts/help/which.m
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scripts/help/semicolon.m	Wed Dec 23 22:10:02 2015 -0800
@@ -0,0 +1,28 @@
+## Copyright (C) 1995-2015 John W. Eaton
+##
+## This file is part of Octave.
+##
+## Octave is free software; you can redistribute it and/or modify it
+## under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 3 of the License, or (at
+## your option) any later version.
+##
+## Octave is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with Octave; see the file COPYING.  If not, see
+## <http://www.gnu.org/licenses/>.
+
+## -*- texinfo -*-
+## @deftypefn {} {} ;
+## Array row or command separator.
+## @seealso{comma}
+## @end deftypefn
+
+
+## Mark file as being tested.  No real test needed for a documentation .m file
+%!assert (1)
+
--- a/scripts/miscellaneous/ans.m	Wed Dec 23 21:46:39 2015 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,37 +0,0 @@
-## Copyright (C) 2006-2015 John W. Eaton
-##
-## This file is part of Octave.
-##
-## Octave is free software; you can redistribute it and/or modify it
-## under the terms of the GNU General Public License as published by
-## the Free Software Foundation; either version 3 of the License, or (at
-## your option) any later version.
-##
-## Octave is distributed in the hope that it will be useful, but
-## WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-## General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with Octave; see the file COPYING.  If not, see
-## <http://www.gnu.org/licenses/>.
-
-## -*- texinfo -*-
-## @defvr {Automatic Variable} ans
-## The most recently computed result that was not explicitly assigned to a
-## variable.
-##
-## For example, after the expression
-##
-## @example
-## 3^2 + 4^2
-## @end example
-##
-## @noindent
-## is evaluated, the value returned by @code{ans} is 25.
-## @end defvr
-
-
-## Mark file as being tested.  No real test needed for a documentation .m file
-%!assert (1)
-
--- a/scripts/miscellaneous/comma.m	Wed Dec 23 21:46:39 2015 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-## Copyright (C) 1995-2015 John W. Eaton
-##
-## This file is part of Octave.
-##
-## Octave is free software; you can redistribute it and/or modify it
-## under the terms of the GNU General Public License as published by
-## the Free Software Foundation; either version 3 of the License, or (at
-## your option) any later version.
-##
-## Octave is distributed in the hope that it will be useful, but
-## WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-## General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with Octave; see the file COPYING.  If not, see
-## <http://www.gnu.org/licenses/>.
-
-## -*- texinfo -*-
-## @deftypefn {} {} ,
-## Array index, function argument, or command separator.
-## @seealso{semicolon}
-## @end deftypefn
-
-
-## Mark file as being tested.  No real test needed for a documentation .m file
-%!assert (1)
-
--- a/scripts/miscellaneous/module.mk	Wed Dec 23 21:46:39 2015 -0800
+++ b/scripts/miscellaneous/module.mk	Wed Dec 23 22:10:02 2015 -0800
@@ -8,13 +8,11 @@
   scripts/miscellaneous/private/__xzip__.m
 
 scripts_miscellaneous_FCN_FILES = \
-  scripts/miscellaneous/ans.m \
   scripts/miscellaneous/bug_report.m \
   scripts/miscellaneous/bunzip2.m \
   scripts/miscellaneous/bzip2.m \
   scripts/miscellaneous/cast.m \
   scripts/miscellaneous/citation.m \
-  scripts/miscellaneous/comma.m \
   scripts/miscellaneous/compare_versions.m \
   scripts/miscellaneous/computer.m \
   scripts/miscellaneous/copyfile.m \
@@ -62,7 +60,6 @@
   scripts/miscellaneous/recycle.m \
   scripts/miscellaneous/rmappdata.m \
   scripts/miscellaneous/run.m \
-  scripts/miscellaneous/semicolon.m \
   scripts/miscellaneous/setappdata.m \
   scripts/miscellaneous/setfield.m \
   scripts/miscellaneous/substruct.m \
--- a/scripts/miscellaneous/semicolon.m	Wed Dec 23 21:46:39 2015 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-## Copyright (C) 1995-2015 John W. Eaton
-##
-## This file is part of Octave.
-##
-## Octave is free software; you can redistribute it and/or modify it
-## under the terms of the GNU General Public License as published by
-## the Free Software Foundation; either version 3 of the License, or (at
-## your option) any later version.
-##
-## Octave is distributed in the hope that it will be useful, but
-## WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-## General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with Octave; see the file COPYING.  If not, see
-## <http://www.gnu.org/licenses/>.
-
-## -*- texinfo -*-
-## @deftypefn {} {} ;
-## Array row or command separator.
-## @seealso{comma}
-## @end deftypefn
-
-
-## Mark file as being tested.  No real test needed for a documentation .m file
-%!assert (1)
-