comparison emacs/octave-inf.el @ 5437:009606303874

[project @ 2005-09-02 06:25:26 by jwe]
author jwe
date Fri, 02 Sep 2005 06:27:52 +0000
parents 2a16423e4aa0
children 2299097cf9f2
comparison
equal deleted inserted replaced
5436:2ed5009be503 5437:009606303874
245 (setq inferior-octave-complete-impossible 245 (setq inferior-octave-complete-impossible
246 (not (string-match "5$" (car inferior-octave-output-list)))) 246 (not (string-match "5$" (car inferior-octave-output-list))))
247 247
248 ;; And finally, everything is back to normal. 248 ;; And finally, everything is back to normal.
249 (set-process-filter proc 'inferior-octave-output-filter) 249 (set-process-filter proc 'inferior-octave-output-filter)
250 (run-hooks 'inferior-octave-startup-hook))) 250 (run-hooks 'inferior-octave-startup-hook)
251 ;; just in case, to be sure a cd in the startup file
252 ;; won't have detrimental effects
253 (inferior-octave-resync-dirs)))
251 254
252 255
253 (defun inferior-octave-complete () 256 (defun inferior-octave-complete ()
254 "Perform completion on the Octave symbol preceding point. 257 "Perform completion on the Octave symbol preceding point.
255 This is implemented using the Octave command `completion_matches' which 258 This is implemented using the Octave command `completion_matches' which