emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/embark f3738f8 03/11: Fix warnings, remove unnecessary


From: ELPA Syncer
Subject: [elpa] externals/embark f3738f8 03/11: Fix warnings, remove unnecessary declare-function
Date: Thu, 9 Dec 2021 17:57:24 -0500 (EST)

branch: externals/embark
commit f3738f8c1062b7de66b058e6d90a5924c919eef8
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Fix warnings, remove unnecessary declare-function
---
 embark.el | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/embark.el b/embark.el
index bd0d7c6..f749d58 100644
--- a/embark.el
+++ b/embark.el
@@ -3484,7 +3484,7 @@ and leaves the point to the left of it."
   ("_" calc-grab-sum-across)
   ("R" reverse-region)
   ("D" delete-duplicate-lines)
-  ("S" embark-sort-map))
+  ("S" 'embark-sort-map))
 
 (embark-define-keymap embark-file-map
   "Keymap for Embark file actions."
@@ -3617,13 +3617,11 @@ and leaves the point to the left of it."
   ("v" embark-save-variable-value)
   ("<" embark-insert-variable-value))
 
-(declare-function untrace-function "trace")
-
 (embark-define-keymap embark-function-map
   "Keymap for Embark function actions."
   :parent embark-symbol-map
   ("t" trace-function)
-  ("T" untrace-function))
+  ("T" 'untrace-function)) ;; quoted, not autoloaded
 
 (embark-define-keymap embark-command-map
   "Keymap for Embark command actions."
@@ -3712,7 +3710,7 @@ and leaves the point to the left of it."
   ("p" project-find-file)
   ("r" recentf-open-files)
   ("b" switch-to-buffer)
-  ("4b" switch-to-buffer-other-window)  
+  ("4b" switch-to-buffer-other-window)
   ("l" locate)
   ("L" find-library))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]