diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-12-06 15:34:59 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-12-06 15:34:59 +0000 |
commit | b857059c0aaae85bff9c897b97dcba532e93e40a (patch) | |
tree | 332dda1547c59561c9379a620fad24d8abbc1ead /lisp/progmodes/js.el | |
parent | c2dae51b689c88f094e49963565f39a171b2a46a (diff) | |
download | emacs-b857059c0aaae85bff9c897b97dcba532e93e40a.tar.gz |
* progmodes/js.el (js--js-not): Add null to the list of values.
Diffstat (limited to 'lisp/progmodes/js.el')
-rw-r--r-- | lisp/progmodes/js.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index 96b49499f4f..cba315ac2d4 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -2603,7 +2603,7 @@ with `js--js-encode-value'." js-js-timeout)))) (defsubst js--js-not (value) - (memq value '(nil false undefined))) + (memq value '(nil null false undefined))) (defsubst js--js-true (value) (not (js--js-not value))) |