From f6474b4808363dbddeffef8d73ee3be7b3858fa3 Mon Sep 17 00:00:00 2001 From: Mark Oteiza Date: Mon, 11 Sep 2017 21:23:38 -0400 Subject: [PATCH] ; 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 cf9407c8a76..6a292d24776 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 "#" (sxhash object)) stream) + (princ (format "#" (sxhash object)) stream) (when (eq cl-print-compiled 'static) (princ " " stream) (cl-print-object (aref object 2) stream)) -- 2.39.2