aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2014-02-22 13:49:10 -0800
committerGlenn Morris2014-02-22 13:49:10 -0800
commitca58fa737d4c91d132c127e4190a08dd75837190 (patch)
tree7a3b299a1817182c410c3e71b6da9f66cbb7dddd /src
parent612c3e462e40e8ee347276500d8bc7371655e607 (diff)
downloademacs-ca58fa737d4c91d132c127e4190a08dd75837190.tar.gz
emacs-ca58fa737d4c91d132c127e4190a08dd75837190.zip
Misc small frame/window doc
* src/frame.c (frame-alpha-lower-limit, frame-resize-pixelwise): * src/window.c (window-resize-pixelwise): Doc fixes. * etc/NEWS: Related edits. This including unmarking some items marked as ---, where it it not clear to me that no doc updates are needed.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/frame.c7
-rw-r--r--src/window.c9
3 files changed, 10 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9c5d5a1b865..86605b97764 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12014-02-22 Glenn Morris <rgm@gnu.org> 12014-02-22 Glenn Morris <rgm@gnu.org>
2 2
3 * frame.c (frame-alpha-lower-limit, frame-resize-pixelwise):
4 * window.c (window-resize-pixelwise): Doc fixes.
5
3 * process.c (Finternal_default_process_filter) 6 * process.c (Finternal_default_process_filter)
4 (Finternal_default_process_sentinel): Doc tweaks. 7 (Finternal_default_process_sentinel): Doc tweaks.
5 8
diff --git a/src/frame.c b/src/frame.c
index 703c67a3b1e..2d01c6fecaa 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -4597,8 +4597,7 @@ is a reasonable practice. See also the variable `x-resource-name'. */);
4597 DEFVAR_LISP ("frame-alpha-lower-limit", Vframe_alpha_lower_limit, 4597 DEFVAR_LISP ("frame-alpha-lower-limit", Vframe_alpha_lower_limit,
4598 doc: /* The lower limit of the frame opacity (alpha transparency). 4598 doc: /* The lower limit of the frame opacity (alpha transparency).
4599The value should range from 0 (invisible) to 100 (completely opaque). 4599The value should range from 0 (invisible) to 100 (completely opaque).
4600You can also use a floating number between 0.0 and 1.0. 4600You can also use a floating number between 0.0 and 1.0. */);
4601The default is 20. */);
4602 Vframe_alpha_lower_limit = make_number (20); 4601 Vframe_alpha_lower_limit = make_number (20);
4603#endif 4602#endif
4604 4603
@@ -4736,8 +4735,8 @@ is non-nil, no rounding occurs, hence frame sizes can increase/decrease
4736by one pixel. 4735by one pixel.
4737 4736
4738With some window managers you have to set this to non-nil in order to 4737With some window managers you have to set this to non-nil in order to
4739fully maximize frames. The default of this option is nil. To resize 4738fully maximize frames. To resize your initial frame pixelwise,
4740your initial frame pixelwise, set this option in your init file. */); 4739set this option to a non-nil value in your init file. */);
4741 frame_resize_pixelwise = 0; 4740 frame_resize_pixelwise = 0;
4742 4741
4743 staticpro (&Vframe_list); 4742 staticpro (&Vframe_list);
diff --git a/src/window.c b/src/window.c
index 0f62838d672..0ec1aa96324 100644
--- a/src/window.c
+++ b/src/window.c
@@ -7309,11 +7309,10 @@ respectively are not installed by `window-state-put'. */);
7309 Vwindow_persistent_parameters = list1 (Fcons (Qclone_of, Qt)); 7309 Vwindow_persistent_parameters = list1 (Fcons (Qclone_of, Qt));
7310 7310
7311 DEFVAR_BOOL ("window-resize-pixelwise", window_resize_pixelwise, 7311 DEFVAR_BOOL ("window-resize-pixelwise", window_resize_pixelwise,
7312 doc: /* Non-nil means resizing windows works pixelwise. 7312 doc: /* Non-nil means resize windows pixelwise.
7313Functions currently affected by this option are `split-window', 7313This currently affects the functions: `split-window', `maximize-window',
7314`maximize-window', `minimize-window', `fit-window-to-buffer' and 7314`minimize-window', `fit-window-to-buffer' and `fit-frame-to-buffer', and
7315`fit-frame-to-buffer' and all functions symmetrically resizing a 7315all functions that symmetrically resize a parent window.
7316parent window.
7317 7316
7318Note that when a frame's pixel size is not a multiple of the 7317Note that when a frame's pixel size is not a multiple of the
7319frame's character size, at least one window may get resized 7318frame's character size, at least one window may get resized