Mercurial > hg > xemacs-beta
comparison lisp/gtk-faces.el @ 776:79940b592197
[xemacs-hg @ 2002-03-15 07:43:14 by ben]
.cvsignore: ignore .tmp files that are getting auto-created by VC.
Makefile.in.in: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
alloc.c, emacs.c, lisp.h: add new -no-packages. make sure list of args for sorting is
actually correct. clean up arg parsing code.
xemacs.mak: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
Makefile: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
mule\chinese.el, mule\japan-util.el: fix warnings.
behavior-defs.el: fix errors with require.
bytecomp-runtime.el: add new funs {when,and}-{f}boundp, clean up docs.
cus-edit.el: pretty-print values.
dump-paths.el, find-paths.el, startup.el, setup-paths.el: fix problems/inconsistencies parsing options. support new
-no-packages option. merge code duplication in dump-paths and
startup.
lisp-mode.el: indent macrolet and labels correctly. update comments about
lisp-indent-function. flet already handled in cl.
apropos.el, auto-save.el, buff-menu.el, cl-extra.el, dragdrop.el, faces.el, files.el, fill.el, font-lock.el, font.el, gtk-faces.el, gui.el, help.el, hyper-apropos.el, info.el, isearch-mode.el, keymap.el, lisp-mnt.el, mouse.el, package-admin.el, package-get.el, printer.el, process.el, resize-minibuffer.el, simple.el, toolbar-items.el, wid-edit.el, win32-native.el: fix warnings.
very-early-lisp.el: update docs.
mule\chinese.el, mule\japan-util.el: fix warnings.
mule\chinese.el, mule\japan-util.el: fix warnings.
behavior-defs.el: fix errors with require.
bytecomp-runtime.el: add new funs {when,and}-{f}boundp, clean up docs.
cus-edit.el: pretty-print values.
dump-paths.el, find-paths.el, startup.el, setup-paths.el: fix problems/inconsistencies parsing options. support new
-no-packages option. merge code duplication in dump-paths and
startup.
lisp-mode.el: indent macrolet and labels correctly. update comments about
lisp-indent-function. flet already handled in cl.
apropos.el, auto-save.el, buff-menu.el, cl-extra.el, dragdrop.el, faces.el, files.el, fill.el, font-lock.el, font.el, gtk-faces.el, gui.el, help.el, hyper-apropos.el, info.el, isearch-mode.el, keymap.el, lisp-mnt.el, mouse.el, package-admin.el, package-get.el, printer.el, process.el, resize-minibuffer.el, simple.el, toolbar-items.el, wid-edit.el, win32-native.el: fix warnings.
very-early-lisp.el: update docs.
mule\chinese.el, mule\japan-util.el: fix warnings.
Makefile.in.in: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
Makefile.in.in: Use -no-packages to avoid problems with package files shadowing
core files (e.g. unicode.el in mule-ucs).
author | ben |
---|---|
date | Fri, 15 Mar 2002 07:43:43 +0000 |
parents | 943eaba38521 |
children | 79c6ff3eef26 |
comparison
equal
deleted
inserted
replaced
775:7d972c3de90a | 776:79940b592197 |
---|---|
224 (try-font-name (gtk-frob-font-weight font "demibold") device))) | 224 (try-font-name (gtk-frob-font-weight font "demibold") device))) |
225 | 225 |
226 (defun gtk-make-font-unbold (font &optional device) | 226 (defun gtk-make-font-unbold (font &optional device) |
227 (try-font-name (gtk-frob-font-weight font "medium") device)) | 227 (try-font-name (gtk-frob-font-weight font "medium") device)) |
228 | 228 |
229 (defcustom *try-oblique-before-italic-fonts* t | 229 (defcustom try-oblique-before-italic-fonts t |
230 "*If nil, italic fonts are searched before oblique fonts. | 230 "*If nil, italic fonts are searched before oblique fonts. |
231 If non-nil, oblique fonts are tried before italic fonts. This is mostly | 231 If non-nil, oblique fonts are tried before italic fonts. This is mostly |
232 applicable to adobe-courier fonts" | 232 applicable to adobe-courier fonts" |
233 :type 'boolean | 233 :type 'boolean |
234 :tag "Try Oblique Before Italic Fonts" | 234 :tag "Try Oblique Before Italic Fonts" |
235 :group 'x) | 235 :group 'x) |
236 (define-obsolete-variable-alias '*try-oblique-before-italic-fonts* | |
237 'try-oblique-before-italic-fonts) | |
236 | 238 |
237 (defun gtk-make-font-italic (font &optional device) | 239 (defun gtk-make-font-italic (font &optional device) |
238 (if *try-oblique-before-italic-fonts* | 240 (if try-oblique-before-italic-fonts |
239 (or (try-font-name (gtk-frob-font-slant font "o") device) | 241 (or (try-font-name (gtk-frob-font-slant font "o") device) |
240 (try-font-name (gtk-frob-font-slant font "i") device)) | 242 (try-font-name (gtk-frob-font-slant font "i") device)) |
241 (or (try-font-name (gtk-frob-font-slant font "i") device) | 243 (or (try-font-name (gtk-frob-font-slant font "i") device) |
242 (try-font-name (gtk-frob-font-slant font "o") device)))) | 244 (try-font-name (gtk-frob-font-slant font "o") device)))) |
243 | 245 |
244 (defun gtk-make-font-unitalic (font &optional device) | 246 (defun gtk-make-font-unitalic (font &optional device) |
245 (try-font-name (gtk-frob-font-slant font "r") device)) | 247 (try-font-name (gtk-frob-font-slant font "r") device)) |
246 | 248 |
247 (defun gtk-make-font-bold-italic (font &optional device) | 249 (defun gtk-make-font-bold-italic (font &optional device) |
248 (if *try-oblique-before-italic-fonts* | 250 (if try-oblique-before-italic-fonts |
249 (or (try-font-name | 251 (or (try-font-name |
250 (gtk-frob-font-slant (gtk-frob-font-weight font "bold") "o") device) | 252 (gtk-frob-font-slant (gtk-frob-font-weight font "bold") "o") device) |
251 (try-font-name | 253 (try-font-name |
252 (gtk-frob-font-slant (gtk-frob-font-weight font "bold") "i") device) | 254 (gtk-frob-font-slant (gtk-frob-font-weight font "bold") "i") device) |
253 (try-font-name | 255 (try-font-name |