diff options
author | Shynur <one.last.kiss@outlook.com> | 2022-11-23 10:26:46 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2022-11-23 10:26:46 +0100 |
commit | 9f4306cd8d086745750769d612df3f71defeea1e (patch) | |
tree | a15a554ede4e5fe7c00c2676e211974065564bc4 /doc/lispintro | |
parent | a142841ad1ee36d409d8fe5f6d9fbd5e87879b67 (diff) | |
download | emacs-9f4306cd8d086745750769d612df3f71defeea1e.tar.gz emacs-9f4306cd8d086745750769d612df3f71defeea1e.tar.bz2 emacs-9f4306cd8d086745750769d612df3f71defeea1e.zip |
; * doc/lispintro/emacs-lisp-intro.texi (Complete kill-region): Fix typo
Diffstat (limited to 'doc/lispintro')
-rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index df8fa2f8e79..860ef2fc78e 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -7981,7 +7981,7 @@ The command \\[yank] can retrieve it from there. @dots{} " (progn (message "Read only text copied to kill ring") nil) (barf-if-buffer-read-only) ;; If the buffer isn't read-only, the text is. - (signal 'text-read-only (list (current-buffer))))) + (signal 'text-read-only (list (current-buffer))))))) @end group @end smallexample |