aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.h
diff options
context:
space:
mode:
authorPaul Eggert2016-09-26 13:32:28 -0700
committerPaul Eggert2016-09-26 13:32:28 -0700
commitdcd90f60eb8952d119d97efcef9564ec96def054 (patch)
tree2d3a5bbac64d7fbd94f3af0774218911a522e61f /src/window.h
parentc44ecb77ab33f0a0559c3e5da42fb486d6b014dd (diff)
parent0ffc9cef49b0fceb3c5e904837ea5675fe4306ac (diff)
downloademacs-dcd90f60eb8952d119d97efcef9564ec96def054.tar.gz
emacs-dcd90f60eb8952d119d97efcef9564ec96def054.zip
Merge from origin/emacs-25
0ffc9ce Update admin/authors.el 0ad7410 Update Antinews in ELisp manual ea0f750 Fix comments on window height macros 0bbdeed Fix 'url-http-create-request' when cookies are used 0045998 Fix cross reference in frames.texi 1392894 ; * etc/DEBUG: Minor copyedits. 304a5c8 ; * etc/DEBUG: Improve documentation of getting control to GDB. 56bf7d7 Fix regexp-opt documentation (bug #17862) 803ad6f ; Fix documentation of seq-subseq ed4530d * lisp/emacs-lisp/gv.el (gv-ref): Fix example of PLACE in doc... 88ea396 ; Spelling fixes 17197d0 Fix tags-query-replace docstring 80a7f8b Clarify documentation of precision in format specs 88a5052 Improve and clarify documentation of subprocesses 89eb09f * etc/PROBLEMS: Mention gnutls-cli 3.5.3 (Bug#24247). # Conflicts: # etc/PROBLEMS # src/process.c
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.h b/src/window.h
index c2898194854..a124b3311d0 100644
--- a/src/window.h
+++ b/src/window.h
@@ -920,7 +920,7 @@ wset_next_buffers (struct window *w, Lisp_Object val)
920 ? WINDOW_CONFIG_SCROLL_BAR_HEIGHT (W) \ 920 ? WINDOW_CONFIG_SCROLL_BAR_HEIGHT (W) \
921 : 0) 921 : 0)
922 922
923/* Height in pixels, and in lines, of the mode line. 923/* Height in pixels of the mode line.
924 May be zero if W doesn't have a mode line. */ 924 May be zero if W doesn't have a mode line. */
925#define WINDOW_MODE_LINE_HEIGHT(W) \ 925#define WINDOW_MODE_LINE_HEIGHT(W) \
926 (WINDOW_WANTS_MODELINE_P ((W)) \ 926 (WINDOW_WANTS_MODELINE_P ((W)) \
@@ -930,7 +930,7 @@ wset_next_buffers (struct window *w, Lisp_Object val)
930#define WINDOW_MODE_LINE_LINES(W) \ 930#define WINDOW_MODE_LINE_LINES(W) \
931 WINDOW_WANTS_MODELINE_P (W) 931 WINDOW_WANTS_MODELINE_P (W)
932 932
933/* Height in pixels, and in lines, of the header line. 933/* Height in pixels of the header line.
934 Zero if W doesn't have a header line. */ 934 Zero if W doesn't have a header line. */
935#define WINDOW_HEADER_LINE_HEIGHT(W) \ 935#define WINDOW_HEADER_LINE_HEIGHT(W) \
936 (WINDOW_WANTS_HEADER_LINE_P (W) \ 936 (WINDOW_WANTS_HEADER_LINE_P (W) \