diff options
author | Eduardo Julian | 2021-01-28 20:14:11 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-01-28 20:14:11 -0400 |
commit | 1797521191746640e761cc1b4973d46b8c403dee (patch) | |
tree | 197b60bf206f75c32a930b85910101c6d4c0d0f9 /lux-mode | |
parent | 43d28326ad59c74439b96343cc8f619ed7d90231 (diff) |
Implemented arithmetic right-shift in terms of logic right-shift.
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index d416c3b25..33bc0d736 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -335,7 +335,7 @@ Called by `imenu--generic-function'." ;; Data (data//record (altRE "get@" "set@" "update@")) (data//signature (altRE "open:" "structure" "\\\\")) - (data//implicit (altRE "implicit:" "implicit" "\\\\\\\\")) + (data//implicit (altRE "implicit:" "\\\\\\\\")) (data//collection (altRE "list" "list&" "row" "tree")) ;; Code (code//quotation (altRE "`" "`'" "'" "~" "~\\+" "~!" "~'")) |