emacs-diffs
[Top][All Lists]
Advanced

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

master bc4190b: Make pp-buffer into a command


From: Lars Ingebrigtsen
Subject: master bc4190b: Make pp-buffer into a command
Date: Thu, 21 Nov 2019 08:09:58 -0500 (EST)

branch: master
commit bc4190b3f4c3b47bb2f5a955236a6d7195d8a748
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Make pp-buffer into a command
    
    * lisp/emacs-lisp/pp.el (pp-buffer): Make into a command (bug#38306).
---
 lisp/emacs-lisp/pp.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el
index de4cbfc..ca5114e 100644
--- a/lisp/emacs-lisp/pp.el
+++ b/lisp/emacs-lisp/pp.el
@@ -53,6 +53,7 @@ to make output that `read' can handle, whenever this is 
possible."
 ;;;###autoload
 (defun pp-buffer ()
   "Prettify the current buffer with printed representation of a Lisp object."
+  (interactive)
   (goto-char (point-min))
   (while (not (eobp))
     ;; (message "%06d" (- (point-max) (point)))



reply via email to

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