aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMattias EngdegÄrd2020-01-05 12:22:05 +0100
committerMattias EngdegÄrd2020-01-05 12:22:05 +0100
commit9d38564cdde8cbe9d4c08a7ffef7f25e9692814a (patch)
tree4a9029f4b29a5f66b8e44403b1142f47ff92aab9 /lisp
parent2d5d0fa1b4a15079850a6c046234bafeb26c82c0 (diff)
downloademacs-9d38564cdde8cbe9d4c08a7ffef7f25e9692814a.tar.gz
emacs-9d38564cdde8cbe9d4c08a7ffef7f25e9692814a.zip
; * lisp/x-dnd.el (x-dnd-get-motif-value): Fix typo.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/x-dnd.el2
1 files changed, 1 insertions, 1 deletions
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."
540 (ash (aref data (1+ offset)) 8) 540 (ash (aref data (1+ offset)) 8)
541 (aref data offset)) 541 (aref data offset))
542 (+ (ash (aref data offset) 24) 542 (+ (ash (aref data offset) 24)
543 (aref data (1+ offset) 16) 543 (ash (aref data (1+ offset)) 16)
544 (ash (aref data (+ 2 offset)) 8) 544 (ash (aref data (+ 2 offset)) 8)
545 (aref data (+ 3 offset))))))) 545 (aref data (+ 3 offset)))))))
546 546