diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/octave-inf.el | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 39cc2893426..d883cbb2236 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-09-10 Pascal Dupuis <Pascal.Dupuis@esat.kuleuven.be> (tiny change) | ||
| 2 | |||
| 3 | * progmodes/octave-inf.el (inferior-octave-startup): Resync | ||
| 4 | current dir at the end. | ||
| 5 | |||
| 1 | 2005-09-10 Emilio C. Lopes <eclig@gmx.net> | 6 | 2005-09-10 Emilio C. Lopes <eclig@gmx.net> |
| 2 | 7 | ||
| 3 | * woman.el (woman-topic-at-point-default): Renamed to | 8 | * woman.el (woman-topic-at-point-default): Renamed to |
diff --git a/lisp/progmodes/octave-inf.el b/lisp/progmodes/octave-inf.el index 917016cf159..4f0875bbf99 100644 --- a/lisp/progmodes/octave-inf.el +++ b/lisp/progmodes/octave-inf.el | |||
| @@ -248,7 +248,11 @@ startup file, `~/.emacs-octave'." | |||
| 248 | 248 | ||
| 249 | ;; And finally, everything is back to normal. | 249 | ;; And finally, everything is back to normal. |
| 250 | (set-process-filter proc 'inferior-octave-output-filter) | 250 | (set-process-filter proc 'inferior-octave-output-filter) |
| 251 | (run-hooks 'inferior-octave-startup-hook))) | 251 | (run-hooks 'inferior-octave-startup-hook) |
| 252 | (run-hooks 'inferior-octave-startup-hook) | ||
| 253 | ;; Just in case, to be sure a cd in the startup file | ||
| 254 | ;; won't have detrimental effects. | ||
| 255 | (inferior-octave-resync-dirs))) | ||
| 252 | 256 | ||
| 253 | 257 | ||
| 254 | (defun inferior-octave-complete () | 258 | (defun inferior-octave-complete () |