comparison src/defaults.cc @ 3446:5ee5afb3981a

[project @ 2000-01-17 09:42:43 by jwe]
author jwe
date Mon, 17 Jan 2000 09:42:48 +0000
parents 9610d364e444
children d14c483b3c12
comparison
equal deleted inserted replaced
3445:c3eed8ac845a 3446:5ee5afb3981a
494 A colon separated list of directories in which to search for image\n\ 494 A colon separated list of directories in which to search for image\n\
495 files.\n\ 495 files.\n\
496 @end defvr"); 496 @end defvr");
497 497
498 DEFCONST (OCTAVE_HOME, Voctave_home, 498 DEFCONST (OCTAVE_HOME, Voctave_home,
499 "top-level Octave installation directory"); 499 "-*- texinfo -*-\n\
500 @defvr {Built-in Variable} OCTAVE_HOME\n\
501 The name of the top-level Octave installation directory.\n\
502 @end defvr");
500 503
501 DEFCONSTX ("OCTAVE_VERSION", SBV_OCTAVE_VERSION, OCTAVE_VERSION, 504 DEFCONSTX ("OCTAVE_VERSION", SBV_OCTAVE_VERSION, OCTAVE_VERSION,
502 "-*- texinfo -*-\n\ 505 "-*- texinfo -*-\n\
503 @defvr {Built-in Variable} OCTAVE_VERSION\n\ 506 @defvr {Built-in Variable} OCTAVE_VERSION\n\
504 The version number of Octave, as a string.\n\ 507 The version number of Octave, as a string.\n\
505 @end defvr"); 508 @end defvr");
509
506 } 510 }
507 511
508 DEFUN (rehash, , , 512 DEFUN (rehash, , ,
509 "rehash (): reinitialize LOADPATH directory cache") 513 "-*- texinfo -*-\n\
514 @deftypefn {Built-in Function} {} rehash ()\n\
515 Reinitialize Octave's @code{LOADPATH} directory cache.\n\
516 @end deftypefn")
510 { 517 {
511 octave_value_list retval; 518 octave_value_list retval;
512 519
513 Vload_path_dir_path.rehash (); 520 Vload_path_dir_path.rehash ();
514 521