branch: elpa/d-mode
commit c4a8921d8ae506b040610db007726276905468bf
Author: Roy Crihfield <[email protected]>
Commit: Roy Crihfield <[email protected]>

    Added '^^=' to assignement operators
---
 d-mode.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/d-mode.el b/d-mode.el
index a2e93d8..3757058 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -111,7 +111,8 @@
 
 (c-lang-defconst c-assignment-operators
   ;; List of all assignment operators.
-  d  '("=" "*=" "/=" "%=" "+=" "-=" ">>=" "<<=" ">>>=" "&=" "^=" "|=" "~="))
+  d  '("=" "*=" "/=" "%=" "+=" "-=" ">>=" "<<=" ">>>=" "&=" "^=" "^^="
+       "|=" "~="))
 
 (c-lang-defconst c-other-op-syntax-tokens
   "List of the tokens made up of characters in the punctuation or

Reply via email to