From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Anselm Helbig Newsgroups: gmane.emacs.help Subject: Re: predictive mode and =?iso-8859-1?q?=27=E3=27?= Date: Sat, 14 Jul 2007 12:14:07 +0200 Organization: Freie Universitaet Berlin Message-ID: <87r6nb5m34.wl@nospam.anselm.chemie.fu-berlin.de> References: <1184333068.581937.161990@r34g2000hsd.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1184409637 29669 80.91.229.12 (14 Jul 2007 10:40:37 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 14 Jul 2007 10:40:37 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Jul 14 12:40:36 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 1I9f3D-000833-0L for geh-help-gnu-emacs@m.gmane.org; Sat, 14 Jul 2007 12:40:35 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I9f3C-0008Pe-Eq for geh-help-gnu-emacs@m.gmane.org; Sat, 14 Jul 2007 06:40:34 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 24 Original-X-Trace: news.uni-berlin.de 1hIARLzxrQ7+peylWMDnRwk1rVJFODrV4KLID52rlic7kveMrXw/tcVwuD Cancel-Lock: sha1:RmWZo3MXZpMV+aSgK4U35I1MMkE= In-Reply-To: <1184333068.581937.161990@r34g2000hsd.googlegroups.com> Mail-Followup-To: anselm@chemie.fu-berlin.de User-Agent: Wanderlust/2.15.5 (Almost Unreal) Emacs/22.0 Mule/5.0 (SAKAKI) Original-Xref: shelby.stanford.edu gnu.emacs.help:150095 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:45680 Archived-At: > I'm trying to start using predictive and have this annoying problem. > It looks like predictive considers portuguese characters like =E3 or =F3 > as end-of-word characters (I have to type them pressing ~ then a, > maybe that's a problem?) >=20 > Here's the situation: when I type 'n', predictive suggests '(0) nil'. > If I continue typing 'n=E3o' , I end up getting 'nil=E3o'. The nil is > inserted... I haven't used predictive mode yet, so I can't comment on that. But the usual way emacs determines if some character belongs to a word or not is by syntax tables; these tables are mode-specific. When I put point on the letter `=E3', `C-u C-x =3D' gives me some information about the character (I'm using GNU Emacs 22), and it says that it's syntax is "w which means: word". What emacs are you using, and what mode are you in? Does M-f (forward-word) and M-b (backward-word) stop at accented characters? Maybe you can do something about it by fiddling with the syntax table (look them up in the elisp manual).=20 HTH,=20 Anselm