]> git.eshelyaron.com Git - emacs.git/commitdiff
(other-frame): Doc fix.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 8 Dec 2006 02:56:08 +0000 (02:56 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 8 Dec 2006 02:56:08 +0000 (02:56 +0000)
(set-frame-parameter): Fix typo in docstring.

lisp/ChangeLog
lisp/frame.el

index 0e71e27e9f998b4967017f82dbaf73e189fffb92..4b02e94cc47bd594b82a4d28dd2a86adf671ab92 100644 (file)
@@ -1,3 +1,8 @@
+2006-12-08  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frame.el (other-frame): Doc fix.
+       (set-frame-parameter): Fix typo in docstring.
+
 2006-12-07  Kim F. Storm  <storm@cua.dk>
 
        * info.el (Info-index): Strip leading colon from topic.
index 9aba8c54089b5ec2cbed816acda23a4bb100a6a0..b8b0271664ee3c033fa87457eece88bf7dc9204d 100644 (file)
@@ -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)