Skip to content

Commit

Permalink
find-file fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eschulte committed Oct 12, 2008
1 parent 4ffb4b2 commit b1a12d4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jump.el
Expand Up @@ -80,7 +80,9 @@
"if `ido-mode' is turned on use ido speedups finding the file"
(if (or (equal ido-mode 'file) (equal ido-mode 'both))
(ido-find-file-in-dir dir)
(let ((default-dir dir)) (find-file))))
(let ((default-dir dir))
(message (format "not ido %s" ido-mode))
(call-interactively 'find-file))))

(defun jump-method ()
"Return the method defined at the current position in current
Expand Down

0 comments on commit b1a12d4

Please sign in to comment.