From f50e917cc1a7013460ed6fb1530024dadbb05916 Mon Sep 17 00:00:00 2001 From: mogami Date: Sat, 20 Sep 2003 18:44:22 +0000 Subject: [PATCH] =?utf8?q?=E3=83=A1=E3=83=8B=E3=83=A5=E3=83=BC=E3=81=A7?= =?utf8?q?=E3=82=AD=E3=83=BC=E3=83=AF=E3=83=BC=E3=83=89=E3=82=92=E6=93=8D?= =?utf8?q?=E4=BD=9C=E3=81=97=E3=81=9F=E6=99=82=E3=81=AB=E3=80=81tb->change?= =?utf8?q?d=E3=83=95=E3=83=A9=E3=82=B0=E3=82=92=E7=AB=8B=E3=81=A6=E5=BF=98?= =?utf8?q?=E3=82=8C=E3=81=9F=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/autopick.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/autopick.c b/src/autopick.c index e20ab0258..ffe43c5d6 100644 --- a/src/autopick.c +++ b/src/autopick.c @@ -2254,6 +2254,9 @@ static void toggle_keyword(text_body_type *tb, int flg) /* Now dirty */ tb->dirty_flags |= DIRTY_ALL; + + /* Text is changed */ + tb->changed = TRUE; } } @@ -2348,6 +2351,9 @@ static void toggle_command_letter(text_body_type *tb, byte flg) /* Now dirty */ tb->dirty_flags |= DIRTY_ALL; + + /* Text is changed */ + tb->changed = TRUE; } } @@ -2416,6 +2422,9 @@ static void add_keyword(text_body_type *tb, int flg) /* Now dirty */ tb->dirty_flags |= DIRTY_ALL; + + /* Text is changed */ + tb->changed = TRUE; } } -- 2.11.0