diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/cc-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el index dbdb2e7cc45..8d7ac9241f6 100644 --- a/lisp/progmodes/cc-mode.el +++ b/lisp/progmodes/cc-mode.el @@ -670,7 +670,7 @@ This function is called from the hook `before-hack-local-variables-hook'." (offsets (cdr (assq 'c-file-offsets file-local-variables-alist)))) (when stile (or (stringp stile) (error "c-file-style is not a string")) - (c-set-style stile)) + (c-set-style stile t)) (when offsets (mapc (lambda (langentry) @@ -741,7 +741,7 @@ Note that the style variables are always made local to the buffer." (when c-file-style (or (stringp c-file-style) (error "c-file-style is not a string")) - (c-set-style c-file-style)) + (c-set-style c-file-style t)) (and c-file-offsets (mapc |