Make paragraph vars local for js-mode (Bug#6071).
* progmodes/js.el (js-mode): Make paragraph variables local before calling c-setup-paragraph-variables (Bug#6071).
This commit is contained in:
parent
aa4d4e4a1d
commit
f5d6ff44b7
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-05-02 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* progmodes/js.el (js-mode): Make paragraph variables local before
|
||||
calling c-setup-paragraph-variables (Bug#6071).
|
||||
|
||||
2010-05-01 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* composite.el (compose-region, reference-point-alist): Fix typos
|
||||
|
|
|
@ -3327,6 +3327,13 @@ Key bindings:
|
|||
comment-start-skip "\\(//+\\|/\\*+\\)\\s *")
|
||||
|
||||
(let ((c-buffer-is-cc-mode t))
|
||||
;; FIXME: These are normally set by `c-basic-common-init'. Should
|
||||
;; we call it instead? (Bug#6071)
|
||||
(make-local-variable 'paragraph-start)
|
||||
(make-local-variable 'paragraph-separate)
|
||||
(make-local-variable 'paragraph-ignore-fill-prefix)
|
||||
(make-local-variable 'adaptive-fill-mode)
|
||||
(make-local-variable 'adaptive-fill-regexp)
|
||||
(c-setup-paragraph-variables))
|
||||
|
||||
(set (make-local-variable 'syntax-begin-function)
|
||||
|
|
Loading…
Add table
Reference in a new issue