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
ed09a18b
Commit
ed09a18b
authored
Aug 15, 2002
by
Kenichi Handa
Browse files
*** empty log message ***
parent
73ce348e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
1 deletion
+37
-1
lisp/ChangeLog
lisp/ChangeLog
+11
-0
src/ChangeLog
src/ChangeLog
+25
-0
src/chartab.c
src/chartab.c
+1
-1
No files found.
lisp/ChangeLog
View file @
ed09a18b
2002-08-15 Kenichi Handa <handa@etl.go.jp>
* international/mule-cmds.el (reset-language-environment): Don't
set nonascii-translation-table and nonascii-insert-offset. Call
set-unibyte-charset, not set-primary-charset.
(nonascii-translation-table, nonascii-insert-offset): Declare
these variable as obsolete ones.
(set-language-environment): Call set-unibyte-charset, not
set-primary-charset. Call set-charset-priority with `charset'
info of the language environment.
2002-08-08 Kenichi Handa <handa@etl.go.jp>
* tar-mode.el (tar-extract): Fix previous change.
...
...
src/ChangeLog
View file @
ed09a18b
2002-08-15 Kenichi Handa <handa@etl.go.jp>
* fontset.c (fontset_add): Make the type `int'.
(fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
* character.c (unibyte_char_to_multibyte): Refer to
charset_unibyte, not charset_primary.
(multibyte_char_to_unibyte): Likewise.
(Funibyte_char_to_multibyte): Likewise.
* charset.h: (charset_unibyte): Extern it instead of
charset_primary.
* charset.c (charset_unibyte): Renamed from charset_primary.
(Funibyte_charset): Renamed from Fprimary_charset.
(Fset_unibyte_charset): Renamed from Fset_primary_charset.
(syms_of_charset): Adjusted for the above changes.
* w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
it->multibyte_p is zero.
* lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
Extern deleted.
2002-08-08 Kenichi Handa <handa@etl.go.jp>
* coding.c (Fdefine_coding_system_internal): Fix category setting
...
...
src/chartab.c
View file @
ed09a18b
...
...
@@ -430,7 +430,7 @@ sub_char_table_set_range (table, depth, min_char, from, to, val)
{
int
max_char
=
min_char
+
chartab_chars
[
depth
]
-
1
;
if
(
depth
==
3
||
from
<=
min_char
&&
to
>=
max_char
)
if
(
depth
==
3
||
(
from
<=
min_char
&&
to
>=
max_char
)
)
*
table
=
val
;
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