* lisp/obsolete/html2text.el: Don't require CL

(html2text-clean-anchor): Mark unused arg.
This commit is contained in:
Stefan Monnier 2017-09-01 14:29:57 -04:00
parent 2d420fb6b1
commit c4ccafb1a5

View file

@ -38,8 +38,6 @@
;; <Global variables>
;;
(eval-when-compile
(require 'cl))
(defvar html2text-format-single-element-list '(("hr" . html2text-clean-hr)))
@ -300,7 +298,7 @@ formatting, and then moved afterward.")
(defun html2text-clean-blockquote (p1 p2 p3 p4)
(html2text-delete-tags p1 p2 p3 p4))
(defun html2text-clean-anchor (p1 p2 p3 p4)
(defun html2text-clean-anchor (p1 p2 _p3 p4)
;; If someone can explain how to make the URL clickable I will surely
;; improve upon this.
;; Maybe `goto-addr.el' can be used here.