]> git.eshelyaron.com Git - emacs.git/commitdiff
(current-global-mousemap, current-local-mousemap): Declare them before use.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 24 Aug 2005 14:41:27 +0000 (14:41 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 24 Aug 2005 14:41:27 +0000 (14:41 +0000)
lisp/term/sun-mouse.el

index 06fe5fd440d380d7c8af1fa741002f57ca091e09..a55c89023206253510e951fb3d1546430bebf564 100644 (file)
@@ -58,6 +58,11 @@ Setting to nil limits the scrollbar to the edge or vertical dividing bar.")
   "Returns a new mousemap."
   (cons 'mousemap nil))
 
+;;; initialize mouse maps
+(defvar current-global-mousemap (make-mousemap))
+(defvar current-local-mousemap nil)
+(make-variable-buffer-local 'current-local-mousemap)
+
 (defun copy-mousemap (mousemap)
   "Return a copy of mousemap."
   (copy-alist mousemap))
@@ -668,13 +673,6 @@ just close the window, and wait for reopening."
   (if stuffstring (send-string-to-terminal stuffstring))
   (send-string-to-terminal "\033[2t")  ; To close EmacsTool window.
   (run-hooks 'suspend-resume-hook))
-;;;
-;;; initialize mouse maps
-;;;
-
-(make-variable-buffer-local 'current-local-mousemap)
-(setq-default current-local-mousemap nil)
-(defvar current-global-mousemap (make-mousemap))
 
 (provide 'sun-mouse)
 (provide 'term/sun-mouse)              ; have to (require 'term/sun-mouse)