emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master f6474b4: ; Fix previous commit


From: Mark Oteiza
Subject: [Emacs-diffs] master f6474b4: ; Fix previous commit
Date: Mon, 11 Sep 2017 21:24:31 -0400 (EDT)

branch: master
commit f6474b4808363dbddeffef8d73ee3be7b3858fa3
Author: Mark Oteiza <address@hidden>
Commit: Mark Oteiza <address@hidden>

    ; Fix previous commit
    
    The printer otherwise includes the 0x prefix.
    * lisp/emacs-lisp/cl-print.el: Add 0x to format.
---
 lisp/emacs-lisp/cl-print.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/cl-print.el b/lisp/emacs-lisp/cl-print.el
index cf9407c..6a292d2 100644
--- a/lisp/emacs-lisp/cl-print.el
+++ b/lisp/emacs-lisp/cl-print.el
@@ -131,7 +131,7 @@ into a button whose action shows the function's 
disassembly.")
     (let ((button-start (and cl-print-compiled-button
                              (bufferp stream)
                              (with-current-buffer stream (point)))))
-      (princ (format "#<bytecode %x>" (sxhash object)) stream)
+      (princ (format "#<bytecode 0x%x>" (sxhash object)) stream)
       (when (eq cl-print-compiled 'static)
         (princ " " stream)
         (cl-print-object (aref object 2) stream))



reply via email to

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