[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/hyperdrive fcfff46d68 3/3: Tidy: Remove unnecessary declar
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/hyperdrive fcfff46d68 3/3: Tidy: Remove unnecessary declare-function statements |
Date: |
Wed, 6 Sep 2023 00:59:59 -0400 (EDT) |
branch: elpa/hyperdrive
commit fcfff46d6844f2cf7cea136e98b98a005c3e0dbd
Author: Joseph Turner <joseph@ushin.org>
Commit: Joseph Turner <joseph@ushin.org>
Tidy: Remove unnecessary declare-function statements
---
hyperdrive-dir.el | 3 ---
hyperdrive-history.el | 2 --
hyperdrive-org.el | 1 -
3 files changed, 6 deletions(-)
diff --git a/hyperdrive-dir.el b/hyperdrive-dir.el
index 204643ab9c..ce2ba3351b 100644
--- a/hyperdrive-dir.el
+++ b/hyperdrive-dir.el
@@ -208,9 +208,6 @@ With point on header, returns directory entry."
"o" #'hyperdrive-dir-sort
"?" #'hyperdrive-describe-hyperdrive)
-;; TODO: Get rid of this?
-(declare-function hyperdrive-bookmark-make-record "hyperdrive")
-
(define-derived-mode hyperdrive-dir-mode hyperdrive-ewoc-mode
`("Hyperdrive-dir"
;; TODO: Add more to lighter, e.g. URL.
diff --git a/hyperdrive-history.el b/hyperdrive-history.el
index 30cc9e7de1..08372a033f 100644
--- a/hyperdrive-history.el
+++ b/hyperdrive-history.el
@@ -241,8 +241,6 @@ Interactively, diff range entry at point with previous
entry."
:then (lambda ()
(pop-to-buffer (current-buffer)))))
-(declare-function hyperdrive-open "hyperdrive")
-
(defun hyperdrive-history-find-file (range-entry)
"Visit hyperdrive entry in RANGE-ENTRY at point.
When entry does not exist, does nothing and returns nil.
diff --git a/hyperdrive-org.el b/hyperdrive-org.el
index f0fd40a19d..49eee8f88d 100644
--- a/hyperdrive-org.el
+++ b/hyperdrive-org.el
@@ -34,7 +34,6 @@
(defvar hyperdrive-mode)
(declare-function hyperdrive-open-url "hyperdrive")
-(declare-function hyperdrive-entry-url "hyperdrive-lib")
(declare-function hyperdrive-dir--entry-at-point "hyperdrive-dir")
;; TODO: Determine whether it's really necessary to autoload these two
functions.