From 5d64c8aea06af7586e11f71b546c142c5ed07930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=ADn?= Date: Sat, 4 Jun 2022 02:20:09 +0200 Subject: [PATCH] Improve documentation of raise-sexp * lisp/emacs-lisp/lisp.el (raise-sexp): Make the documentation of the command more useful. --- lisp/emacs-lisp/lisp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index ffca0dcf4f..39c286ff3e 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -858,7 +858,7 @@ delete-pair (delete-char 1)))) (defun raise-sexp (&optional arg) - "Raise ARG sexps higher up the tree." + "Replace the enclosing parenthesis structure with ARG sexps from point." (interactive "p") (let ((s (if (and transient-mark-mode mark-active) (buffer-substring (region-beginning) (region-end)) -- 2.34.1