diff options
| author | Kenichi Handa | 2006-06-20 01:17:23 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-06-20 01:17:23 +0000 |
| commit | 35e7c6bc9147b97464fc4bd236c98709cc11ebcb (patch) | |
| tree | 3188aff4bc0b748b1693ba7cf3684d035d305439 /src | |
| parent | b69299e7fd030fb065d35de2480dcbcbd789a22e (diff) | |
| download | emacs-35e7c6bc9147b97464fc4bd236c98709cc11ebcb.tar.gz emacs-35e7c6bc9147b97464fc4bd236c98709cc11ebcb.zip | |
(x_set_font) [USE_FONT_BACKEND]: Fix argument to
font_open_by_name.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index 739b29c897e..0eaab69e961 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -3092,7 +3092,7 @@ x_set_font (f, arg, oldval) | |||
| 3092 | { | 3092 | { |
| 3093 | Lisp_Object ascii_font = fontset_ascii (fontset); | 3093 | Lisp_Object ascii_font = fontset_ascii (fontset); |
| 3094 | 3094 | ||
| 3095 | font_object = font_open_by_name (f, SDATA (arg)); | 3095 | font_object = font_open_by_name (f, SDATA (ascii_font)); |
| 3096 | } | 3096 | } |
| 3097 | } | 3097 | } |
| 3098 | else | 3098 | else |