Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
05756f21
Commit
05756f21
authored
Jul 13, 2009
by
Kenichi Handa
Browse files
(sub_char_table_ref_and_range): Fix the range check against max_char.
parent
fb6b6049
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/chartab.c
src/chartab.c
+1
-1
No files found.
src/chartab.c
View file @
05756f21
...
...
@@ -257,7 +257,7 @@ sub_char_table_ref_and_range (table, c, from, to, defalt)
break
;
}
}
while
((
c
=
min_char
+
(
index
+
1
)
*
chartab_chars
[
depth
])
<
max_char
while
((
c
=
min_char
+
(
index
+
1
)
*
chartab_chars
[
depth
])
<
=
max_char
&&
*
to
>=
c
)
{
Lisp_Object
this_val
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment