summaryrefslogtreecommitdiff
path: root/lisp/bbdb-w3.el
diff options
context:
space:
mode:
authorMatt Simmons <simmonmt@acm.org>1998-01-06 06:18:22 +0000
committerMatt Simmons <simmonmt@acm.org>1998-01-06 06:18:22 +0000
commit2a9d4fa94a9448a892f167c20ea83bc0186dcabe (patch)
treed61484c02942eabac27f5e659b10b749e034929a /lisp/bbdb-w3.el
parent53b09d18168cf5b3b344e5ac826b5a5b9701f662 (diff)
Removed autoloads and added provide for bbdb-w3
Diffstat (limited to 'lisp/bbdb-w3.el')
-rw-r--r--lisp/bbdb-w3.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/bbdb-w3.el b/lisp/bbdb-w3.el
index f9b651d..25c4ef2 100644
--- a/lisp/bbdb-w3.el
+++ b/lisp/bbdb-w3.el
@@ -20,6 +20,9 @@
;; $Id$
;;
;; $Log$
+;; Revision 1.5 1998/01/06 06:18:22 simmonmt
+;; Removed autoloads and added provide for bbdb-w3
+;;
;; Revision 1.4 1997/10/26 05:03:49 simmonmt
;; Use browse-url-browser-function rather than a funcall
;;
@@ -37,7 +40,6 @@
;;
;;
-;;;###autoload
(defun bbdb-www (all)
"Visit URL's stored in `www' fields of the current record.
\\[bbdb-apply-next-command-to-all-records]\\[bbdb-www] \
@@ -57,7 +59,6 @@ Non-interactively, do all records if arg is nonnil."
(if (not got-one)
(error "No WWW field!"))))
-;;;###autoload
(defun bbdb-www-grab-homepage (record)
"Grab the current URL and store it in the bbdb database"
(interactive (list (bbdb-completing-read-record "Add WWW homepage for: ")))
@@ -71,8 +72,9 @@ Non-interactively, do all records if arg is nonnil."
(bbdb-change-record record t)
(bbdb-display-records (list record)))
-;;;###autoload
(defun bbdb-insinuate-w3 ()
"Call this function to hook BBDB into W3."
(add-hook 'w3-mode-hook
'(lambda () (define-key w3-mode-map ":" 'bbdb-www-grab-homepage))))
+
+(provide 'bbdb-w3)