comparison src/frame.c @ 3482:ff3960b885c9

[!MULTI_FRAME] (Fframep): New dummy definition. (syms_of_frame): Defsubr that.
author Richard M. Stallman <rms@gnu.org>
date Fri, 04 Jun 1993 18:42:12 +0000
parents e2a40a3baa4b
children 861699ced09d
comparison
equal deleted inserted replaced
3481:56424e6245c2 3482:ff3960b885c9
1554 { 1554 {
1555 Lisp_Object tem; 1555 Lisp_Object tem;
1556 XFASTINT (tem) = 0; 1556 XFASTINT (tem) = 0;
1557 return tem; 1557 return tem;
1558 } 1558 }
1559 DEFUN ("framep", Fframep, Sframep, 1, 1, 0,
1560 "Return non-nil if OBJECT is a frame.\n\
1561 Value is t for a termcap frame (a character-only terminal),\n\
1562 `x' for an Emacs frame that is really an X window.\n\
1563 Also see `live-frame-p'.")
1564 (object)
1565 Lisp_Object object;
1566 {
1567 return Qnil;
1568 }
1559 1569
1560 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0, 1570 DEFUN ("set-frame-height", Fset_frame_height, Sset_frame_height, 2, 3, 0,
1561 "Specify that the frame FRAME has LINES lines.\n\ 1571 "Specify that the frame FRAME has LINES lines.\n\
1562 Optional third arg non-nil means that redisplay should use LINES lines\n\ 1572 Optional third arg non-nil means that redisplay should use LINES lines\n\
1563 but that the idea of the actual height of the frame should not be changed.") 1573 but that the idea of the actual height of the frame should not be changed.")
1690 } 1700 }
1691 1701
1692 syms_of_frame () 1702 syms_of_frame ()
1693 { 1703 {
1694 defsubr (&Sselected_frame); 1704 defsubr (&Sselected_frame);
1705 defsubr (&Sframep);
1695 defsubr (&Sframe_char_height); 1706 defsubr (&Sframe_char_height);
1696 defsubr (&Sframe_char_width); 1707 defsubr (&Sframe_char_width);
1697 defsubr (&Sframe_pixel_height); 1708 defsubr (&Sframe_pixel_height);
1698 defsubr (&Sframe_pixel_width); 1709 defsubr (&Sframe_pixel_width);
1699 defsubr (&Sset_frame_height); 1710 defsubr (&Sset_frame_height);