diff options
| author | Shynur | 2022-11-23 10:26:46 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2022-11-23 10:26:46 +0100 |
| commit | 9f4306cd8d086745750769d612df3f71defeea1e (patch) | |
| tree | a15a554ede4e5fe7c00c2676e211974065564bc4 | |
| parent | a142841ad1ee36d409d8fe5f6d9fbd5e87879b67 (diff) | |
| download | emacs-9f4306cd8d086745750769d612df3f71defeea1e.tar.gz emacs-9f4306cd8d086745750769d612df3f71defeea1e.zip | |
; * doc/lispintro/emacs-lisp-intro.texi (Complete kill-region): Fix typo
| -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{} " | |||
| 7981 | (progn (message "Read only text copied to kill ring") nil) | 7981 | (progn (message "Read only text copied to kill ring") nil) |
| 7982 | (barf-if-buffer-read-only) | 7982 | (barf-if-buffer-read-only) |
| 7983 | ;; If the buffer isn't read-only, the text is. | 7983 | ;; If the buffer isn't read-only, the text is. |
| 7984 | (signal 'text-read-only (list (current-buffer))))) | 7984 | (signal 'text-read-only (list (current-buffer))))))) |
| 7985 | @end group | 7985 | @end group |
| 7986 | @end smallexample | 7986 | @end smallexample |
| 7987 | 7987 | ||