From: Mattias EngdegÄrd Date: Sun, 5 Jan 2020 11:22:05 +0000 (+0100) Subject: ; * lisp/x-dnd.el (x-dnd-get-motif-value): Fix typo. X-Git-Tag: emacs-28.0.90~7908^2~170 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9d38564cdde8cbe9d4c08a7ffef7f25e9692814a;p=emacs.git ; * lisp/x-dnd.el (x-dnd-get-motif-value): Fix typo. --- diff --git a/lisp/x-dnd.el b/lisp/x-dnd.el index 1272225a34f..4297ef4ed4a 100644 --- a/lisp/x-dnd.el +++ b/lisp/x-dnd.el @@ -540,7 +540,7 @@ FORMAT is 32 (not used). MESSAGE is the data part of an XClientMessageEvent." (ash (aref data (1+ offset)) 8) (aref data offset)) (+ (ash (aref data offset) 24) - (aref data (1+ offset) 16) + (ash (aref data (1+ offset)) 16) (ash (aref data (+ 2 offset)) 8) (aref data (+ 3 offset)))))))