; * doc/lispintro/emacs-lisp-intro.texi (Complete kill-region): Fix typo

This commit is contained in:
Shynur 2022-11-23 10:26:46 +01:00 committed by Juanma Barranquero
parent a142841ad1
commit 9f4306cd8d

View file

@ -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