[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: fontset(s) in xemacs 21.1.8



zhaoway <zhaoway@public1.ptt.js.cn> writes:

> ~/.Xresources
> 
>        XEmacs*FontSet: -isas-*-*-r-*-*-16-*-*-*-*-*-gb2312.1980-0,-*-big5-0,-b&h-lucidatypewriter-bold-r-normal-sans-18-180-75-75-m-110-iso8859-1
> 
> I use XEmacs*... as the manpages said. And think I have to. (Because I
> use XEmacs*... all through which seems to force itself ignore all that
> Emacs*...)

The fontSet resource won't be used for buffer contents AFAIK, but
it will be used for labels with Lucid and Athena widget.
So I guess you'll be satisfied to have (set-face-font 'default ....)
in your startup file (.emacs) as below:

(when (and (fboundp 'console-on-window-system-p)
           (console-on-window-system-p))
    (set-face-font
     'default
     '(
        .... other fonts you want ....
        "-isas-*-*-r-*-*-16-*-*-*-*-*-gb2312.1980-0"
        "-*-big5-0"
        "-b&h-lucidatypewriter-bold-r-normal-sans-18-180-75-75-m-110-iso8859-1"
        .... other fonts you want ....
       ) 'global '(mule-fonts) 'prepend))


-- kazz


-- 
[ debian-simplified-chinese@lists.debian.org is the mailing-list that ]
[ this mail was originally sent to,  and was forwarded to this list   ]
[ automatically. GB characters are also converted to Big5 at the same ]
[ time.  Note that there may be errors  during the conversion as this ]
[ is not done by a human!                                             ]


Reply to: