* lisp/emacs-lisp/pp.el: Doc fixes.
This commit is contained in:
parent
6486c9dc73
commit
1984213f62
1 changed files with 3 additions and 3 deletions
|
@ -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*"))
|
(pp-display-expression (macroexpand-1 expression) "*Pp Macroexpand Output*"))
|
||||||
|
|
||||||
(defun pp-last-sexp ()
|
(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
|
(with-syntax-table emacs-lisp-mode-syntax-table
|
||||||
(let ((pt (point)))
|
(let ((pt (point)))
|
||||||
(save-excursion
|
(save-excursion
|
||||||
|
@ -160,7 +160,7 @@ Also add the value to the front of the list in the variable `values'."
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun pp-eval-last-sexp (arg)
|
(defun pp-eval-last-sexp (arg)
|
||||||
"Run `pp-eval-expression' on sexp before point.
|
"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."
|
Ignores leading comment characters."
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(if arg
|
(if arg
|
||||||
|
@ -170,7 +170,7 @@ Ignores leading comment characters."
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun pp-macroexpand-last-sexp (arg)
|
(defun pp-macroexpand-last-sexp (arg)
|
||||||
"Run `pp-macroexpand-expression' on sexp before point.
|
"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."
|
Ignores leading comment characters."
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(if arg
|
(if arg
|
||||||
|
|
Loading…
Add table
Reference in a new issue