diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-12-12 10:12:51 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-12-12 10:12:51 +0000 |
commit | 7d2a95143a15e69712313095aa24dd66a3b16f64 (patch) | |
tree | f8340be4c09e2a1bf466e1ba0ded7cae40506061 /lisp/progmodes/cc-vars.el | |
parent | f2f8d5f2d4070b0af5a37c17a7a3b860355d3f58 (diff) | |
download | emacs-7d2a95143a15e69712313095aa24dd66a3b16f64.tar.gz |
Fix typo.
Diffstat (limited to 'lisp/progmodes/cc-vars.el')
-rw-r--r-- | lisp/progmodes/cc-vars.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/cc-vars.el b/lisp/progmodes/cc-vars.el index 291f8b584ce..fcfdbc53bb4 100644 --- a/lisp/progmodes/cc-vars.el +++ b/lisp/progmodes/cc-vars.el @@ -176,7 +176,7 @@ it takes its value from the style system (see `c-default-style' and `c-style-alist') when a CC Mode buffer is initialized. Otherwise, the value set here overrides the style system (there is a variable `c-old-style-variable-behavior' that changes this, though).")) - (typ (eval name (plist-get args :type))) + (typ (eval (plist-get args :type))) (type (if (consp typ) typ (list typ))) (head (car type)) (tail (cdr type)) |