[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/substitute f245a25428 1/3: fix compilation warning.
From: |
ELPA Syncer |
Subject: |
[elpa] externals/substitute f245a25428 1/3: fix compilation warning. |
Date: |
Sun, 22 Jan 2023 10:58:31 -0500 (EST) |
branch: externals/substitute
commit f245a254281fa38e95b329749548bce38ce8e11a
Author: Wang Chunye <chunywan@xilinx.com>
Commit: Wang Chunye <chunywan@xilinx.com>
fix compilation warning.
when byte-compile this file without load subr-x, there is a warning
message, because if-let* is defined in subr-x
---
substitute.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/substitute.el b/substitute.el
index 76f30b92c8..47f799cc57 100644
--- a/substitute.el
+++ b/substitute.el
@@ -34,7 +34,7 @@
;;; Code:
(require 'thingatpt)
-
+(require 'subr-x)
(defgroup substitute nil
"Efficiently replace targets in the buffer or context."
:group 'editing)