Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
dcafe1c7
Commit
dcafe1c7
authored
Oct 06, 2003
by
Kenichi Handa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
0e3dd87a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
4 deletions
+26
-4
src/ChangeLog.22
src/ChangeLog.22
+22
-0
src/fontset.h
src/fontset.h
+2
-1
src/lisp.h
src/lisp.h
+2
-3
No files found.
src/ChangeLog.22
View file @
dcafe1c7
2003-10-06 Kenichi Handa <handa@m17n.org>
* charset.h (charset_unicode): Extern it.
* charset.c (string_xstring_p): Check by (C >= 0x100).
(find_charsets_in_text): Format of the arc CHARSETS changed. New
arg MULTIBYTE.
(Ffind_charset_region, Ffind_charset_string): Adjusted for the
change of find_charsets_in_text.
(Fsplit_char): Fix doc. Never return unknown.
* chartab.c (char_table_translate): Use CHARACTERP, not INETEGERP.
* coding.c (Fdefine_coding_system_alias): Update
Vcoding_system_list.
* fontset.c (load_font_get_repertory): Pay attention to the case
that ENCODING of a font is specified by a char-table.
* xterm.c (x_get_font_repertory): Handle the case that the
encoding of font is other than Unicode.
2003-10-02 Kenichi Handa <handa@m17n.org>
* term.c (encode_terminal_code): Don't handle glyph-table. Check
...
...
src/fontset.h
View file @
dcafe1c7
...
...
@@ -43,7 +43,8 @@ struct font_info
/* Full name of the font given by a window system. */
char
*
full_name
;
/* Charset of characters displayed by the font. */
/* Charset to encode a character code into a glyph code of the
font. */
int
charset
;
#ifdef WINDOWSNT
...
...
src/lisp.h
View file @
dcafe1c7
...
...
@@ -697,9 +697,8 @@ struct Lisp_Vector
? XSUB_CHAR_TABLE (XCHAR_TABLE (CT)->ascii)->contents[IDX] \
: char_table_ref ((CT), (IDX)))
/* Almost equivalent to Faref (CT, IDX) with optimization for ASCII
and 8-bit Europeans characters. However, if the result is nil,
return IDX.
/* Almost equivalent to Faref (CT, IDX). However, if the result is
not a character, return IDX.
For these characters, do not check validity of CT
and do not follow parent. */
...
...
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