diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2006-12-08 02:56:08 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2006-12-08 02:56:08 +0000 |
commit | c2c93894cadc28a139c96a869ecda0eb8f709a0d (patch) | |
tree | 18a19e04d3ae0ff250a54fbfce747751f9f117d8 /lisp/frame.el | |
parent | 65fa9a649ebc184c61856e403d1c2120f1547bc8 (diff) | |
download | emacs-c2c93894cadc28a139c96a869ecda0eb8f709a0d.tar.gz |
(other-frame): Doc fix.
(set-frame-parameter): Fix typo in docstring.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r-- | lisp/frame.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 9aba8c54089..b8b0271664e 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -705,7 +705,7 @@ This variable does not have any effect on MS-Windows." (set-mouse-position (selected-frame) (1- (frame-width)) 0)))) (defun other-frame (arg) - "Select the ARG'th different visible frame on current display, and raise it. + "Select the ARGth different visible frame on current display, and raise it. All frames are arranged in a cyclic order. This command selects the frame ARG steps away in that order. A negative ARG moves in the opposite order. @@ -881,7 +881,7 @@ pixels) is kept by adjusting the numbers of the lines and columns." (defun set-frame-parameter (frame parameter value) "Set frame parameter PARAMETER to VALUE on FRAME. If FRAME is nil, it defaults to the selected frame. -See `modify-frame-parameters.'" +See `modify-frame-parameters'." (modify-frame-parameters frame (list (cons parameter value)))) (defun set-background-color (color-name) |