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
7837948f
Commit
7837948f
authored
Oct 31, 2007
by
YAMAMOTO Mitsuharu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[USE_ATSUI] (Fmac_atsu_font_face_attributes):
Fix conversion from Lisp object to ATSUFontID.
parent
5126b171
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/macfns.c
src/macfns.c
+2
-2
No files found.
src/ChangeLog
View file @
7837948f
2007-10-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
Fix conversion from Lisp object to ATSUFontID.
2007-10-30 Jason Rumney <jasonr@gnu.org>
* xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
...
...
src/macfns.c
View file @
7837948f
...
...
@@ -4621,8 +4621,8 @@ ID is specified by either an integer or a float. */)
Lisp_Object result;
check_mac ();
CHECK_NUMBER_OR_FLOAT
(
id
);
font_id
=
NUMB
ERP
(
id
)
?
XINT
(
id
)
:
(
ATSUFontID
)
XFLOAT
(
id
);
CHECK_NUMBER_OR_FLOAT
(id);
font_id =
INTEG
ERP (id) ? XINT (id) : XFLOAT
_DATA
(id);
BLOCK_INPUT;
result = mac_atsu_font_face_attributes (font_id);
UNBLOCK_INPUT;
...
...
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