aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJackson Ray Hamilton2019-02-09 11:50:05 -0800
committerDmitry Gutov2019-02-13 03:20:18 +0300
commitdd319f2711f895eec87c1017b82cd9d88d9ecd0a (patch)
tree0c6106ecd95089a0344002319aae2bd612d73727
parente05ea0ea3117aa0ddd963585d5647fe116b8ffa0 (diff)
downloademacs-dd319f2711f895eec87c1017b82cd9d88d9ecd0a.tar.gz
emacs-dd319f2711f895eec87c1017b82cd9d88d9ecd0a.zip
js-indent-align-list-continuation: Make variable safe
* lisp/progmodes/js.el (js-indent-align-list-continuation): Indicate variable is safe as a file-local variable. This fixes the js-indent-align-list-continuation-nil test when run with make.
-rw-r--r--lisp/progmodes/js.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el
index a94a2fe134e..6e18e30517a 100644
--- a/lisp/progmodes/js.el
+++ b/lisp/progmodes/js.el
@@ -477,6 +477,7 @@ This applies to function movement, marking, and so on."
477 "Align continuation of non-empty ([{ lines in `js-mode'." 477 "Align continuation of non-empty ([{ lines in `js-mode'."
478 :version "26.1" 478 :version "26.1"
479 :type 'boolean 479 :type 'boolean
480 :safe 'booleanp
480 :group 'js) 481 :group 'js)
481 482
482(defcustom js-comment-lineup-func #'c-lineup-C-comments 483(defcustom js-comment-lineup-func #'c-lineup-C-comments