bug-gnu-emacs
[Top][All Lists]
Advanced

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

flyspell


From: Frederik Fouvry
Subject: flyspell
Date: Tue, 7 Jun 2005 16:28:06 +0200 (CEST)

This bug report will be sent to the Free Software Foundation,
not to your local site managers!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.

Your bug report will be posted to the bug-gnu-emacs@gnu.org mailing list,
and to the gnu.emacs.bug news group.

I do not manage to compile the bootstrap version of Emacs anymore
because of missing autoload cookies in flyspell.el.  A patch is
included:

Index: lisp/textmodes/flyspell.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/textmodes/flyspell.el,v
retrieving revision 1.65
diff -c -r1.65 flyspell.el
*** lisp/textmodes/flyspell.el  6 Jun 2005 21:06:19 -0000       1.65
--- lisp/textmodes/flyspell.el  7 Jun 2005 13:14:30 -0000
***************
*** 58,63 ****
--- 58,64 ----
  ;*---------------------------------------------------------------------*/
  ;*    Which emacs are we currently running                             */
  ;*---------------------------------------------------------------------*/
+ ;;;###autoload
  (defvar flyspell-emacs
    (cond
     ((string-match "XEmacs" emacs-version)
***************
*** 66,71 ****
--- 67,73 ----
      'emacs))
    "The type of Emacs we are currently running.")
  
+ ;;;###autoload
  (defvar flyspell-use-local-map
    (or (eq flyspell-emacs 'xemacs)
        (not (string< emacs-version "20"))))
***************
*** 262,272 ****
--- 264,276 ----
    :group 'flyspell
    :type '(choice string (const nil)))
  
+ ;;;###autoload
  (defcustom flyspell-use-meta-tab t
    "*Non-nil means that flyspell uses META-TAB to correct word."
    :group 'flyspell
    :type 'boolean)
  
+ ;;;###autoload
  (defcustom flyspell-auto-correct-binding
    [(control ?\;)]
    "The key binding for flyspell auto correction."
***************
*** 421,426 ****
--- 425,431 ----
      (define-key map [(control \.)] 'flyspell-auto-correct-word)
      map))
  
+ ;;;###autoload
  (defvar flyspell-mode-map
    (let ((map (make-sparse-keymap)))
      ;; mouse, keyboard bindings and misc definition




reply via email to

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