diff options
| author | Glenn Morris | 2012-08-15 15:03:14 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-08-15 15:03:14 -0400 |
| commit | 6652b0bc0ab3eb055f64f819fdb3c2329d7400b3 (patch) | |
| tree | 7b6e07a3adb43aa5d7ae35cb01bd5c689fcec08b | |
| parent | e84a9018eca592c250831398edfcfc30780b4f34 (diff) | |
| download | emacs-6652b0bc0ab3eb055f64f819fdb3c2329d7400b3.tar.gz emacs-6652b0bc0ab3eb055f64f819fdb3c2329d7400b3.zip | |
* lisp/vc/log-edit.el (log-edit-font-lock-gnu-style): Mark safe if boolean.
Do not merge to trunk.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc/log-edit.el | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7293a4626ff..d205e36a749 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -2,6 +2,10 @@ | |||
| 2 | 2 | ||
| 3 | * Version 24.2 released. | 3 | * Version 24.2 released. |
| 4 | 4 | ||
| 5 | 2012-08-15 Glenn Morris <rgm@gnu.org> | ||
| 6 | |||
| 7 | * vc/log-edit.el (log-edit-font-lock-gnu-style): Mark safe if boolean. | ||
| 8 | |||
| 5 | 2012-08-15 Leo Liu <sdl.web@gmail.com> | 9 | 2012-08-15 Leo Liu <sdl.web@gmail.com> |
| 6 | 10 | ||
| 7 | * net/rcirc.el (rcirc-split-message): Fix for buffer-local | 11 | * net/rcirc.el (rcirc-split-message): Fix for buffer-local |
diff --git a/lisp/vc/log-edit.el b/lisp/vc/log-edit.el index 54d548c09da..4ef2732382e 100644 --- a/lisp/vc/log-edit.el +++ b/lisp/vc/log-edit.el | |||
| @@ -360,6 +360,12 @@ automatically." | |||
| 360 | 'log-edit-header) | 360 | 'log-edit-header) |
| 361 | nil lax))))) | 361 | nil lax))))) |
| 362 | 362 | ||
| 363 | ;; Used in Emacs 24.3+, and in Emacs's .dir-locals.el file. | ||
| 364 | ;; This is a convenience setting so that people committing files | ||
| 365 | ;; to Emacs trunk with Emacs 24point2 do not always get queried | ||
| 366 | ;; about this variable being potentially unsafe. | ||
| 367 | (put 'log-edit-font-lock-gnu-style 'safe-local-variable 'booleanp) | ||
| 368 | |||
| 363 | ;;;###autoload | 369 | ;;;###autoload |
| 364 | (defun log-edit (callback &optional setup params buffer mode &rest _ignore) | 370 | (defun log-edit (callback &optional setup params buffer mode &rest _ignore) |
| 365 | "Setup a buffer to enter a log message. | 371 | "Setup a buffer to enter a log message. |