Mercurial > emacs
comparison src/font.c @ 96012:c04088bb7b0d
(Ffont_face_attributes): Fix definition.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Mon, 16 Jun 2008 12:02:44 +0000 |
parents | c0401e586ca3 |
children | 04be82e0cbd3 |
comparison
equal
deleted
inserted
replaced
96011:a4a026112f5a | 96012:c04088bb7b0d |
---|---|
3742 DEFUN ("font-face-attributes", Ffont_face_attributes, Sfont_face_attributes, 1, 2, 0, | 3742 DEFUN ("font-face-attributes", Ffont_face_attributes, Sfont_face_attributes, 1, 2, 0, |
3743 doc: /* Return a plist of face attributes generated by FONT. | 3743 doc: /* Return a plist of face attributes generated by FONT. |
3744 FONT is a font name, a font-spec, a font-entity, or a font-object. | 3744 FONT is a font name, a font-spec, a font-entity, or a font-object. |
3745 The return value is a list of the form | 3745 The return value is a list of the form |
3746 | 3746 |
3747 (:family FAMILY :height HEIGHT :weight WEIGHT :slant SLANT :width WIDTH) | 3747 \(:family FAMILY :height HEIGHT :weight WEIGHT :slant SLANT :width WIDTH) |
3748 | 3748 |
3749 where FAMILY, FOUNDRY, HEIGHT, WEIGHT, SLANT, and WIDTH are face | 3749 where FAMILY, FOUNDRY, HEIGHT, WEIGHT, SLANT, and WIDTH are face |
3750 attribute values compatible with `set-face-attribute'. | 3750 attribute values compatible with `set-face-attribute'. |
3751 | 3751 |
3752 The optional argument FRAME specifies the frame that the face | 3752 The optional argument FRAME specifies the frame that the face |
3753 attributes are to be displayed on. If omitted, the selected frame is | 3753 attributes are to be displayed on. If omitted, the selected frame is |
3754 used. */) | 3754 used. */) |
3755 (font, frame) | 3755 (font, frame) |
3756 Lisp_Object font; | 3756 Lisp_Object font, frame; |
3757 { | 3757 { |
3758 struct frame *f; | 3758 struct frame *f; |
3759 Lisp_Object plist[10]; | 3759 Lisp_Object plist[10]; |
3760 Lisp_Object val; | 3760 Lisp_Object val; |
3761 | 3761 |