diff options
| author | Kelly Dean | 2015-02-16 04:26:36 +0000 |
|---|---|---|
| committer | Artur Malabarba | 2015-02-17 22:16:24 -0200 |
| commit | 8338e4420d4a0fd375f36698b5be54a65fe9cbb7 (patch) | |
| tree | 6ed34b417d945a6e2782d2d36270e6b6a0fb5d56 | |
| parent | 04096849d54e09553d25897591993d5e0221a8d8 (diff) | |
| download | emacs-8338e4420d4a0fd375f36698b5be54a65fe9cbb7.tar.gz emacs-8338e4420d4a0fd375f36698b5be54a65fe9cbb7.zip | |
lisp/files.el (insert-file-contents-literally): Fix typo
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/files.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3df34d6577c..704ec34606c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2015-02-16 Kelly Dean <kelly@prtime.org> | 1 | 2015-02-16 Kelly Dean <kelly@prtime.org> |
| 2 | 2 | ||
| 3 | * lisp/files.el (insert-file-contents-literally): Fix docstring typo. | ||
| 4 | |||
| 5 | 2015-02-16 Kelly Dean <kelly@prtime.org> | ||
| 6 | |||
| 3 | * emacs-lisp/easy-mmode.el (define-minor-mode): Process macro | 7 | * emacs-lisp/easy-mmode.el (define-minor-mode): Process macro |
| 4 | arguments correctly. (Bug#19685) | 8 | arguments correctly. (Bug#19685) |
| 5 | (define-minor-mode): Clarify docstring. | 9 | (define-minor-mode): Clarify docstring. |
diff --git a/lisp/files.el b/lisp/files.el index 5e80cb76599..83369792fe7 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -2110,7 +2110,7 @@ Do you want to revisit the file normally now? ") | |||
| 2110 | (defun insert-file-contents-literally (filename &optional visit beg end replace) | 2110 | (defun insert-file-contents-literally (filename &optional visit beg end replace) |
| 2111 | "Like `insert-file-contents', but only reads in the file literally. | 2111 | "Like `insert-file-contents', but only reads in the file literally. |
| 2112 | A buffer may be modified in several ways after reading into the buffer, | 2112 | A buffer may be modified in several ways after reading into the buffer, |
| 2113 | to Emacs features such as format decoding, character code | 2113 | due to Emacs features such as format decoding, character code |
| 2114 | conversion, `find-file-hook', automatic uncompression, etc. | 2114 | conversion, `find-file-hook', automatic uncompression, etc. |
| 2115 | 2115 | ||
| 2116 | This function ensures that none of these modifications will take place." | 2116 | This function ensures that none of these modifications will take place." |