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

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

[elpa] externals/assess 3cf57afcaf 26/95: Merge pull request #1 from syo


From: ELPA Syncer
Subject: [elpa] externals/assess 3cf57afcaf 26/95: Merge pull request #1 from syohex/fix
Date: Tue, 19 Jul 2022 15:57:30 -0400 (EDT)

branch: externals/assess
commit 3cf57afcaf6e9f039af5caa157c0d5e09cbb0d2a
Merge: 83973f4047 32a00524a8
Author: Phil Lord <phillip.lord@russet.org.uk>
Commit: Phil Lord <phillip.lord@russet.org.uk>

    Merge pull request #1 from syohex/fix
    
    Fix unused variable issues
---
 sisyphus.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sisyphus.el b/sisyphus.el
index 329583a0e3..2470056e20 100644
--- a/sisyphus.el
+++ b/sisyphus.el
@@ -130,7 +130,7 @@ string into something that will identified appropriately."
 
 (defun sisyphus-buffer (b)
   "Add type data to the string B marking it as a buffer."
-  `(:buffer b))
+  `(:buffer ,b))
 
 (defun sisyphus-file (f)
   "Add type data to the string F marking it as a file."
@@ -230,7 +230,7 @@ afterwards for cleanup by the operating system."
 (defun sisyphus--explainer-simple-string= (a b)
   "Compare strings for first difference."
   ;; We could do a bit more here.
-  (format "String :%s:%s: are not equal."))
+  (format "String :%s:%s: are not equal." a b))
 ;; #+end_src
 
 ;; And the actual predicate function and explainer.



reply via email to

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