comparison libinterp/corefcn/load-save.cc @ 30329:81d26e8481a6

maint: Shorten @seealso lines to less than 80 characters (bug #57599) * chol.cc, data.cc, debug.cc, file-io.cc, load-save.cc, oct-hist.cc, pr-output.cc, sparse.cc, syscalls.cc, time.cc, utils.cc, ov-struct.cc, base64decode.m, base64encode.m, getappdata.m, isappdata.m, setappdata.m, colormap.m, isdir.m, cast.m, getfield.m, isfile.m, isfolder.m, setfield.m, contour.m, contour3.m, contourf.m, ezplot.m, isosurface.m, mesh.m, meshc.m, meshz.m, plot.m, surf.m, surfc.m, waterfall.m, movmad.m, movmax.m, movmean.m, movmedian.m, movmin.m, movprod.m, movstd.m, movsum.m, movvar.m: Shorten @seealso lines to less than 80 characters.
author Rik <rik@octave.org>
date Tue, 23 Nov 2021 11:26:38 -0800
parents a4061ae5ff79
children 91c6288781ba 796f54d4ddbf
comparison
equal deleted inserted replaced
30328:a2397a85d7e5 30329:81d26e8481a6
1803 @end example 1803 @end example
1804 1804
1805 @noindent 1805 @noindent
1806 saves the variable @samp{a} and all variables beginning with @samp{b} to the 1806 saves the variable @samp{a} and all variables beginning with @samp{b} to the
1807 file @file{data} in Octave's binary format. 1807 file @file{data} in Octave's binary format.
1808 @seealso{load, save_default_options, save_header_format_string, save_precision, dlmread, csvread, fread} 1808 @seealso{load, save_default_options, save_header_format_string, save_precision,
1809 dlmread, csvread, fread}
1809 @end deftypefn */) 1810 @end deftypefn */)
1810 { 1811 {
1811 load_save_system& load_save_sys = interp.get_load_save_system (); 1812 load_save_system& load_save_sys = interp.get_load_save_system ();
1812 1813
1813 return load_save_sys.save (args, nargout); 1814 return load_save_sys.save (args, nargout);
1920 crashes or receives a hangup, terminate or similar signal. 1921 crashes or receives a hangup, terminate or similar signal.
1921 1922
1922 When called from inside a function with the @qcode{"local"} option, the 1923 When called from inside a function with the @qcode{"local"} option, the
1923 variable is changed locally for the function and any subroutines it calls. 1924 variable is changed locally for the function and any subroutines it calls.
1924 The original variable value is restored when exiting the function. 1925 The original variable value is restored when exiting the function.
1925 @seealso{octave_core_file_limit, octave_core_file_name, octave_core_file_options} 1926 @seealso{octave_core_file_limit, octave_core_file_name,
1927 octave_core_file_options}
1926 @end deftypefn */) 1928 @end deftypefn */)
1927 { 1929 {
1928 load_save_system& load_save_sys = interp.get_load_save_system (); 1930 load_save_system& load_save_sys = interp.get_load_save_system ();
1929 1931
1930 return load_save_sys.crash_dumps_octave_core (args, nargout); 1932 return load_save_sys.crash_dumps_octave_core (args, nargout);
1970 the limit. The default value is -1 (unlimited). 1972 the limit. The default value is -1 (unlimited).
1971 1973
1972 When called from inside a function with the @qcode{"local"} option, the 1974 When called from inside a function with the @qcode{"local"} option, the
1973 variable is changed locally for the function and any subroutines it calls. 1975 variable is changed locally for the function and any subroutines it calls.
1974 The original variable value is restored when exiting the function. 1976 The original variable value is restored when exiting the function.
1975 @seealso{crash_dumps_octave_core, octave_core_file_name, octave_core_file_options} 1977 @seealso{crash_dumps_octave_core, octave_core_file_name,
1978 octave_core_file_options}
1976 @end deftypefn */) 1979 @end deftypefn */)
1977 { 1980 {
1978 load_save_system& load_save_sys = interp.get_load_save_system (); 1981 load_save_system& load_save_sys = interp.get_load_save_system ();
1979 1982
1980 return load_save_sys.octave_core_file_limit (args, nargout); 1983 return load_save_sys.octave_core_file_limit (args, nargout);
1991 The default value is @qcode{"octave-workspace"} 1994 The default value is @qcode{"octave-workspace"}
1992 1995
1993 When called from inside a function with the @qcode{"local"} option, the 1996 When called from inside a function with the @qcode{"local"} option, the
1994 variable is changed locally for the function and any subroutines it calls. 1997 variable is changed locally for the function and any subroutines it calls.
1995 The original variable value is restored when exiting the function. 1998 The original variable value is restored when exiting the function.
1996 @seealso{crash_dumps_octave_core, octave_core_file_name, octave_core_file_options} 1999 @seealso{crash_dumps_octave_core, octave_core_file_name,
2000 octave_core_file_options}
1997 @end deftypefn */) 2001 @end deftypefn */)
1998 { 2002 {
1999 load_save_system& load_save_sys = interp.get_load_save_system (); 2003 load_save_system& load_save_sys = interp.get_load_save_system ();
2000 2004
2001 return load_save_sys.octave_core_file_name (args, nargout); 2005 return load_save_sys.octave_core_file_name (args, nargout);