From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Frederik Fouvry Newsgroups: gmane.emacs.bugs Subject: flyspell Date: Tue, 7 Jun 2005 16:28:06 +0200 (CEST) Message-ID: <20050607142806.7407010840@cc.at.coli.uni-sb.de> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1118155156 25607 80.91.229.2 (7 Jun 2005 14:39:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 7 Jun 2005 14:39:16 +0000 (UTC) Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Tue Jun 07 16:39:14 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DffAy-0002dM-Or for geb-bug-gnu-emacs@m.gmane.org; Tue, 07 Jun 2005 16:35:33 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DffHV-0002eo-69 for geb-bug-gnu-emacs@m.gmane.org; Tue, 07 Jun 2005 10:42:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DffGz-0002P1-Gy for bug-gnu-emacs@gnu.org; Tue, 07 Jun 2005 10:41:45 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DffGw-0002N1-P8 for bug-gnu-emacs@gnu.org; Tue, 07 Jun 2005 10:41:42 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DffGu-0002LG-9l for bug-gnu-emacs@gnu.org; Tue, 07 Jun 2005 10:41:40 -0400 Original-Received: from [134.96.7.31] (helo=justus.rz.uni-saarland.de) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DffFE-0000mZ-Br for bug-gnu-emacs@gnu.org; Tue, 07 Jun 2005 10:39:58 -0400 Original-Received: from top.coli.uni-sb.de (top.coli.uni-sb.de [134.96.68.10]) by justus.rz.uni-saarland.de (8.12.10/8.12.10) with ESMTP id j57ES7Hs4397417 for ; Tue, 7 Jun 2005 16:28:07 +0200 (CEST) Original-Received: from cc.at.coli.uni-sb.de (cc.at.coli.uni-sb.de [134.96.104.80]) by top.coli.uni-sb.de (8.9.3p3/8.9.3) with ESMTP id QAA07523 for ; Tue, 7 Jun 2005 16:28:06 +0200 (MET DST) Original-Received: by cc.at.coli.uni-sb.de (Postfix, from userid 1292) id 7407010840; Tue, 7 Jun 2005 16:28:06 +0200 (CEST) Original-To: bug-gnu-emacs@gnu.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.5.1 (justus.rz.uni-saarland.de [134.96.7.31]); Tue, 07 Jun 2005 16:28:07 +0200 (CEST) X-AntiVirus: checked by AntiVir Milter 1.0.6; AVE 6.31.0.5; VDF 6.31.0.8 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:12140 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:12140 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