diff options
| author | Martin Rudalics | 2015-02-14 18:50:37 +0100 |
|---|---|---|
| committer | Martin Rudalics | 2015-02-14 18:50:37 +0100 |
| commit | ffec11d9b47d71978fbfc26fe37d936037f2dfac (patch) | |
| tree | f26bf1be05279cd4fffc661cdb2837b1b06abe42 | |
| parent | f4f4f93e42a0ae572a62c9f64b90e4401232d9f4 (diff) | |
| download | emacs-ffec11d9b47d71978fbfc26fe37d936037f2dfac.tar.gz emacs-ffec11d9b47d71978fbfc26fe37d936037f2dfac.zip | |
Fix doc-string of x_frame_normalize_before_maximize.
* xterm.c (x_frame_normalize_before_maximize): Fix doc-string.
Suggested by Alan Mackenzie <acm@muc.de>.
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xterm.c | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5144738a708..c89fa60a5b5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2015-02-14 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * xterm.c (x_frame_normalize_before_maximize): Fix doc-string. | ||
| 4 | Suggested by Alan Mackenzie <acm@muc.de>. | ||
| 5 | |||
| 1 | 2015-02-14 Eli Zaretskii <eliz@gnu.org> | 6 | 2015-02-14 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * menu.c (Fx_popup_menu) [HAVE_X_WINDOWS]: Call | 8 | * menu.c (Fx_popup_menu) [HAVE_X_WINDOWS]: Call |
diff --git a/src/xterm.c b/src/xterm.c index 0b3efe7b4b6..03c081179a6 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -11729,9 +11729,11 @@ default is nil, which is the same as `super'. */); | |||
| 11729 | DEFVAR_BOOL ("x-frame-normalize-before-maximize", | 11729 | DEFVAR_BOOL ("x-frame-normalize-before-maximize", |
| 11730 | x_frame_normalize_before_maximize, | 11730 | x_frame_normalize_before_maximize, |
| 11731 | doc: /* Non-nil means normalize frame before maximizing. | 11731 | doc: /* Non-nil means normalize frame before maximizing. |
| 11732 | If this variable is t, Emacs asks the window manager to give the frame | 11732 | If this variable is t, Emacs first asks the window manager to give the |
| 11733 | intermediately its normal size whenever changing from a full-height or | 11733 | frame its normal size, and only then the final state, whenever changing |
| 11734 | full-width state to the fully maximized one and vice versa. | 11734 | from a full-height, full-width or full-both state to the maximized one |
| 11735 | or when changing from the maximized to the full-height or full-width | ||
| 11736 | state. | ||
| 11735 | 11737 | ||
| 11736 | Set this variable only if your window manager cannot handle the | 11738 | Set this variable only if your window manager cannot handle the |
| 11737 | transition between the various maximization states. */); | 11739 | transition between the various maximization states. */); |