diff options
author | Chong Yidong <cyd@gnu.org> | 2012-12-06 11:04:21 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-12-06 11:04:21 +0800 |
commit | e1d51545ced3cf6f58c44891563dfaf62c34b411 (patch) | |
tree | 3c5e79c5687fc5b7aed5d9116c7d4830fe91e57a /lisp/ffap.el | |
parent | 1df7defd8040839a81909b0eb8f428f6158b2362 (diff) |
* ffap.el (ffap-replace-file-component): Fix typo.
Diffstat (limited to 'lisp/ffap.el')
-rw-r--r-- | lisp/ffap.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ffap.el b/lisp/ffap.el index 4c75609fe0..0620cd8cc1 100644 --- a/lisp/ffap.el +++ b/lisp/ffap.el @@ -484,7 +484,7 @@ Returned values: "In remote FULLNAME, replace path with NAME. May return nil." ;; Use efs if loaded, but do not load it otherwise. (if (fboundp 'efs-replace-path-component) - (funcall efs-replace-path-component fullname name) + (funcall 'efs-replace-path-component fullname name) (and (stringp fullname) (stringp name) (concat (file-remote-p fullname) name)))) |