home *** CD-ROM | disk | FTP | other *** search
- Xref: sparky gnu.emacs.help:4082 comp.emacs:3068
- Path: sparky!uunet!littlei!intelhf!ichips!ichips!glew
- From: glew@pdx007.intel.com (Andy Glew)
- Newsgroups: gnu.emacs.help,comp.emacs
- Subject: Re: emacs fonts- the list
- Message-ID: <GLEW.92Sep10232134@pdx007.intel.com>
- Date: 11 Sep 92 07:21:34 GMT
- References: <1992Aug1.002303.12223@cs.uoregon.edu>
- Sender: news@ichips.intel.com (News Account)
- Organization: Intel Corp., Hillsboro, Oregon
- Lines: 57
- In-Reply-To: maxn@getafix.cs.uoregon.edu's message of Sat, 1 Aug 1992 00:23:03 GMT
-
- Here's a hack to go along with the font list:
-
-
- ;;; X fonts suitable for emacs, selected by
- ;;;
- ;;; From: maxn@getafix.cs.uoregon.edu (Max Napolitano)
- ;;; Subject: emacs fonts- the list
- ;;; Organization: University of Oregon Computer and Information Sciences Dept.
- ;;; Date: Sat, 1 Aug 1992 00:23:03 GMT
- ;;;
-
- (defvar x-emacs-known-good-font-list '(
- ("7x13")
- ("7x14")
- ("8x16")
- ("9x15")
- ("9x15bold")
- ("10x20")
- ("12x24")
- ("fg-18")
- ("fg-25")
- ("-*-courier-bold-r-*-*-14-*-*-*-*-*-*-*")
- ("-adobe-*-medium-r-*-18-*-m-*")
- ("-adobe-courier-medium-r-normal-*-14-*-*-*-m-*-iso8859-1")
- ("-adobe-courier-bold-r-normal--14-100-100-100-m-90-iso8859-1")
- ("-adobe-courier-bold-r-normal--18-180-75-75-m-110-iso8859-1")
- ("lucidasanstypewriter-12")
- ("lucidasanstypewriter-bold-14")
- ("lucidasanstypewriter-bold-24")
- ("-b&h-lucidatypewriter-bold-r-normal-sans-24-240-75-75-m-140-iso8859-1")
- ("-misc-fixed-medium-*-*-*-20-*-*-*-*-*-*-*")
- )
- "X fonts suitable for use by emacs")
-
- (defun x-set-font-known-good ()
- "Select an emacs font from a list of known good fonts"
- (interactive)
- (x-set-font
- (completing-read
- "X font: "
- x-emacs-known-good-font-list
- nil
- nil
- nil)
- )
- )
-
- --
-
- Andy Glew, glew@ichips.intel.com
- Intel Corp., M/S JF1-19, 5200 NE Elam Young Pkwy,
- Hillsboro, Oregon 97124-6497
-
- This is a private posting; it does not indicate opinions or positions
- of Intel Corp.
-
- Intel Inside (tm)
-