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

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

[nongnu] externals/sly afedabc 26/47: abcl: fix inspector for Java metho


From: ELPA Syncer
Subject: [nongnu] externals/sly afedabc 26/47: abcl: fix inspector for Java methods and fields
Date: Thu, 17 Dec 2020 18:57:18 -0500 (EST)

branch: externals/sly
commit afedabc2f623c0fab94e2e3f61d57b1b713a16e9
Author: Mark <evenson.not.org@gmail.com>
Commit: João Távora <joaotavora@gmail.com>

    abcl: fix inspector for Java methods and fields
    
    Alan had implemented a :STRONG-VALUE hint for prettifying the
    inspector labels, but that hasn't been accepted into the generalize
    SLIME at this point.
    
    * slynk/backend/abcl.lisp: Fix.
    
    Co-authored-by: João Távora <joaotavora@gmail.com>
    Cherry-picked-from: SLIME commit ff0608306c9fbfac61db6b99930263f9a6b67e4e
---
 slynk/backend/abcl.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/slynk/backend/abcl.lisp b/slynk/backend/abcl.lisp
index c1e4c33..0750b5a 100644
--- a/slynk/backend/abcl.lisp
+++ b/slynk/backend/abcl.lisp
@@ -1288,7 +1288,7 @@
                             (1+ (position #\. (jcall "toString" this)  
:from-end t)))
           collect "  "
           collect (list :value this pre)
-          collect (list :strong-value this (jcall "getName" this) )
+          collect (list :value this (jcall "getName" this) )
           collect '(:newline))))
 
 (defun inspector-java-methods (class)
@@ -1312,7 +1312,7 @@
           for after = (subseq desc paren)
           collect "  "
           collect (list :value this pre)
-          collect (list :strong-value this name)
+          collect (list :value this name)
           collect (list :value this after)
           collect '(:newline))))
 



reply via email to

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