GNU bug report logs -
#7273
24.0.50; finally found what has been subtly corrupting my files over the years: C-. flyspell-auto-correct-word
Previous Next
Reported by: jidanni <at> jidanni.org
Date: Sat, 23 Oct 2010 20:49:02 UTC
Severity: minor
Tags: notabug, wontfix
Found in version 24.0.50
Done: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 7273 in the body.
You can then email your comments to 7273 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
owner <at> debbugs.gnu.org, rfrancoise <at> debian.org, bug-gnu-emacs <at> gnu.org
:
bug#7273
; Package
emacs
.
(Sat, 23 Oct 2010 20:49:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
jidanni <at> jidanni.org
:
New bug report received and forwarded. Copy sent to
rfrancoise <at> debian.org, bug-gnu-emacs <at> gnu.org
.
(Sat, 23 Oct 2010 20:49:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Gentlemen, save the following into a new file (don't just use this
buffer), then with the cursor at the top and flyspell-mode enabled,
"accidentally" hit C-. (C-. runs the command flyspell-auto-correct-word.)
-------
# ●台灣大學99學年度上學期婦女與性別研究學程暨通識課程系列演講
# 課程:性別關係(授課教師/張玨)
時間:每週四早上9:10-11:10
地點:活大禮堂
# 以下十四場精彩演講,歡迎有興趣的朋友自由旁聽參加!
# 09/16 性別平等教育與身心健康/張玨
# 09/23 行而不察的「性別」與生活/林維紅
09/30 婦運跟同運/王雅各
10/07 性別與公共參與/黃長玲
10/14 心事誰人知:加害人認知教育團體/嚴祥鸞
10/21 性別與環保:女性參與社區營造/江鳳英
10/28 性別與空間環境/謝園
11/4 性別與運動/張菊惠
11/11 性別與宗教/鄒逸蘭
11/18 性別與溝通/葉德蘭
11/25 男女交往的法律議題/尤美女
12/02 性別與暴力/謝臥龍
12/09 談情說愛、話「性」道「性別」/鄧惠文
12/16 性/別自我的認同/賴杞豐
張冒昧/鶯歌4982444096,4444408859
民權路4444號0444432663Ching Ching Lin
---------
Note how subtly, way down at the bottom of the file, a word (Ching) has
been changed! I'm disabling C-. today. I've finally found what has been
subtly corrupting my files over the years! M-tab is harder to hit by
accident, so I'm leaving it.
In GNU Emacs 24.0.50.1 (i486-pc-linux-gnu, GTK+ Version 2.20.1)
of 2010-10-16 on elegiac, modified by Debian
(emacs-snapshot package, version 1:20101016-1)
P.S., what is the best way to disable C-.? global-(un)set-key?
Information forwarded
to
owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org
:
bug#7273
; Package
emacs
.
(Sun, 24 Oct 2010 17:31:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 7273 <at> debbugs.gnu.org (full text, mbox):
jidanni <at> jidanni.org writes:
> Gentlemen, save the following into a new file (don't just use this
> buffer), then with the cursor at the top and flyspell-mode enabled,
> "accidentally" hit C-. (C-. runs the command flyspell-auto-correct-word.)
> ...
>
> 張冒昧/鶯歌4982444096,4444408859
> 民權路4444號0444432663Ching Ching Lin
> ---------
> Note how subtly, way down at the bottom of the file, a word (Ching) has
> been changed! I'm disabling C-. today. I've finally found what has been
> subtly corrupting my files over the years! M-tab is harder to hit by
> accident, so I'm leaving it.
Hmm, I can't reproduce this. From the top of the file, C-. moves cursor
to "99" on the first line. Is this dictionary specific?
> P.S., what is the best way to disable C-.? global-(un)set-key?
(define-key flyspell-mode-map [(control ?\.)] nil)
should do the trick, once Flyspell is loaded.
Information forwarded
to
owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org
:
bug#7273
; Package
emacs
.
(Sun, 24 Oct 2010 18:03:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 7273 <at> debbugs.gnu.org (full text, mbox):
>>>>> "CY" == Chong Yidong <cyd <at> stupidchicken.com> writes:
CY> Hmm, I can't reproduce this. From the top of the file, C-. moves cursor
CY> to "99" on the first line. Is this dictionary specific?
$ find jidanni.org/comp/configuration/|xargs grep dict
jidanni.org/comp/configuration/.emacs:;(setq ispell-dictionary "american")
jidanni.org/comp/configuration/.emacs:(setq ispell-local-dictionary "american"); #bug 6143
Anyway, my stuff is all in http://jidanni.org/comp/configuration/
>> P.S., what is the best way to disable C-.? global-(un)set-key?
CY> should do the trick, once Flyspell is loaded.
You will have to tell me what to put into .emacs.
(setq
flyspell-mode-hook
'(define-key flyspell-mode-map [(control ?\.)] nil)
)
of course gives an error because I don't know what I am doing.
Information forwarded
to
owner <at> debbugs.gnu.org, bug-gnu-emacs <at> gnu.org
:
bug#7273
; Package
emacs
.
(Sun, 24 Oct 2010 21:46:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 7273 <at> debbugs.gnu.org (full text, mbox):
jidanni <at> jidanni.org writes:
>>> P.S., what is the best way to disable C-.? global-(un)set-key?
>
> CY> should do the trick, once Flyspell is loaded.
>
> You will have to tell me what to put into .emacs.
Try this ---
(eval-after-load 'flyspell
'(define-key flyspell-mode-map [(control ?\.)] nil))
bug closed, send any further explanations to
7273 <at> debbugs.gnu.org and jidanni <at> jidanni.org
Request was from
Lars Magne Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Sat, 02 Jul 2011 14:25:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 31 Jul 2011 11:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 14 years and 18 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.