diff --git a/libinterp/corefcn/compile.cc b/libinterp/corefcn/compile.cc index 2795100f84..7ab6442646 100644 --- a/libinterp/corefcn/compile.cc +++ b/libinterp/corefcn/compile.cc @@ -85,7 +85,7 @@ DEFUN (vm_clear_cache, , , doc: /* -*- texinfo -*- @deftypefn {} {@var{val} =} vm_clear_cache () -Internal function. +Clear the VM evaluator's internal cache. @end deftypefn */) { @@ -98,8 +98,6 @@ DEFUN (vm_print_trace, , , doc: /* -*- texinfo -*- @deftypefn {} {@var{prints_trace} =} vm_print_trace ()) -Internal function. - Print a debug trace from the VM. Toggles on or off each call. There has to be a breakpoint set in some file for the trace @@ -118,8 +116,6 @@ DEFUN (__ref_count__, args, , doc: /* -*- texinfo -*- @deftypefn {} {@var{count} =} __ref_count__ (@var{obj})) -Internal function. - Returns reference count for an object. @end deftypefn */) @@ -138,8 +134,6 @@ DEFMETHOD (vm_is_executing, interp, , , doc: /* -*- texinfo -*- @deftypefn {} {@var{is_executing} =} vm_is_executing ()) -Internal function. - Returns true if the VM is executing the function calling vm_is_executing (). False otherwise. @@ -168,8 +162,6 @@ DEFMETHOD (vm_profile, interp, args, , @deftypefnx {} {@var{T} =} vm_profile ("info") @deftypefnx {} {} vm_profile -Internal function. - Profile code running in the VM. @table @code @@ -277,8 +269,6 @@ DEFMETHOD (vm_print_bytecode, interp, args, , @deftypefn {} {@var{success} =} vm_print_bytecode (@var{fn_name})) @deftypefnx {} {@var{success} =} vm_print_bytecode (@var{fn_handle})) -Internal function. - Prints the bytecode of a function name or function handle, if any. @end deftypefn */) @@ -352,8 +342,6 @@ DEFMETHOD (vm_is_compiled, interp, args, , @deftypefn {} {@var{is_compiled} =} vm_is_compiled (@var{fn_name}) @deftypefnx {} {@var{is_compiled} =} vm_is_compiled (@var{fn_handle}) -Internal function. - Returns true if the specified function name or function handle is compiled. False otherwise. @@ -417,8 +405,6 @@ DEFMETHOD (vm_compile, interp, args, , @deftypefnx {} {@var{success} =} vm_compile (@var{fn_name}, "clear") @deftypefnx {} {@var{success} =} vm_compile (@var{fn_name}, "print") -Internal function. - Compile the specified function to bytecode. The compiled function and its subfunctions will be executed diff --git a/scripts/help/vm.m b/scripts/help/vm.m index 1e0e217976..768a4d4348 100644 --- a/scripts/help/vm.m +++ b/scripts/help/vm.m @@ -40,22 +40,22 @@ ## VM user function. Compile a specified function to bytecode. ## ## @item vm_clear_cache -## Internal function. Clear the cache of already-processed code. +## Clear the cache of already-processed code. ## ## @item vm_is_compiled -## VM internal function. Return true if the specified function is compiled. +## Return true if the specified function is compiled. ## ## @item vm_is_executing -## Internal function. Return true if the VM is executing. +## Return true if the VM is executing. ## ## @item vm_print_bytecode -## Internal function. Print bytecode of specified function. +## Print bytecode of specified function. ## ## @item vm_print_trace -## Internal function. Print a debug trace from the VM. +## Print a debug trace from the VM. ## ## @item vm_profile -## Internal function. Profile the code running in the VM. +## Profile the code running in the VM. ## ## @end table ##