]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix doc-string of frame_resize_pixelwise.
authorMartin Rudalics <rudalics@gmx.at>
Sat, 11 Jan 2014 10:01:01 +0000 (11:01 +0100)
committerMartin Rudalics <rudalics@gmx.at>
Sat, 11 Jan 2014 10:01:01 +0000 (11:01 +0100)
* frame.c (frame_resize_pixelwise): Fix doc-string.

src/ChangeLog
src/frame.c

index d015326e5eae87ddaeecf67edf762e52be20710c..f258f38afbbb598863f6a20b18edb5b861e48efa 100644 (file)
@@ -1,3 +1,7 @@
+2014-01-11  Martin Rudalics  <rudalics@gmx.at>
+
+       * frame.c (frame_resize_pixelwise): Fix doc-string.
+
 2014-01-10  Martin Rudalics  <rudalics@gmx.at>
 
        Fix handling of internal borders (Bug#16348).
index 76883820672223331d96872ca50fd8949ff8c76f..703c67a3b1e18bf786b8d081df12d61fffaa26cc 100644 (file)
@@ -4709,7 +4709,6 @@ or call the function `tool-bar-mode'.  */);
 
   DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
                 doc: /* Minibufferless frames use this frame's minibuffer.
-
 Emacs cannot create minibufferless frames unless this is set to an
 appropriate surrogate.
 
@@ -4730,9 +4729,15 @@ automatically.  See also `mouse-autoselect-window'.  */);
   focus_follows_mouse = 0;
 
   DEFVAR_BOOL ("frame-resize-pixelwise", frame_resize_pixelwise,
-              doc: /* Non-nil means frames are resized pixelwise.
-If this is nil, resizing a frame will round sizes to the frame's
-current values of `frame-char-height' and `frame-char-width'.  */);
+              doc: /* Non-nil means resize frames pixelwise.
+If this option is nil, resizing a frame rounds its sizes to the frame's
+current values of `frame-char-height' and `frame-char-width'.  If this
+is non-nil, no rounding occurs, hence frame sizes can increase/decrease
+by one pixel.
+
+With some window managers you have to set this to non-nil in order to
+fully maximize frames.  The default of this option is nil.  To resize
+your initial frame pixelwise, set this option in your init file.  */);
   frame_resize_pixelwise = 0;
 
   staticpro (&Vframe_list);