aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJackson Ray Hamilton2019-02-09 11:50:05 -0800
committerDmitry Gutov2019-02-14 04:18:43 +0300
commit58e0e929afd432190296e6a412ff2458420fcb95 (patch)
tree6952a3d77374bf4075d0543a0dffde9f3b78a8f1
parent6d89120b156576ca24e03472563f5ea0f01313f8 (diff)
downloademacs-58e0e929afd432190296e6a412ff2458420fcb95.tar.gz
emacs-58e0e929afd432190296e6a412ff2458420fcb95.zip
Backport: 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. (cherry picked from commit dd319f2711f895eec87c1017b82cd9d88d9ecd0a)
-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 65ffb0e02f7..14571a04e1c 100644
--- a/lisp/progmodes/js.el
+++ b/lisp/progmodes/js.el
@@ -479,6 +479,7 @@ This applies to function movement, marking, and so on."
479 "Align continuation of non-empty ([{ lines in `js-mode'." 479 "Align continuation of non-empty ([{ lines in `js-mode'."
480 :version "26.1" 480 :version "26.1"
481 :type 'boolean 481 :type 'boolean
482 :safe 'booleanp
482 :group 'js) 483 :group 'js)
483 484
484(defcustom js-comment-lineup-func #'c-lineup-C-comments 485(defcustom js-comment-lineup-func #'c-lineup-C-comments