]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/window.el (frame-auto-delete, window-deletable-p): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Thu, 1 Sep 2011 17:51:42 +0000 (20:51 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 1 Sep 2011 17:51:42 +0000 (20:51 +0300)
lisp/ChangeLog
lisp/window.el

index e51cdb9137aeedbe778528d8bbd615f2519de30a..a306f697c60104e61635cbaa35d40ce29619eb95 100644 (file)
@@ -1,3 +1,7 @@
+2011-09-01  Eli Zaretskii  <eliz@gnu.org>
+
+       * window.el (frame-auto-delete, window-deletable-p): Doc fix.
+
 2011-09-01  Chong Yidong  <cyd@stupidchicken.com>
 
        * window.el (display-buffer): Restore interactive spec.
index 11f4920c24fc3471b0c238fd603b300ee9e81d7b..277b1fd5c092cec0a622831001efaa6af8c40a23 100644 (file)
@@ -2259,10 +2259,10 @@ and no others."
 \f
 ;;; Deleting windows.
 (defcustom frame-auto-delete 'automatic
-  "If non-nil, quitting a window can delete it's frame.
+  "If non-nil, quitting a window can delete its frame.
 If this variable is nil, functions that quit a window never
-delete the associated frame.  If this variable equals the symbol
-`automatic', a frame is deleted only if it the window is
+delete the associated frame.  If this variable's value is the
+symbol `automatic', a frame is deleted only if the window is
 dedicated or was created by `display-buffer'.  If this variable
 is t, a frame can be always deleted, even if it was created by
 `make-frame-command'.  Other values should not be used.
@@ -2282,8 +2282,8 @@ variable are `switch-to-prev-buffer', `delete-windows-on',
 
 (defun window-deletable-p (&optional window)
   "Return t if WINDOW can be safely deleted from its frame.
-Return `frame' if deleting WINDOW should delete its frame
-instead."
+Return `frame' if deleting WINDOW should also delete its
+frame."
   (setq window (window-normalize-any-window window))
   (unless ignore-window-parameters
     ;; Handle atomicity.
@@ -2304,7 +2304,7 @@ instead."
                 (other-visible-frames-p frame))
        ;; WINDOW is the root window of its frame.  Return `frame' but
        ;; only if WINDOW is (1) either dedicated or quit-restore's car
-       ;; is new-frame and the window still displays the same buffer
+       ;; is `new-frame' and the window still displays the same buffer
        ;; and (2) there are other frames left.
        'frame))
      ((and (not ignore-window-parameters)