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

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

[elpa] externals/emms 93c614dc24 32/42: Fix byte compilation errors


From: ELPA Syncer
Subject: [elpa] externals/emms 93c614dc24 32/42: Fix byte compilation errors
Date: Wed, 1 Nov 2023 15:58:01 -0400 (EDT)

branch: externals/emms
commit 93c614dc2453dfc3c0ba52b6b94f18ed7c2506f8
Author: Petteri Hintsanen <petterih@iki.fi>
Commit: Petteri Hintsanen <petterih@iki.fi>

    Fix byte compilation errors
    
    Byte compiler complained about undefined functions, hence add require
    forms.  Tested with Emacs versions 27.2 and 29.1.
---
 emms-volume-pulse.el | 1 +
 emms.el              | 1 +
 2 files changed, 2 insertions(+)

diff --git a/emms-volume-pulse.el b/emms-volume-pulse.el
index 4df9ecfe3e..98c8880fc4 100644
--- a/emms-volume-pulse.el
+++ b/emms-volume-pulse.el
@@ -43,6 +43,7 @@
 ;;; Code:
 
 (require 'cl-lib)
+(require 'subr-x)
 
 ;; TODO: it would be great if custom could have
 ;; choices based on pactl list short sinks | cut -f1-2
diff --git a/emms.el b/emms.el
index 826cb1b33d..755f9a19e2 100644
--- a/emms.el
+++ b/emms.el
@@ -44,6 +44,7 @@
 
 ;;; Code:
 (require 'emms-compat)
+(require 'seq)
 
 (defvar emms-version "16"
   "EMMS version string.")



reply via email to

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