comparison doc/lispref/display.texi @ 87649:107ccd98fa12

Merge from emacs--rel--22 Revision: emacs@sv.gnu.org/emacs--devo--0--patch-987
author Miles Bader <miles@gnu.org>
date Tue, 08 Jan 2008 20:46:54 +0000
parents ec0ef12211d9
children 36cc1038d878
comparison
equal deleted inserted replaced
87648:7ae99e295dfd 87649:107ccd98fa12
1 @c -*-texinfo-*- 1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual. 2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001,
4 @c 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. 4 @c 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions. 5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../../info/display 6 @setfilename ../../info/display
7 @node Display, System Interface, Processes, Top 7 @node Display, System Interface, Processes, Top
8 @chapter Emacs Display 8 @chapter Emacs Display
9 9
1742 low levels within Emacs. However, for most purposes, you refer to 1742 low levels within Emacs. However, for most purposes, you refer to
1743 faces in Lisp programs by the symbols that name them. 1743 faces in Lisp programs by the symbols that name them.
1744 1744
1745 @defun facep object 1745 @defun facep object
1746 This function returns @code{t} if @var{object} is a face name string 1746 This function returns @code{t} if @var{object} is a face name string
1747 or symbol (or if it is a vector of the kind used internally to record 1747 or symbol. It returns @code{nil} otherwise.
1748 face data). It returns @code{nil} otherwise.
1749 @end defun 1748 @end defun
1750 1749
1751 Each face name is meaningful for all frames, and by default it has the 1750 Each face name is meaningful for all frames, and by default it has the
1752 same meaning in all frames. But you can arrange to give a particular 1751 same meaning in all frames. But you can arrange to give a particular
1753 face name a special meaning in one frame if you wish. 1752 face name a special meaning in one frame if you wish.