From 30ae0b2c891bf5f252e49598f414097088403469 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 10 Jun 2013 16:37:02 +0200 Subject: [PATCH] lisp/allout.el: Fix make-variable-buffer-local call. --- lisp/ChangeLog | 5 +++++ lisp/allout.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0749b6aa9bd..655bc2ca93f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-06-10 Juanma Barranquero + + * allout.el (allout-encryption-plaintext-sanitization-regexps): + Fix make-variable-buffer-local call to refer to the correct variable. + 2013-06-10 Aidan Gauland * eshell/em-term.el (eshell-visual-commands) diff --git a/lisp/allout.el b/lisp/allout.el index 5a9b03b7a0e..1e4134b3ccf 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -1561,7 +1561,7 @@ Each value can be a regexp or a list with a regexp followed by a substitution string. If it's just a regexp, all its matches are removed before the text is encrypted. If it's a regexp and a substitution, the substitution is used against the regexp matches, a la `replace-match'.") -(make-variable-buffer-local 'allout-encryption-text-removal-regexps) +(make-variable-buffer-local 'allout-encryption-plaintext-sanitization-regexps) ;;;_ = allout-encryption-ciphertext-rejection-regexps (defvar allout-encryption-ciphertext-rejection-regexps nil "Variable for regexps matching plaintext to remove before encryption. -- 2.11.4.GIT