branch: master
commit ceece6009be34a185b51ce86d330af05d5dda226
Author: Jackson Ray Hamilton <[email protected]>
Commit: Jackson Ray Hamilton <[email protected]>
Trivial cleanup.
---
context-coloring-emacs-lisp.el | 2 +-
context-coloring-javascript.el | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/context-coloring-emacs-lisp.el b/context-coloring-emacs-lisp.el
index 7bda871..e2556e5 100644
--- a/context-coloring-emacs-lisp.el
+++ b/context-coloring-emacs-lisp.el
@@ -697,7 +697,7 @@ It could be a quoted or backquoted expression."
(cond
;; Just colorize the changed region.
(context-coloring-changed-p
- (let* ( ;; Prevent `beginning-of-defun' from making poor assumptions.
+ (let* (;; Prevent `beginning-of-defun' from making poor assumptions.
(open-paren-in-column-0-is-defun-start nil)
;; Seek the beginning and end of the previous and next
;; offscreen defuns, so just enough is colored.
diff --git a/context-coloring-javascript.el b/context-coloring-javascript.el
index fdf4449..d145184 100644
--- a/context-coloring-javascript.el
+++ b/context-coloring-javascript.el
@@ -138,7 +138,6 @@ this for ES6 code; disable it elsewhere."
"\\)")
"Match a comment body hinting at a Node.js program.")
-;; TODO: Add ES6 module detection.
(defun context-coloring-js2-top-level-local-p ()
"Guess whether top-level variables are local.
For instance, the current file could be a Node.js program."