aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-02-26 03:54:01 +0000
committerGlenn Morris2009-02-26 03:54:01 +0000
commit44ea2d6c29bf01bac52b4e25863b29517ddb410a (patch)
tree72fe85a923549332d0ce5175335294af030d63a3
parent0d0ff7bc4f697a2f7e2e6e83b06a9429239d9bca (diff)
downloademacs-44ea2d6c29bf01bac52b4e25863b29517ddb410a.tar.gz
emacs-44ea2d6c29bf01bac52b4e25863b29517ddb410a.zip
(c-style-variables-are-local-p): Mark as safe if boolean. (Bug#2197)
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/progmodes/cc-vars.el1
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index afed8c8471c..c5e69421eed 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12009-02-26 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/cc-vars.el (c-style-variables-are-local-p):
4 Mark as safe if boolean. (Bug#2197)
5
62009-02-26 Tobias C. Rittweiler <tcr@freebits.de> (tiny change)
7
8 * mail/sendmail.el (sendmail-send-it): `call-process-region' can
9 return a string. (Bug#2428)
10
12009-02-25 Juanma Barranquero <lekktu@gmail.com> 112009-02-25 Juanma Barranquero <lekktu@gmail.com>
2 12
3 * bs.el (bs--down): 13 * bs.el (bs--down):
diff --git a/lisp/progmodes/cc-vars.el b/lisp/progmodes/cc-vars.el
index e3d111885b8..fa5aa538d72 100644
--- a/lisp/progmodes/cc-vars.el
+++ b/lisp/progmodes/cc-vars.el
@@ -1366,6 +1366,7 @@ The list of variables to buffer localize are:
1366 c-special-indent-hook 1366 c-special-indent-hook
1367 c-indentation-style" 1367 c-indentation-style"
1368 :type 'boolean 1368 :type 'boolean
1369 :safe 'booleanp
1369 :group 'c) 1370 :group 'c)
1370 1371
1371(defcustom c-mode-hook nil 1372(defcustom c-mode-hook nil