diff options
| author | Kenichi Handa | 2013-06-18 00:04:50 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2013-06-18 00:04:50 +0900 |
| commit | 3da95318a7a8f69b6319cf6ae5a0529d85bb53fd (patch) | |
| tree | 45e147603e465aa07dabfffa0b29daea9df855d8 | |
| parent | 544d4594cb3e9945dc3a512e619d3cf2759fc86a (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/display.texi | 7 |
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 @@ | |||
| 1 | 2013-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 | |||
| 1 | 2013-06-13 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2013-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 |
| 2128 | The font used to display the face. Its value should be a font object. | 2128 | The 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, |
| 2130 | and font entities. | ||
| 2130 | 2131 | ||
| 2131 | When specifying this attribute using @code{set-face-attribute} | 2132 | When 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}. | |||
| 3260 | properties are intermediate between a font object and a font spec: | 3261 | properties are intermediate between a font object and a font spec: |
| 3261 | like a font object, and unlike a font spec, it refers to a single, | 3262 | like a font object, and unlike a font spec, it refers to a single, |
| 3262 | specific font. Unlike a font object, creating a font entity does not | 3263 | specific font. Unlike a font object, creating a font entity does not |
| 3263 | load the contents of that font into computer memory. | 3264 | load the contents of that font into computer memory. Emacs may open |
| 3265 | multiple font objects of different sizes from a single font entity | ||
| 3266 | referring to a scalable font. | ||
| 3264 | 3267 | ||
| 3265 | @defun find-font font-spec &optional frame | 3268 | @defun find-font font-spec &optional frame |
| 3266 | This function returns a font entity that best matches the font spec | 3269 | This function returns a font entity that best matches the font spec |