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
fdf91be0
Commit
fdf91be0
authored
May 17, 2003
by
Richard M. Stallman
Browse files
(map_char_table): Fix previous change.
parent
1fd1cc2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
src/fns.c
src/fns.c
+6
-4
No files found.
src/fns.c
View file @
fdf91be0
...
...
@@ -2697,13 +2697,15 @@ map_char_table (c_function, function, table, subtable, arg, depth, indices)
{
int c1, c2, c;
if (NILP (elt))
elt = XCHAR_TABLE (subtable)->defalt;
if (NILP (elt))
elt = Faref (table, make_number (i));
c1 = depth >= 1 ? XFASTINT (indices[1]) : 0;
c2 = depth >= 2 ? XFASTINT (indices[2]) : 0;
c = MAKE_CHAR (charset, c1, c2);
if (NILP (elt))
elt = XCHAR_TABLE (subtable)->defalt;
if (NILP (elt))
elt = Faref (table, make_number (c));
if (c_function)
(*c_function) (arg, make_number (c), elt);
else
...
...
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