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

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

[nongnu] elpa/macrostep 80ae101 083/110: Fix SLIME functions for updated


From: ELPA Syncer
Subject: [nongnu] elpa/macrostep 80ae101 083/110: Fix SLIME functions for updated generic interface
Date: Sat, 7 Aug 2021 09:18:07 -0400 (EDT)

branch: elpa/macrostep
commit 80ae10125bfdf9e75bc1b15e37bc5cf9324b6b45
Author: joddie <jonxfield@gmail.com>
Commit: joddie <jonxfield@gmail.com>

    Fix SLIME functions for updated generic interface
---
 macrostep.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/macrostep.el b/macrostep.el
index fb97c85..8536a07 100644
--- a/macrostep.el
+++ b/macrostep.el
@@ -1041,12 +1041,12 @@ fontified using the same face (modulo the number of 
faces; see
 ;;;###autoload
 (add-hook 'slime-repl-mode-hook #'macrostep-slime-mode-hook)
 
-(defun macrostep-slime-expand-1 (string)
+(defun macrostep-slime-expand-1 (string _ignore)
   (slime-eval
    `(swank-macrostep:macrostep-expand-1
      ,string nil ,macrostep-expand-compiler-macros)))
 
-(defun macrostep-slime-insert (result)
+(defun macrostep-slime-insert (result _ignore)
   "Insert RESULT at point, indenting to match the current column."
   (cl-destructuring-bind (expansion positions) result
     (let* ((indent-string (concat "\n" (make-string (current-column) ? )))
@@ -1077,7 +1077,7 @@ fontified using the same face (modulo the number of 
faces; see
                                  'macrostep-macro-face
                                  'macrostep-compiler-macro-face)))))))
 
-(defun macrostep-slime-macro-form-p (string)
+(defun macrostep-slime-macro-form-p (string _ignore)
   (when string
     (slime-eval
      `(swank-macrostep:macro-form-p



reply via email to

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