emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115972: Fix doc-string of frame_resize_pixelwise.


From: Martin Rudalics
Subject: [Emacs-diffs] trunk r115972: Fix doc-string of frame_resize_pixelwise.
Date: Sat, 11 Jan 2014 10:01:11 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115972
revision-id: address@hidden
parent: address@hidden
committer: martin rudalics <address@hidden>
branch nick: trunk
timestamp: Sat 2014-01-11 11:01:01 +0100
message:
  Fix doc-string of frame_resize_pixelwise.
  
  * frame.c (frame_resize_pixelwise): Fix doc-string.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/frame.c                    frame.c-20091113204419-o5vbwnq5f7feedwu-243
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-01-11 09:31:09 +0000
+++ b/src/ChangeLog     2014-01-11 10:01:01 +0000
@@ -1,3 +1,7 @@
+2014-01-11  Martin Rudalics  <address@hidden>
+
+       * frame.c (frame_resize_pixelwise): Fix doc-string.
+
 2014-01-10  Martin Rudalics  <address@hidden>
 
        Fix handling of internal borders (Bug#16348).

=== modified file 'src/frame.c'
--- a/src/frame.c       2014-01-03 06:47:27 +0000
+++ b/src/frame.c       2014-01-11 10:01:01 +0000
@@ -4709,7 +4709,6 @@
 
   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 @@
   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);


reply via email to

[Prev in Thread] Current Thread [Next in Thread]