aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-02-21 03:51:06 +0000
committerGlenn Morris2008-02-21 03:51:06 +0000
commit2b7a2553a5fda159241852db13d3709ef6cd200f (patch)
treef1832ec916c9ab754d63d080d98af58335d9c6f4
parentde1714654196ecc734675a200d933aee2dc49638 (diff)
downloademacs-2b7a2553a5fda159241852db13d3709ef6cd200f.tar.gz
emacs-2b7a2553a5fda159241852db13d3709ef6cd200f.zip
Merge in some font-backend stuff from README.unicode.
-rw-r--r--etc/NEWS22
1 files changed, 16 insertions, 6 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 3d4a32c01de..027e2d2b6f0 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -28,6 +28,13 @@ so we will look at it and add it to the manual.
28 28
29** The default X toolkit is now Gtk+, rather than Lucid. 29** The default X toolkit is now Gtk+, rather than Lucid.
30 30
31** The new configuration option "--enable-font-backend" enables new code
32for handling fonts by multiple backends (the old font handling codes
33still exist). This requires the freetype and fontconfig libraries, and
34supports local fonts (fonts installed on the machine where Emacs is running).
35Additionally, the Xft library can be used for antialiasing support.
36Fontconfig-like font names (e.g. monospace-12) are also accepted.
37
31** The new configuration option "--with-dbus" enables D-Bus language 38** The new configuration option "--with-dbus" enables D-Bus language
32bindings for Emacs. 39bindings for Emacs.
33 40
@@ -82,11 +89,6 @@ them somewhat slower than Emacs 23-compiled files. Thus it may be worth
82recompiling existing .elc files which don't need to be shared with older 89recompiling existing .elc files which don't need to be shared with older
83Emacsen. 90Emacsen.
84 91
85** Emacs now supports local fonts (fonts installed in the same machine
86as Emacs is running) using the freetype and fontconfig libraries.
87On X, antialias support is available via the Xft library.
88Fontconfig-like font names (e.g. monospace-12) are also accepted.
89
90** There are assorted new coding systems/aliases -- see M-x list-coding-systems. 92** There are assorted new coding systems/aliases -- see M-x list-coding-systems.
91 93
92** There is a new charset implementation with many new charsets. 94** There is a new charset implementation with many new charsets.
@@ -746,7 +748,15 @@ Composition Mode locally and globally.
746Auto Composition Mode to compose characters. The default value is the 748Auto Composition Mode to compose characters. The default value is the
747function `auto-compose-chars'. 749function `auto-compose-chars'.
748 750
749** Font Backend changes. 751** Changes related to the new font backend.
752
753Which font backends to use can be specified by X resource "FontBackend".
754For instance, if you want to use Xft fonts only,
755
756Emacs.FontBackend: xft
757
758will work. If this resource is not set, Emacs tries to use all font
759backends available on your graphic device.
750 760
751*** New frame parameter `font-backend' specifies a list of 761*** New frame parameter `font-backend' specifies a list of
752font-backends supported by the frame's graphic device. On X, they are 762font-backends supported by the frame's graphic device. On X, they are