branch: master
commit f4e3f3612f8793c31700e131b4f579ac5c8a3011
Author: Jackson Ray Hamilton <[email protected]>
Commit: Jackson Ray Hamilton <[email protected]>
Add gv-letplace support.
---
context-coloring.el | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/context-coloring.el b/context-coloring.el
index 0fe1427..3010739 100644
--- a/context-coloring.el
+++ b/context-coloring.el
@@ -930,7 +930,8 @@ Parsing the header with CALLBACK."
(puthash callee #'context-coloring-elisp-colorize-condition-case table))
(dolist (callee '("dolist" "dotimes"))
(puthash callee #'context-coloring-elisp-colorize-dolist table))
- (puthash "let" #'context-coloring-elisp-colorize-let table)
+ (dolist (callee '("let" "gv-letplace"))
+ (puthash callee #'context-coloring-elisp-colorize-let table))
(puthash "let*" #'context-coloring-elisp-colorize-let* table)
(puthash "lambda" #'context-coloring-elisp-colorize-lambda table)
(puthash "cond" #'context-coloring-elisp-colorize-cond table)