emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/textmodes/flyspell.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/textmodes/flyspell.el [lexbind]
Date: Wed, 08 Dec 2004 19:34:16 -0500

Index: emacs/lisp/textmodes/flyspell.el
diff -c emacs/lisp/textmodes/flyspell.el:1.46.2.8 
emacs/lisp/textmodes/flyspell.el:1.46.2.9
*** emacs/lisp/textmodes/flyspell.el:1.46.2.8   Fri Nov 12 04:21:23 2004
--- emacs/lisp/textmodes/flyspell.el    Wed Dec  8 23:31:45 2004
***************
*** 1,6 ****
  ;;; flyspell.el --- on-the-fly spell checker
  
! ;; Copyright (C) 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
  
  ;; Author: Manuel Serrano <address@hidden>
  ;; Maintainer: FSF
--- 1,6 ----
  ;;; flyspell.el --- on-the-fly spell checker
  
! ;; Copyright (C) 1998, 2000, 2001, 2002, 2004  Free Software Foundation, Inc.
  
  ;; Author: Manuel Serrano <address@hidden>
  ;; Maintainer: FSF
***************
*** 391,403 ****
  
  (defvar flyspell-mouse-map
    (let ((map (make-sparse-keymap)))
!     (cond
!      ((eq flyspell-emacs 'xemacs)
!       (define-key map [(button2)] #'flyspell-correct-word)
!       (define-key map "\M-\t" #'flyspell-auto-correct-word))
!      (flyspell-use-local-map
!       (define-key map [(mouse-2)] #'flyspell-correct-word)
!       (define-key map "\M-\t" #'flyspell-auto-correct-word)))
      map))
  
  ;;;###autoload
--- 391,399 ----
  
  (defvar flyspell-mouse-map
    (let ((map (make-sparse-keymap)))
!     (define-key map (if (featurep 'xemacs) [button2] [down-mouse-2])
!       #'flyspell-correct-word)
!     (define-key map "\M-\t" #'flyspell-auto-correct-word)
      map))
  
  ;;;###autoload
***************
*** 2123,2127 ****
  
  (provide 'flyspell)
  
! ;;; arch-tag: 05d915b9-e9cf-44fb-9137-fc28f5eaab2a
  ;;; flyspell.el ends here
--- 2119,2123 ----
  
  (provide 'flyspell)
  
! ;; arch-tag: 05d915b9-e9cf-44fb-9137-fc28f5eaab2a
  ;;; flyspell.el ends here




reply via email to

[Prev in Thread] Current Thread [Next in Thread]