diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-04 14:00:10 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-04 14:00:10 +0200 |
commit | f76f529524113513397ab50fb7b8f7aaba197152 (patch) | |
tree | 0a4df9a73f355fb3a08d81a31c09652442f9a895 /lisp/emacs-lisp/lisp.el | |
parent | b3dc23dd60896423f1a7ccbe5ab747f54599ea24 (diff) | |
download | emacs-f76f529524113513397ab50fb7b8f7aaba197152.tar.gz |
Further raise-sexp doc string improvement
* lisp/emacs-lisp/lisp.el (raise-sexp): Fix the key binding syntax
in the doc string.
Diffstat (limited to 'lisp/emacs-lisp/lisp.el')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 9d9ae41f301..d6086abe59e 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -870,7 +870,7 @@ For instance, if you have: (zot) (+ foo 2))) -and point is before (zot), `M-x raise-sexp' will give you +and point is before (zot), \\[raise-sexp] will give you (let ((foo 2)) (zot))" |