Commit e2bccd5 1 parent f5f336e commit e2bccd5 Copy full SHA for e2bccd5
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -552,10 +552,10 @@ classes of EVENT (since they have the same event number)."
552
552
(cache (slot-value obj 'request-cache )))
553
553
(when extension-opcode
554
554
(setq msg (vconcat (vector extension-opcode) msg))
555
- (setq len ( 1+ len) ))
555
+ (cl-incf len))
556
556
(when (> 2 (length msg)) ; for short message (e.g. GetInputFocus)
557
557
(setq msg (vconcat msg [0]))
558
- (setq len ( 1+ len) ))
558
+ (cl-incf len))
559
559
(setq msg
560
560
(vconcat (substring msg 0 2 )
561
561
(funcall (if (slot-value request '~lsb ) #'xcb:-pack-u2-lsb
Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ an `xelb-auto-padding' attribute."
347
347
(expression (xelb-node-subnode i)))
348
348
(if expression
349
349
(setq value (xelb-parse-expression expression))
350
- (setq value (1+ value) ))
350
+ (cl-incf value))
351
351
;; Omit the rare enums that do not fit in a fixnum in
352
352
;; 32-bit Emacs, so that the resulting .el and .elc
353
353
;; files are portable to 32-bit Emacs. Admittedly
You can’t perform that action at this time.
0 commit comments