aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/bidi.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7f179c13420..b6bc36e10ce 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -78,6 +78,8 @@
78 Rename locals to avoid shadowing. 78 Rename locals to avoid shadowing.
79 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros. 79 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
80 80
81 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
82
812011-03-06 Chong Yidong <cyd@stupidchicken.com> 832011-03-06 Chong Yidong <cyd@stupidchicken.com>
82 84
83 * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06 85 * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06
diff --git a/src/bidi.c b/src/bidi.c
index eeacf65bd5c..1289798dd8c 100644
--- a/src/bidi.c
+++ b/src/bidi.c
@@ -180,7 +180,7 @@ bidi_get_type (int ch, bidi_dir_t override)
180 } 180 }
181} 181}
182 182
183void 183static void
184bidi_check_type (bidi_type_t type) 184bidi_check_type (bidi_type_t type)
185{ 185{
186 if (type < UNKNOWN_BT || type > NEUTRAL_ON) 186 if (type < UNKNOWN_BT || type > NEUTRAL_ON)