]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/mouse-copy.el: Use lexical-binding.
authorStefan Kangas <stefan@marxist.se>
Sun, 7 Mar 2021 03:33:45 +0000 (04:33 +0100)
committerStefan Kangas <stefan@marxist.se>
Sun, 7 Mar 2021 03:35:36 +0000 (04:35 +0100)
lisp/mouse-copy.el

index 8155c9dff304a6b5dc213f478b063ae3e4dc99b5..14fbb51b27efba447ac61fa3b7f589208efc53b9 100644 (file)
@@ -1,4 +1,4 @@
-;;; mouse-copy.el --- one-click text copy and move
+;;; mouse-copy.el --- one-click text copy and move  -*- lexical-binding: t -*-
 
 ;; Copyright (C) 1996, 2001-2021 Free Software Foundation, Inc.
 
@@ -213,8 +213,7 @@ by johnh@ficus.cs.ucla.edu."
   (if (mouse-drag-secondary start-event)
       (progn
        (mouse-kill-preserving-secondary)
-       (insert (gui-get-selection 'SECONDARY))))
-)
+        (insert (gui-get-selection 'SECONDARY)))))
 
 (provide 'mouse-copy)