diff options
| author | Juanma Barranquero | 2007-11-09 10:40:32 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-11-09 10:40:32 +0000 |
| commit | d355b27085cbc4a9c369a947a74e807c41658c2d (patch) | |
| tree | 5b68c813a0189d9b482cced6d8d38f2e77eef3b1 | |
| parent | ed4a1ce4b5962a29b7c39831fda65b8c70d2ad27 (diff) | |
| download | emacs-d355b27085cbc4a9c369a947a74e807c41658c2d.tar.gz emacs-d355b27085cbc4a9c369a947a74e807c41658c2d.zip | |
(enable-local-variables): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/files.el | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 707a2ec45a4..c14a7e94e4a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-11-09 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * files.el (enable-local-variables): Doc fix. | ||
| 4 | |||
| 1 | 2007-11-09 Nick Roberts <nickrob@snap.net.nz> | 5 | 2007-11-09 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 6 | ||
| 3 | * progmodes/gud.el (gud-gdb): Remove vestigial gdba doc and code. | 7 | * progmodes/gud.el (gud-gdb): Remove vestigial gdba doc and code. |
| @@ -59,9 +63,6 @@ | |||
| 59 | * server.el (server-unload-function): Remove variable. | 63 | * server.el (server-unload-function): Remove variable. |
| 60 | (server-unload-function): Unbind `server-edit' from `C-x #'. | 64 | (server-unload-function): Unbind `server-edit' from `C-x #'. |
| 61 | 65 | ||
| 62 | * uniquify.el (uniquify-unload-function): Add docstring. | ||
| 63 | (uniquify-unload-function): Remove variable. | ||
| 64 | |||
| 65 | * ses.el (ses-unload-function): New function. | 66 | * ses.el (ses-unload-function): New function. |
| 66 | 67 | ||
| 67 | 2007-11-09 Juanma Barranquero <lekktu@gmail.com> | 68 | 2007-11-09 Juanma Barranquero <lekktu@gmail.com> |
| @@ -131,8 +132,7 @@ | |||
| 131 | * progmodes/fortran.el (comment-region-function) | 132 | * progmodes/fortran.el (comment-region-function) |
| 132 | (uncomment-region-function): Pacify byte compiler. | 133 | (uncomment-region-function): Pacify byte compiler. |
| 133 | 134 | ||
| 134 | * vc.el (vc-diff-internal): Remove code for an old version of | 135 | * vc.el (vc-diff-internal): Remove code for an old version of gnus. |
| 135 | gnus. | ||
| 136 | 136 | ||
| 137 | 2007-11-08 Michael Albinus <michael.albinus@gmx.de> | 137 | 2007-11-08 Michael Albinus <michael.albinus@gmx.de> |
| 138 | 138 | ||
diff --git a/lisp/files.el b/lisp/files.el index f2caa0abe82..2c658ac1d3f 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -450,7 +450,7 @@ use `before-save-hook'.") | |||
| 450 | 450 | ||
| 451 | (defcustom enable-local-variables t | 451 | (defcustom enable-local-variables t |
| 452 | "Control use of local variables in files you visit. | 452 | "Control use of local variables in files you visit. |
| 453 | The value can be t, nil, :safe, or something else. | 453 | The value can be t, nil, :safe, :all, or something else. |
| 454 | 454 | ||
| 455 | A value of t means file local variables specifications are obeyed | 455 | A value of t means file local variables specifications are obeyed |
| 456 | if all the specified variable values are safe; if any values are | 456 | if all the specified variable values are safe; if any values are |