comparison src/frame.c @ 10851:8064f933eed7

(Fframep): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Tue, 28 Feb 1995 17:56:47 +0000
parents bb2d929daaa3
children 3db086133785
comparison
equal deleted inserted replaced
10850:0794141677db 10851:8064f933eed7
99 DEFUN ("framep", Fframep, Sframep, 1, 1, 0, 99 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
100 "Return non-nil if OBJECT is a frame.\n\ 100 "Return non-nil if OBJECT is a frame.\n\
101 Value is t for a termcap frame (a character-only terminal),\n\ 101 Value is t for a termcap frame (a character-only terminal),\n\
102 `x' for an Emacs frame that is really an X window,\n\ 102 `x' for an Emacs frame that is really an X window,\n\
103 `pc' for a direct-write MS-DOS frame.\n\ 103 `pc' for a direct-write MS-DOS frame.\n\
104 Also see `live-frame-p'.") 104 See also `frame-live-p'.")
105 (object) 105 (object)
106 Lisp_Object object; 106 Lisp_Object object;
107 { 107 {
108 if (!FRAMEP (object)) 108 if (!FRAMEP (object))
109 return Qnil; 109 return Qnil;