Synch to No Gnus 200411020446.
authoryamaoka <yamaoka>
Tue, 2 Nov 2004 04:46:26 +0000 (04:46 +0000)
committeryamaoka <yamaoka>
Tue, 2 Nov 2004 04:46:26 +0000 (04:46 +0000)
lisp/html2text.el

index 9de6216..f5e0e58 100644 (file)
@@ -214,24 +214,6 @@ formatting, and then moved afterward.")
     ;; return - value
     attr-list))
 
-(defun html2text-get-attr (p1 p2)
-  (save-restriction
-    (narrow-to-region p1 p2)
-    (let (result)
-      (goto-char (point-min))
-      (while (not (eobp))
-       (when (re-search-forward "[^= ]+" nil t)
-         (push
-          (list
-           (match-string 0)
-           (when (looking-at " *= *")
-             (goto-char (match-end 0))
-             (buffer-substring 
-              (point)
-              (goto-char (or (ignore-errors (scan-sexps (point) 1))
-                             (point-max))))))
-          result)))
-      result)))
 ;;
 ;; </Functions related to attributes>
 ;;