* ffap.el (ffap-replace-file-component): Fix typo.
authorChong Yidong <cyd@gnu.org>
Thu, 6 Dec 2012 03:04:21 +0000 (11:04 +0800)
committerChong Yidong <cyd@gnu.org>
Thu, 6 Dec 2012 03:04:21 +0000 (11:04 +0800)
lisp/ChangeLog
lisp/ffap.el

index 5712dd9..a4f40e6 100644 (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
index 4c75609..0620cd8 100644 (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))))