From 930f6ac80d1c38dafa6fa7fa34e99067b2cfab1c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Perrin?= Date: Tue, 2 Apr 2024 19:32:57 +0100 Subject: [PATCH] Remove dead code --- atom.el | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/atom.el b/atom.el index a7605ba..d0d2590 100644 --- a/atom.el +++ b/atom.el @@ -324,17 +324,6 @@ absolute, in the context of BASE, an URL." (dolist (child (xml-node-children node)) (when (listp child) (atom-xhtml-convert-links child base)))) -(defun atom-generate-id (link creation-date) - "Generate a string suitable for use as an atom:id element. This -implements Mark Pilgrom's tag: URI method, using the -CREATION-DATE of the entry, and the domain part of LINK. - -See ." - (format "tag:%s,%s:/%s" - (url-host (url-generic-parse-url link)) - (format-time-string "%Y-%m-%d" creation-date) - (format-time-string "%Y%m%d%H%M%S" creation-date))) - ;;; Functions that should probably not be there -- 2.43.0