]> git.eshelyaron.com Git - emacs.git/commitdiff
(ffap-bindings): Make interactive and add an autoload cookie.
authorEli Zaretskii <eliz@gnu.org>
Wed, 27 Dec 2000 14:08:34 +0000 (14:08 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 27 Dec 2000 14:08:34 +0000 (14:08 +0000)
(ffap-bindings): Doc fix, to reflect the above change.

lisp/ChangeLog
lisp/ffap.el

index a0d4c823285c8ae219c1df2b3589caafdcda0536..3b0ae238d3edb9ebacbf31e9942100b7ff72f590 100644 (file)
@@ -1,3 +1,9 @@
+2000-12-27  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * ffap.el (ffap-bindings): Make interactive and add an autoload
+       cookie.
+       (ffap-bindings): Doc fix, to reflect the above change.
+
 2000-12-27  Kenichi Handa  <handa@etl.go.jp>
 
        * term.el (term-char-mode): Define all non-ascii self-inserting
index 22fef574a6eeb1e42ef680a443f1c7e080d869d0..53eb07392dd9a0f0ef47f763bc279b9c547c8d0c 100644 (file)
@@ -35,9 +35,8 @@
 ;; README's, MANIFEST's, and so on.  Submit bugs or suggestions with
 ;; M-x ffap-bug.
 ;;
-;; For the default installation, add these two lines to your .emacs file:
+;; For the default installation, add this line to your .emacs file:
 ;;
-;; (require 'ffap)                      ; load the package
 ;; (ffap-bindings)                      ; do default key bindings
 ;;
 ;; ffap-bindings makes the following global key bindings:
@@ -1690,13 +1689,14 @@ ffap most of the time."
      ;; (setq dired-x-hands-off-my-keys t) ; the default
      )
      "List of binding forms evaluated by function `ffap-bindings'.
-A reasonable ffap installation needs just these two lines:
-  (require 'ffap)
+A reasonable ffap installation needs just these one line:
   (ffap-bindings)
 Of course if you do not like these bindings, just roll your own!")
 
+;;;###autoload
 (defun ffap-bindings nil
   "Evaluate the forms in variable `ffap-bindings'."
+  (interactive)
   (eval (cons 'progn ffap-bindings)))
 
 \f