summaryrefslogtreecommitdiffhomepage
path: root/bmk/bmk-mgr-w3.el
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2021-02-02 05:16:17 +0000
committerjao <jao@gnu.org>2021-02-02 05:16:17 +0000
commit771abb84830678455de4625ac7f082d8100f0ea0 (patch)
tree0d303c2cb0861b949ca73a9705954f6a69c4f877 /bmk/bmk-mgr-w3.el
parent81eceb5507aa0659e9f0c9761e54e9102085c4ac (diff)
downloadelibs-771abb84830678455de4625ac7f082d8100f0ea0.tar.gz
elibs-771abb84830678455de4625ac7f082d8100f0ea0.tar.bz2
libs -> lib/
Diffstat (limited to 'bmk/bmk-mgr-w3.el')
-rw-r--r--bmk/bmk-mgr-w3.el58
1 files changed, 0 insertions, 58 deletions
diff --git a/bmk/bmk-mgr-w3.el b/bmk/bmk-mgr-w3.el
deleted file mode 100644
index c22700f..0000000
--- a/bmk/bmk-mgr-w3.el
+++ /dev/null
@@ -1,58 +0,0 @@
-;;; bmk-mgr-w3.el --- w3 specific code for bmk-mgr
-
-;; Copyright (C) 2007, 2008 Jose Antonio Ortega Ruiz.
-;;
-;; Author: Robert D. Crawford
-;; Author: Jose A Ortega Ruiz <jao@gnu.org>
-;; Keywords: hypermedia
-
-;; This file is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
-
-;; This file is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING. If not, write to
-;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
-
-;;; Commentary:
-;;
-;; Set up bmk-mgr for w3.
-
-;;; Code:
-
-;;;; Dependencies:
-
-(require 'bmk-mgr)
-(require 'w3)
-
-(defun bmk-mgr-w3-current-url ()
- "Returns the current document url
-without the string properties."
- (interactive)
- (substring-no-properties (url-view-url)))
-
-(defun bmk-mgr-w3-document-title-fixed ()
- "Removes the newline in long titles that
-seems to have cropped up in current versions of w3."
- (replace-regexp-in-string "\n" " " (buffer-name)))
-
-(add-hook 'w3-mode-hook
- (lambda ()
- (setq bmk-mgr-document-title
- 'bmk-mgr-w3-document-title-fixed)
- (setq bmk-mgr-url-at-point 'w3-view-this-url)
- (setq bmk-mgr-current-url 'bmk-mgr-w3-current-url)))
-;; (setq bmk-mgr-document-title 'buffer-name)
-(provide 'bmk-mgr-w3)
-
-;; Local variables **
-;; indent-tabs-mode: nil **
-;; end **
-;;; bmk-mgr-w3.el ends here