From: Stefan Monnier Date: Fri, 14 Jul 2023 02:26:19 +0000 (-0400) Subject: cl-print: Allow expanding the contents of hash-tables X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=47c2da092a0288c50a0ed7974d2a3427382f2fd5;p=emacs.git cl-print: Allow expanding the contents of hash-tables * lisp/emacs-lisp/cl-print.el (cl-print-object) : Add an ellipsis. (cl-print-object-contents) : New method. --- diff --git a/etc/NEWS b/etc/NEWS index 3e56fbb973c..d7f5fdc4cbb 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -92,10 +92,13 @@ plus, minus, check-mark, start, etc. The 'tool-bar-position' frame parameter can be set to 'bottom' on all window systems other than Nextstep. -** You can expand the "..." truncation everywhere. +** cl-print +*** You can expand the "..." truncation everywhere. The code that allowed "..." to be expanded in the *Backtrace* should now work anywhere the data is generated by `cl-print`. +*** hash-tables' contents can be expanded via the ellipsis + ** Modeline elements can now be right-aligned. Anything following the symbol 'mode-line-format-right-align' in 'mode-line-format' will be right-aligned. Exactly where it is diff --git a/lisp/emacs-lisp/cl-print.el b/lisp/emacs-lisp/cl-print.el index 905c2bc9f09..71929caabb8 100644 --- a/lisp/emacs-lisp/cl-print.el +++ b/lisp/emacs-lisp/cl-print.el @@ -57,7 +57,7 @@ call other entry points instead, such as `cl-prin1'." "Dispatcher to print partial contents of OBJECT on STREAM. This is used when replacing an ellipsis with the contents it represents. OBJECT is the object that has been partially printed -and START represents the place at which the contents where +and START represents the place at which the contents were replaced with an ellipsis. Print the contents hidden by the ellipsis to STREAM." ;; Every cl-print-object method which can print an ellipsis should @@ -132,17 +132,30 @@ Print the contents hidden by the ellipsis to STREAM." (cl-print--vector-contents object start stream)) ;FIXME: η-redex! (cl-defmethod cl-print-object ((object hash-table) stream) - ;; FIXME: Make it possible to see the contents, like `prin1' does, - ;; e.g. using ellipsis. Make sure `cl-fill' can pretty print the result! + ;; Make sure `pp-fill' can pretty print the result! (princ "#" stream)) +(cl-defmethod cl-print-object-contents ((object hash-table) _start stream) + ;; If we want to obey `print-length' here, it's not completely obvious + ;; what we should use as marker of "where we are" within the hash-table. + ;; We could use here a simple number or a set of keys already printed, + ;; but it still breaks down if elements get added/removed. + ;; Instead here we convert the hash-table to an alist once and for all. + (let ((alist nil)) + (maphash (lambda (k v) (push (cons k v) alist)) object) + ;; While the order of elements seen by `maphash' is "arbitrary" + ;; it tends to be in the order objects have been added, which is + ;; sometimes handy, so it's nice to preserve this order here. + (cl-print-object (nreverse alist) stream))) + (define-button-type 'help-byte-code 'follow-link t 'action (lambda (button) @@ -475,7 +488,6 @@ STREAM should be a buffer. OBJECT and START are as described in `cl-print-insert-ellipsis'." (let ((value (list object start cl-print--number-table cl-print--currently-printing))) - ;; FIXME: Make it into a button! (with-current-buffer stream (put-text-property beg end 'cl-print-ellipsis value stream) (make-text-button beg end :type 'cl-print-ellipsis))))