]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/pp.el: Doc fixes.
authorStefan Kangas <stefan@marxist.se>
Thu, 29 Apr 2021 11:44:54 +0000 (13:44 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 29 Apr 2021 11:45:18 +0000 (13:45 +0200)
lisp/emacs-lisp/pp.el

index cd2e80907a877d4088dd6744375c2c011e5de9f6..6889d924c0f7a51946e179f7cb30c463e0f13f89 100644 (file)
@@ -140,7 +140,7 @@ Also add the value to the front of the list in the variable `values'."
   (pp-display-expression (macroexpand-1 expression) "*Pp Macroexpand Output*"))
 
 (defun pp-last-sexp ()
-  "Read sexp before point.  Ignores leading comment characters."
+  "Read sexp before point.  Ignore leading comment characters."
   (with-syntax-table emacs-lisp-mode-syntax-table
     (let ((pt (point)))
       (save-excursion
@@ -160,7 +160,7 @@ Also add the value to the front of the list in the variable `values'."
 ;;;###autoload
 (defun pp-eval-last-sexp (arg)
   "Run `pp-eval-expression' on sexp before point.
-With argument, pretty-print output into current buffer.
+With ARG, pretty-print output into current buffer.
 Ignores leading comment characters."
   (interactive "P")
   (if arg
@@ -170,7 +170,7 @@ Ignores leading comment characters."
 ;;;###autoload
 (defun pp-macroexpand-last-sexp (arg)
   "Run `pp-macroexpand-expression' on sexp before point.
-With argument, pretty-print output into current buffer.
+With ARG, pretty-print output into current buffer.
 Ignores leading comment characters."
   (interactive "P")
   (if arg