comparison lisp/objects.el @ 5128:7be849cb8828 ben-lisp-object

merge
author Ben Wing <ben@xemacs.org>
date Sun, 07 Mar 2010 02:09:59 -0600
parents 5502045ec510
children
comparison
equal deleted inserted replaced
5127:a9c41067dd88 5128:7be849cb8828
1 ;;; objects.el --- Lisp interface to C window-system objects 1 ;;; objects.el --- Lisp interface to C window-system objects
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 ;;; objects.el ends here. 212 ;;; objects.el ends here.