diff options
-rw-r--r-- | src/frame.c | 2 | ||||
-rw-r--r-- | src/window.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/frame.c b/src/frame.c index 675407ba8ff..4652178e0ff 100644 --- a/src/frame.c +++ b/src/frame.c @@ -46,7 +46,7 @@ DEFUN ("screenp", Fscreenp, Sscreenp, 1, 1, 0, "Return non-nil if OBJECT is a screen.\n\ Value is t for a termcap screen (a character-only terminal),\n\ `x' for an Emacs screen that is really an X window.\n\ -Also see live-screen-p.") +Also see `live-screen-p'.") (object) Lisp_Object object; { diff --git a/src/window.c b/src/window.c index d53bd510c63..5f888f8a732 100644 --- a/src/window.c +++ b/src/window.c @@ -424,7 +424,7 @@ window_from_coordinates (screen, x, y, part) return Qnil; } -DEFUN ("window-at", Fwindow_at, Swindow_at, 1, 2, 0, +DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0, "Return window containing row ROW, column COLUMN on SCREEN.\n\ If omitted, SCREEN defaults to the currently selected screen.\n\ The top left corner of the screen is considered to be row 0,\n\ |