diff options
| author | Richard M. Stallman | 2006-07-03 15:42:10 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2006-07-03 15:42:10 +0000 |
| commit | 2d6228e79e351e1f46a158b6a1b1e891a4d9aae5 (patch) | |
| tree | 47b2e2ba3589ecbeca44ee26353c05062f50902b /src | |
| parent | 95555145149ca1758e9b9e50d769685ece740134 (diff) | |
| download | emacs-2d6228e79e351e1f46a158b6a1b1e891a4d9aae5.tar.gz emacs-2d6228e79e351e1f46a158b6a1b1e891a4d9aae5.zip | |
(Fface_attribute_relative_p): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index df303e401fd..30e1c7aa5dc 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -4799,7 +4799,14 @@ x_update_menu_appearance (f) | |||
| 4799 | DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p, | 4799 | DEFUN ("face-attribute-relative-p", Fface_attribute_relative_p, |
| 4800 | Sface_attribute_relative_p, | 4800 | Sface_attribute_relative_p, |
| 4801 | 2, 2, 0, | 4801 | 2, 2, 0, |
| 4802 | doc: /* Return non-nil if face ATTRIBUTE VALUE is relative. */) | 4802 | doc: /* Check whether a face attribute value is relative. |
| 4803 | Specifically, this function returns t if the attribute ATTRIBUTE | ||
| 4804 | with the value VALUE is relative. | ||
| 4805 | |||
| 4806 | A relative value is one that doesn't entirely override whatever is | ||
| 4807 | inherited from another face. For most possible attributes, | ||
| 4808 | the only relative value that users see is `unspecified'. | ||
| 4809 | However, for :height, floating point values are also relative. */) | ||
| 4803 | (attribute, value) | 4810 | (attribute, value) |
| 4804 | Lisp_Object attribute, value; | 4811 | Lisp_Object attribute, value; |
| 4805 | { | 4812 | { |