diff options
| author | Glenn Morris | 2011-02-17 21:15:22 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-02-17 21:15:22 -0800 |
| commit | 72d6685c11031df64b7b039fa658d2fe7727316d (patch) | |
| tree | 71e9431c626f321f6123007afc559ad272d49c7e | |
| parent | dff9ac46596173b651941dc1b16c78b1a1ab11f1 (diff) | |
| download | emacs-72d6685c11031df64b7b039fa658d2fe7727316d.tar.gz emacs-72d6685c11031df64b7b039fa658d2fe7727316d.zip | |
* lisp/files.el (find-file-literally): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/files.el | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 98a9e06e406..cdf6dbf4944 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-02-18 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * files.el (find-file-literally): Doc fix. | ||
| 4 | |||
| 1 | 2011-02-17 Glenn Morris <rgm@gnu.org> | 5 | 2011-02-17 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * simple.el (rfc822-goto-eoh): Give it a doc-string. | 7 | * simple.el (rfc822-goto-eoh): Give it a doc-string. |
diff --git a/lisp/files.el b/lisp/files.el index b026bf3352f..88063aed2b9 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -2008,7 +2008,8 @@ Don't call it from programs! Use `insert-file-contents-literally' instead. | |||
| 2008 | 2008 | ||
| 2009 | (defvar find-file-literally nil | 2009 | (defvar find-file-literally nil |
| 2010 | "Non-nil if this buffer was made by `find-file-literally' or equivalent. | 2010 | "Non-nil if this buffer was made by `find-file-literally' or equivalent. |
| 2011 | This is a permanent local.") | 2011 | This has the `permanent-local' property, which takes effect if you |
| 2012 | make the variable buffer-local.") | ||
| 2012 | (put 'find-file-literally 'permanent-local t) | 2013 | (put 'find-file-literally 'permanent-local t) |
| 2013 | 2014 | ||
| 2014 | (defun find-file-literally (filename) | 2015 | (defun find-file-literally (filename) |