]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-at-point): Eliminate var dired-function; use `dired'.
authorRichard M. Stallman <rms@gnu.org>
Sun, 24 May 1998 17:12:16 +0000 (17:12 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 24 May 1998 17:12:16 +0000 (17:12 +0000)
(ffap-bindings): Include a binding for C-x d.

lisp/ffap.el

index e352a793061244f8bd24e0c5f9740eed8df4a75d..2f4e4a18e747c60dd8e6aa86ba7f3b3d5e757af3 100644 (file)
@@ -1640,7 +1640,7 @@ ffap most of the time."
               (not current-prefix-arg)
             current-prefix-arg))
       (let (current-prefix-arg)                ; already interpreted
-       (call-interactively dired-function))
+       (call-interactively 'dired))
     (or filename (setq filename (dired-at-point-prompter)))
     (cond
      ((ffap-url-p filename)
@@ -1678,6 +1678,7 @@ ffap most of the time."
      (global-set-key "\C-x\C-f" 'find-file-at-point)
      (global-set-key "\C-x4f"   'ffap-other-window)
      (global-set-key "\C-x5f"   'ffap-other-frame)
+     (define-key ctl-x-map "\C-xd" 'dired-at-point)
      (add-hook 'gnus-summary-mode-hook 'ffap-gnus-hook)
      (add-hook 'gnus-article-mode-hook 'ffap-gnus-hook)
      (add-hook 'vm-mode-hook 'ffap-ro-mode-hook)