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
e0c04065
Commit
e0c04065
authored
May 17, 2003
by
Richard M. Stallman
Browse files
(set_case_table): Pass new arg to map_char_table.
parent
92426155
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/casetab.c
src/casetab.c
+5
-5
No files found.
src/casetab.c
View file @
e0c04065
...
...
@@ -138,8 +138,8 @@ set_case_table (table, standard)
if
(
NILP
(
up
))
{
up
=
Fmake_char_table
(
Qcase_table
,
Qnil
);
map_char_table
(
set_identity
,
Qnil
,
table
,
up
,
0
,
indices
);
map_char_table
(
shuffle
,
Qnil
,
table
,
up
,
0
,
indices
);
map_char_table
(
set_identity
,
Qnil
,
table
,
table
,
up
,
0
,
indices
);
map_char_table
(
shuffle
,
Qnil
,
table
,
table
,
up
,
0
,
indices
);
XCHAR_TABLE
(
table
)
->
extras
[
0
]
=
up
;
}
...
...
@@ -147,14 +147,14 @@ set_case_table (table, standard)
{
canon
=
Fmake_char_table
(
Qcase_table
,
Qnil
);
XCHAR_TABLE
(
table
)
->
extras
[
1
]
=
canon
;
map_char_table
(
set_canon
,
Qnil
,
table
,
table
,
0
,
indices
);
map_char_table
(
set_canon
,
Qnil
,
table
,
table
,
table
,
0
,
indices
);
}
if
(
NILP
(
eqv
))
{
eqv
=
Fmake_char_table
(
Qcase_table
,
Qnil
);
map_char_table
(
set_identity
,
Qnil
,
canon
,
eqv
,
0
,
indices
);
map_char_table
(
shuffle
,
Qnil
,
canon
,
eqv
,
0
,
indices
);
map_char_table
(
set_identity
,
Qnil
,
canon
,
canon
,
eqv
,
0
,
indices
);
map_char_table
(
shuffle
,
Qnil
,
canon
,
canon
,
eqv
,
0
,
indices
);
XCHAR_TABLE
(
table
)
->
extras
[
2
]
=
eqv
;
}
...
...
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