Mercurial > hg > xemacs-beta
comparison lisp/msw-font-menu.el @ 771:943eaba38521
[xemacs-hg @ 2002-03-13 08:51:24 by ben]
The big ben-mule-21-5 check-in!
Various files were added and deleted. See CHANGES-ben-mule.
There are still some test suite failures. No crashes, though.
Many of the failures have to do with problems in the test suite itself
rather than in the actual code. I'll be addressing these in the next
day or so -- none of the test suite failures are at all critical.
Meanwhile I'll be trying to address the biggest issues -- i.e. build
or run failures, which will almost certainly happen on various platforms.
All comments should be sent to ben@xemacs.org -- use a Cc: if necessary
when sending to mailing lists. There will be pre- and post- tags,
something like
pre-ben-mule-21-5-merge-in, and
post-ben-mule-21-5-merge-in.
author | ben |
---|---|
date | Wed, 13 Mar 2002 08:54:06 +0000 |
parents | 7039e6323819 |
children | 2923009caf47 |
comparison
equal
deleted
inserted
replaced
770:336a418893b5 | 771:943eaba38521 |
---|---|
61 If you don't like the lazy invocation of this function, you can add it to | 61 If you don't like the lazy invocation of this function, you can add it to |
62 `create-device-hook' and that will make the font menus respond more quickly | 62 `create-device-hook' and that will make the font menus respond more quickly |
63 when they are selected for the first time. If you add fonts to your system, | 63 when they are selected for the first time. If you add fonts to your system, |
64 or if you change your font path, you can call this to re-initialize the menus." | 64 or if you change your font path, you can call this to re-initialize the menus." |
65 (unless mswindows-font-regexp-ascii | 65 (unless mswindows-font-regexp-ascii |
66 (setq mswindows-font-regexp-ascii (if (featurep 'mule) | 66 (setq mswindows-font-regexp-ascii "Western")) |
67 (declare-fboundp | 67 (setq mswindows-font-menu-registry-encoding "Western") |
68 (charset-registry 'ascii)) | |
69 "Western"))) | |
70 (setq mswindows-font-menu-registry-encoding (if (featurep 'mule) "" | |
71 "Western")) | |
72 (let ((case-fold-search t) | 68 (let ((case-fold-search t) |
73 family size weight entry | 69 family size weight entry |
74 dev-cache cache families sizes weights) | 70 dev-cache cache families sizes weights) |
75 (dolist (name (cond ((null debug) ; debugging kludge | 71 (dolist (name (cond ((null debug) ; debugging kludge |
76 (list-fonts "::::" device)) | 72 (list-fonts "::::" device)) |