mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.5003: cannot do bitwise shifts
Problem: Cannot do bitwise shifts. Solution: Add the >> and << operators. (Yegappan Lakshmanan, closes #8457)
This commit is contained in:
committed by
Bram Moolenaar
parent
9b2edfd3bf
commit
a061f34191
@@ -4152,6 +4152,8 @@ typedef enum
|
||||
EXPR_MULT, // *
|
||||
EXPR_DIV, // /
|
||||
EXPR_REM, // %
|
||||
EXPR_LSHIFT, // <<
|
||||
EXPR_RSHIFT, // >>
|
||||
// used with ISN_ADDLIST
|
||||
EXPR_COPY, // create new list
|
||||
EXPR_APPEND, // append to first list
|
||||
|
Reference in New Issue
Block a user