Navigation

Operators and Keywords

Function List:

C++ API

: val = missing_component_hook ()
: old_val = missing_component_hook (new_val)
: missing_component_hook (new_val, "local")

Query or set the internal variable that specifies the function to call when a component of Octave is missing.

This can be useful for packagers that may split the Octave installation into multiple sub-packages, for example, to provide a hint to users for how to install the missing components.

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.

The hook function is expected to be of the form

fcn (component)

Octave will call fcn with the name of the function that requires the component and a string describing the missing component. The hook function should return an error message to be displayed.

See also: missing_function_hook.

Package: octave