From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/1462 Path: news.gmane.org!not-for-mail From: Hugh Baker Newsgroups: gmane.emacs.gnus.user Subject: Re: coding-system difficulties Date: Thu, 14 Nov 2002 13:01:33 GMT Organization: University of Toronto Computing Disciplines Facility Message-ID: References: <1mr8dps4ix.fsf@Tempo.Update.UU.SE> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138668229 11382 80.91.229.2 (31 Jan 2006 00:43:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 00:43:49 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:29:12 2006 Original-Newsgroups: gnu.emacs.gnus Original-Path: quimby.gnus.org!news.ccs.neu.edu!news.dfci.harvard.edu!news.cis.ohio-state.edu!news.ems.psu.edu!newsfeed.stanford.edu!nntp.cs.ubc.ca!torn!utnut!cdf.toronto.edu!news X-Nntp-Posting-Host: c2bakerh@seawolf User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Original-Sender: c2bakerh@seawolf.cdf Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:1602 Original-Lines: 18 X-Gnus-Article-Number: 1602 Tue Jan 17 17:29:12 2006 Xref: news.gmane.org gmane.emacs.gnus.user:1462 Archived-At: Cyprian Laskowski writes: > But since Emacs clearly is able to render this stuff, why would I need > extra fonts? You might try installing the intl-fonts package. I was doing some linguistics homework using the International Phonetic Alphabet (IPA) and I found it handy. You should be able to find it somewhere in: http://www.gnu.org/software/ You will need to set your input-method as well as your coding-system. -- Hugh Baker University of Toronto Undergraduate CSC148 Course Notes: public static int gcd(int a,int b){int r=a%b; return(r!=0)?gcd(b,r):b;} ~ ~ ~