Mercurial > hg > octave-jordi
comparison src/defaults.cc @ 3185:9580887dd160
[project @ 1998-09-26 02:45:55 by jwe]
author | jwe |
---|---|
date | Sat, 26 Sep 1998 02:45:59 +0000 |
parents | 390d5e396682 |
children | bdf2186d4592 |
comparison
equal
deleted
inserted
replaced
3184:3988763ec9d3 | 3185:9580887dd160 |
---|---|
44 #include "defun.h" | 44 #include "defun.h" |
45 #include "error.h" | 45 #include "error.h" |
46 #include "file-ops.h" | 46 #include "file-ops.h" |
47 #include "gripes.h" | 47 #include "gripes.h" |
48 #include "help.h" | 48 #include "help.h" |
49 #include "oct-obj.h" | |
49 #include "ov.h" | 50 #include "ov.h" |
50 #include "toplev.h" | 51 #include "toplev.h" |
51 #include "variables.h" | 52 #include "variables.h" |
52 #include <version.h> | 53 #include <version.h> |
53 | 54 |
425 | 426 |
426 DEFCONSTX ("OCTAVE_VERSION", SBV_OCTAVE_VERSION, OCTAVE_VERSION, | 427 DEFCONSTX ("OCTAVE_VERSION", SBV_OCTAVE_VERSION, OCTAVE_VERSION, |
427 "Octave version"); | 428 "Octave version"); |
428 } | 429 } |
429 | 430 |
431 DEFUN (rehash, , , | |
432 "rehash (): reinitialize LOADPATH directory cache") | |
433 { | |
434 octave_value_list retval; | |
435 | |
436 Vload_path_dir_path.rehash (); | |
437 | |
438 return retval; | |
439 } | |
440 | |
430 /* | 441 /* |
431 ;;; Local Variables: *** | 442 ;;; Local Variables: *** |
432 ;;; mode: C++ *** | 443 ;;; mode: C++ *** |
433 ;;; End: *** | 444 ;;; End: *** |
434 */ | 445 */ |