From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: flyspell: local abbrev in different languages Date: Fri, 28 Sep 2007 11:12:13 -0400 Message-ID: References: <873ax16d51.fsf@mat.ucm.es> <87tzphjnej.fsf@mat.ucm.es> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1190994081 3541 80.91.229.12 (28 Sep 2007 15:41:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 28 Sep 2007 15:41:21 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Sep 28 17:41:16 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IbHxp-00046r-Lx for geh-help-gnu-emacs@m.gmane.org; Fri, 28 Sep 2007 17:41:14 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IbHxm-0006jE-4g for geh-help-gnu-emacs@m.gmane.org; Fri, 28 Sep 2007 11:41:10 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news2.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.umontreal.ca!news.umontreal.ca.POSTED!not-for-mail Original-NNTP-Posting-Date: Fri, 28 Sep 2007 10:12:13 -0500 Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/23.0.50 (gnu/linux) Cancel-Lock: sha1:F27g4SIVhQckHQWUhfkRDW+zIiQ= Original-Lines: 29 X-Usenet-Provider: http://www.giganews.com Original-NNTP-Posting-Host: 132.204.27.213 Original-X-Trace: sv3-YPdBvsM0O9TmDTzgGdOnkz9drAlViBGcC9YKR+6hPTgTINcqot2EzD6+AKHjLT4dH5u2gXrfFXONdtx!Bz0aPIg74UoSQGFwNFO9ySOOk+xpSKOdsbiBj4CZk2DM9yqBR0Hxp01h17ascmBTRXDlfCTq98fZ!eCZb45KPZirslZ+mzg== Original-X-Complaints-To: abuse@umontreal.ca X-DMCA-Complaints-To: abuse@umontreal.ca X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.35 Original-Xref: shelby.stanford.edu gnu.emacs.help:152441 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:47951 Archived-At: > (define-minor-mode spanish-minor-mode > "Switch Spanish minor mode on." > nil nil nil > (set (make-local-variable 'spanish-minor-mode) t) > (unless (memq 'spanish-minor-mode-abbrev-table abbrev-table-name-list) > (setq spanish-minor-mode-abbrev-table > (copy-abbrev-table text-mode-abbrev-table)) > (add-to-list 'abbrev-table-name-list 'spanish-minor-mode-abbrev-table)) > (setq local-abbrev-table spanish-minor-mode-abbrev-table)) > (defun disable-spanish-minor-mode () > " " > (interactive) > (setq spanish-minor-mode nil) > (setq local-abbrev-table text-mode-abbrev-table)) Looks like you slightly misunderstood what define-minor-mode does. The following might be a good starting point (the spanish-minor-mode covers both enable and disable, as ): (define-minor-mode spanish-minor-mode nil nil nil nil (setq local-abbrev-table (if spanish-minor-mode spanish-minor-mode-abbrev-table text-mode-abbrev-table))) -- Stefan