]> git.eshelyaron.com Git - emacs.git/commitdiff
; * doc/lispintro/emacs-lisp-intro.texi (Complete kill-region): Fix typo
authorShynur <one.last.kiss@outlook.com>
Wed, 23 Nov 2022 09:26:46 +0000 (10:26 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 23 Nov 2022 09:26:46 +0000 (10:26 +0100)
doc/lispintro/emacs-lisp-intro.texi

index df8fa2f8e79d3231d496e5fbc1629c18c152fa21..860ef2fc78edce1c27e6366d406308c979745db9 100644 (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