[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/dired-preview bedaa9114a 6/8: Reposition two declaratio
From: |
ELPA Syncer |
Subject: |
[elpa] externals/dired-preview bedaa9114a 6/8: Reposition two declarations closer to where they are used |
Date: |
Sun, 28 Jul 2024 09:57:55 -0400 (EDT) |
branch: externals/dired-preview
commit bedaa9114a5949848498dad9b00b604b8769db62
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>
Reposition two declarations closer to where they are used
---
dired-preview.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dired-preview.el b/dired-preview.el
index c112515aab..192dcab5f2 100644
--- a/dired-preview.el
+++ b/dired-preview.el
@@ -281,9 +281,6 @@ FILE."
end-ov 'display
(propertize "\n--PREVIEW TRUNCATED--" 'face 'shadow))))
-(declare-function hexl-mode "hexl")
-(declare-function hexl-mode-exit "hexl" (&optional arg))
-
;;;###autoload
(defmacro dired-preview-with-window (&rest body)
"Evaluate BODY with the Dired preview window as selected."
@@ -291,6 +288,9 @@ FILE."
(with-selected-window win
,@body)))
+(declare-function hexl-mode "hexl")
+(declare-function hexl-mode-exit "hexl" (&optional arg))
+
(defun dired-preview-hexl-toggle ()
"Toggle preview between text and `hexl-mode'."
(interactive)
- [elpa] externals/dired-preview updated (7b1d5f6733 -> d461945762), ELPA Syncer, 2024/07/28
- [elpa] externals/dired-preview e217d844ca 1/8: Add macro dired-preview-with-window, ELPA Syncer, 2024/07/28
- [elpa] externals/dired-preview c3e3027eed 2/8: Autoload dired-preview-with-window macro, ELPA Syncer, 2024/07/28
- [elpa] externals/dired-preview 7d581dea62 4/8: Add DIY code section and show example for dired-preview+ready-player, ELPA Syncer, 2024/07/28
- [elpa] externals/dired-preview bedaa9114a 6/8: Reposition two declarations closer to where they are used,
ELPA Syncer <=
- [elpa] externals/dired-preview 500a291de1 7/8: Include dired-flag-file-deletion in the list of dired-preview-trigger-commands, ELPA Syncer, 2024/07/28
- [elpa] externals/dired-preview 9a26b0c36c 5/8: Make dired-preview-hexl-toggle use dired-preview-with-window, ELPA Syncer, 2024/07/28
- [elpa] externals/dired-preview fd6aeb4667 3/8: Tweak the sample configuration, ELPA Syncer, 2024/07/28
- [elpa] externals/dired-preview d461945762 8/8: Move dired-preview--window-parameter-p closer to where it is used, ELPA Syncer, 2024/07/28