Skip to content

Commit

Permalink
fixed bug where typo in name of hook was causing errors and preventin…
Browse files Browse the repository at this point in the history
…g user from editing buffer
  • Loading branch information
codeforkjeff committed Feb 13, 2012
1 parent 52cd75c commit bc7ac00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clojure-mode.el
Expand Up @@ -1170,9 +1170,9 @@ The arguments are dir, hostname, and port. The return value should be an `alist

(defun clojure-slime-remote-file-name-hook ()
(setq slime-from-lisp-filename-function
'slime-tramp-remote-filename)
'clojure-slime-tramp-remote-filename)
(setq slime-to-lisp-filename-function
'slime-tramp-local-filename))
'clojure-slime-tramp-local-filename))

(add-hook 'slime-connected-hook 'clojure-slime-remote-file-name-hook)

Expand Down

0 comments on commit bc7ac00

Please sign in to comment.