changeset 16346:fe112e09d799

doc: Replace \" with " in deprecated java m-files copied from C++ sources. scripts/deprecated/java_convert_matrix.m, scripts/deprecated/java_debug.m, scripts/deprecated/java_invoke.m, scripts/deprecated/java_unsigned_conversion.m: Replace \" with " in deprecated java m-files copied from C++ sources.
author Rik <rik@octave.org>
date Wed, 20 Mar 2013 14:10:48 -0700
parents 45916132522a
children bf8397caeff1
files scripts/deprecated/java_convert_matrix.m scripts/deprecated/java_debug.m scripts/deprecated/java_invoke.m scripts/deprecated/java_unsigned_conversion.m
diffstat 4 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/deprecated/java_convert_matrix.m	Wed Mar 20 14:06:42 2013 -0700
+++ b/scripts/deprecated/java_convert_matrix.m	Wed Mar 20 14:10:48 2013 -0700
@@ -19,11 +19,11 @@
 ## -*- texinfo -*-
 ## @deftypefn  {Built-in Function} {@var{val} =} java_convert_matrix ()
 ## @deftypefnx {Built-in Function} {@var{old_val} =} java_convert_matrix (@var{new_val})
-## @deftypefnx {Built-in Function} {} java_convert_matrix (@var{new_val}, \"local\")
+## @deftypefnx {Built-in Function} {} java_convert_matrix (@var{new_val}, "local")
 ## Query or set the internal variable that controls whether Java arrays are
 ## automatically converted to Octave matrices.  The default value is false.
 ## 
-## When called from inside a function with the \"local\" option, the variable is
+## When called from inside a function with the "local" option, the variable is
 ## changed locally for the function and any subroutines it calls.  The original
 ## variable value is restored when exiting the function.
 ## @seealso{java_matrix_autoconversion, java_unsigned_conversion, java_debug}
--- a/scripts/deprecated/java_debug.m	Wed Mar 20 14:06:42 2013 -0700
+++ b/scripts/deprecated/java_debug.m	Wed Mar 20 14:10:48 2013 -0700
@@ -19,12 +19,12 @@
 ## -*- texinfo -*-
 ## @deftypefn  {Built-in Function} {@var{val} =} java_debug ()
 ## @deftypefnx {Built-in Function} {@var{old_val} =} java_debug (@var{new_val})
-## @deftypefnx {Built-in Function} {} java_debug (@var{new_val}, \"local\")
+## @deftypefnx {Built-in Function} {} java_debug (@var{new_val}, "local")
 ## Query or set the internal variable that determines whether extra debugging
 ## information regarding the initialization of the JVM and any Java exceptions
 ## is printed.
 ## 
-## When called from inside a function with the \"local\" option, the variable is
+## When called from inside a function with the "local" option, the variable is
 ## changed locally for the function and any subroutines it calls.  The original
 ## variable value is restored when exiting the function.
 ## @seealso{debug_java, java_convert_matrix, java_unsigned_conversion}
--- a/scripts/deprecated/java_invoke.m	Wed Mar 20 14:06:42 2013 -0700
+++ b/scripts/deprecated/java_invoke.m	Wed Mar 20 14:10:48 2013 -0700
@@ -30,8 +30,8 @@
 ## 
 ## @example
 ## @group
-##   ret = java_invoke (x, \"method1\", 1.0, \"a string\")
-##   ret = x.method1 (1.0, \"a string\")
+##   ret = java_invoke (x, "method1", 1.0, "a string")
+##   ret = x.method1 (1.0, "a string")
 ## @end group
 ## @end example
 ## 
--- a/scripts/deprecated/java_unsigned_conversion.m	Wed Mar 20 14:06:42 2013 -0700
+++ b/scripts/deprecated/java_unsigned_conversion.m	Wed Mar 20 14:10:48 2013 -0700
@@ -19,13 +19,13 @@
 ## -*- texinfo -*-
 ## @deftypefn  {Built-in Function} {@var{val} =} java_unsigned_conversion ()
 ## @deftypefnx {Built-in Function} {@var{old_val} =} java_unsigned_conversion (@var{new_val})
-## @deftypefnx {Built-in Function} {} java_unsigned_conversion (@var{new_val}, \"local\")
+## @deftypefnx {Built-in Function} {} java_unsigned_conversion (@var{new_val}, "local")
 ## Query or set the internal variable that controls how integer classes are
 ## converted when Java matrix autoconversion is enabled.  When enabled, Java
 ## arrays of class Byte or Integer are converted to matrices of class uint8 or
 ## uint32 respectively.
 ## 
-## When called from inside a function with the \"local\" option, the variable is
+## When called from inside a function with the "local" option, the variable is
 ## changed locally for the function and any subroutines it calls.  The original
 ## variable value is restored when exiting the function.
 ## @seealso{java_unsigned_autoconversion, java_convert_matrix, debug_java}