diff options
| author | Richard M. Stallman | 1993-06-04 18:42:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-04 18:42:12 +0000 |
| commit | 704a9b457a393cf3f4fe229c18d13ed4917646c0 (patch) | |
| tree | 93bba5de9e065400ec28114e1ee78401fac22e21 /src | |
| parent | a96b68f119baff1e38b060e28cd516b9f8a9be24 (diff) | |
| download | emacs-704a9b457a393cf3f4fe229c18d13ed4917646c0.tar.gz emacs-704a9b457a393cf3f4fe229c18d13ed4917646c0.zip | |
[!MULTI_FRAME] (Fframep): New dummy definition.
(syms_of_frame): Defsubr that.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c index 93d62cfb83b..00cb7cdf06f 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -1556,6 +1556,16 @@ DEFUN ("selected-frame", Fselected_frame, Sselected_frame, 0, 0, 0, | |||
| 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\ |
| @@ -1692,6 +1702,7 @@ but that the idea of the actual width of the screen should not be changed.") | |||
| 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); |