* ffap.el (ffap-replace-file-component): Fix typo.

This commit is contained in:
Chong Yidong 2012-12-06 11:04:21 +08:00
parent 1df7defd80
commit e1d51545ce
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2012-12-06 Chong Yidong <cyd@gnu.org>
* ffap.el (ffap-replace-file-component): Fix typo.
2012-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/octave-mod.el (octave-mark-block): Move out of tokens and

View file

@ -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))))