comparison lisp/fontcolor.el @ 5178:97eb4942aec8

merge
author Ben Wing <ben@xemacs.org>
date Mon, 29 Mar 2010 21:28:13 -0500
parents lisp/objects.el@5502045ec510 lisp/objects.el@8b2f75cecb89
children 308d34e9f07d
comparison
equal deleted inserted replaced
5177:b785049378e3 5178:97eb4942aec8
1 ;;; fontcolor.el --- Lisp interface to fonts and colors 1 ;;; fontcolor.el --- Lisp interface to fonts and colors
2 2
3 ;; Copyright (C) 1994, 1997 Free Software Foundation, Inc. 3 ;; Copyright (C) 1994, 1997 Free Software Foundation, Inc.
4 ;; Copyright (C) 1995 Ben Wing 4 ;; Copyright (C) 1995 Ben Wing
5 ;; Copyright (C) 2010 Didier Verna
5 6
6 ;; Author: Chuck Thompson <cthomp@xemacs.org> 7 ;; Author: Chuck Thompson <cthomp@xemacs.org>
7 ;; Author: Ben Wing <ben@xemacs.org> 8 ;; Author: Ben Wing <ben@xemacs.org>
8 ;; Maintainer: XEmacs Development Team 9 ;; Maintainer: XEmacs Development Team
9 ;; Keywords: faces, internal, dumped 10 ;; Keywords: faces, internal, dumped
192 specifier is used for; if this specifier is not part of a face, 193 specifier is used for; if this specifier is not part of a face,
193 the instantiator would not be valid), and optionally a value which, 194 the instantiator would not be valid), and optionally a value which,
194 if non-nil, means to invert the sense of the inherited property." 195 if non-nil, means to invert the sense of the inherited property."
195 (make-specifier-and-init 'face-boolean spec-list)) 196 (make-specifier-and-init 'face-boolean spec-list))
196 197
198 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; face-background-placement specifiers
199
200 (defun make-face-background-placement-specifier (spec-list)
201 "Return a new `face-background-placement' specifier object.
202 SPEC-LIST can be a list of specifications (each of which is a cons of a
203 locale and a list of instantiators), a single instantiator, or a list
204 of instantiators. See `make-specifier' for a detailed description of
205 how specifiers work.
206
207 Valid instantiators for face-background-placement specifiers are:
208 -- absolute or relative (symbols),
209 -- a vector of one element: a face to inherit from."
210 (make-specifier-and-init 'face-background-placement spec-list))
211
197 ;;; fontcolor.el ends here. 212 ;;; fontcolor.el ends here.