branch: elpa/sly
commit 759c0ff8741ced8793257f2b7ed95a23e13e1407
Author: Anthony Green <[email protected]>
Commit: GitHub <[email protected]>

    Fix #702, #703: Tweak SIMPLE-BREAK default message
    
    Make it "Interrupt from client" instead of "Interrupt from Emacs".
    
    * slynk/slynk.lisp (simple-break): Tweak.
---
 slynk/slynk.lisp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/slynk/slynk.lisp b/slynk/slynk.lisp
index 2ae6db32e2..92d676235b 100644
--- a/slynk/slynk.lisp
+++ b/slynk/slynk.lisp
@@ -2685,7 +2685,7 @@ Operation was KERNEL::DIVISION, operands (1 0).\"
                             :format-arguments args))
     (symbol (apply #'make-condition datum args))))
 
-(defslyfun simple-break (&optional (datum "Interrupt from Emacs") &rest args)
+(defslyfun simple-break (&optional (datum "Interrupt from client") &rest args)
   (with-simple-restart (continue "Continue from break.")
     (invoke-sly-debugger (coerce-to-condition datum args))))
 

Reply via email to