aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2013-06-18 00:04:50 +0900
committerKenichi Handa2013-06-18 00:04:50 +0900
commit3da95318a7a8f69b6319cf6ae5a0529d85bb53fd (patch)
tree45e147603e465aa07dabfffa0b29daea9df855d8
parent544d4594cb3e9945dc3a512e619d3cf2759fc86a (diff)
downloademacs-3da95318a7a8f69b6319cf6ae5a0529d85bb53fd.tar.gz
emacs-3da95318a7a8f69b6319cf6ae5a0529d85bb53fd.zip
display.texi (Face Attributes): Refer to "Low-Level font" (not "Font Selection") in the explanation of :font attribute.
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/display.texi7
2 files changed, 10 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index e14f7543443..27515b6c87b 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12013-06-17 Kenichi Handa <handa@gnu.org>
2
3 * display.texi (Face Attributes): Refer to "Low-Level font" (not
4 "Font Selection") in the explanation of :font attribute.
5
12013-06-13 Stefan Monnier <monnier@iro.umontreal.ca> 62013-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * loading.texi (Hooks for Loading): Don't document after-load-alist. 8 * loading.texi (Hooks for Loading): Don't document after-load-alist.
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 4adcfdf8f4f..4ad22898046 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -2126,7 +2126,8 @@ used automatically to handle certain shades of gray.
2126 2126
2127@item :font 2127@item :font
2128The font used to display the face. Its value should be a font object. 2128The font used to display the face. Its value should be a font object.
2129@xref{Font Selection}, for information about font objects. 2129@xref{Low-Level Font}, for information about font objects, font specs,
2130and font entities.
2130 2131
2131When specifying this attribute using @code{set-face-attribute} 2132When specifying this attribute using @code{set-face-attribute}
2132(@pxref{Attribute Functions}), you may also supply a font spec, a font 2133(@pxref{Attribute Functions}), you may also supply a font spec, a font
@@ -3260,7 +3261,9 @@ to @var{value}.
3260properties are intermediate between a font object and a font spec: 3261properties are intermediate between a font object and a font spec:
3261like a font object, and unlike a font spec, it refers to a single, 3262like a font object, and unlike a font spec, it refers to a single,
3262specific font. Unlike a font object, creating a font entity does not 3263specific font. Unlike a font object, creating a font entity does not
3263load the contents of that font into computer memory. 3264load the contents of that font into computer memory. Emacs may open
3265multiple font objects of different sizes from a single font entity
3266referring to a scalable font.
3264 3267
3265@defun find-font font-spec &optional frame 3268@defun find-font font-spec &optional frame
3266This function returns a font entity that best matches the font spec 3269This function returns a font entity that best matches the font spec