aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorAndreas Schwab2012-06-30 11:13:54 +0200
committerAndreas Schwab2012-06-30 11:13:54 +0200
commitaf5a5a98c882b9c4ed61bf840ce4f7e3d20baaa8 (patch)
tree5bbd1f39119432ace0aef77535250ac8907c6dd4 /src/window.c
parent3cfbebba71090f6ea0c2ca4a6056a3e645cee2e8 (diff)
downloademacs-af5a5a98c882b9c4ed61bf840ce4f7e3d20baaa8.tar.gz
emacs-af5a5a98c882b9c4ed61bf840ce4f7e3d20baaa8.zip
* lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
argument. * character.c, charset.c, menu.c, process.c, window.c: Adjust all uses.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 7691eb4dca9..df2c04a7663 100644
--- a/src/window.c
+++ b/src/window.c
@@ -6163,7 +6163,7 @@ Fourth parameter HORIZONTAL-TYPE is currently unused. */)
6163 6163
6164 if (!NILP (width)) 6164 if (!NILP (width))
6165 { 6165 {
6166 CHECK_RANGED_INTEGER (0, width, INT_MAX); 6166 CHECK_RANGED_INTEGER (width, 0, INT_MAX);
6167 6167
6168 if (XINT (width) == 0) 6168 if (XINT (width) == 0)
6169 vertical_type = Qnil; 6169 vertical_type = Qnil;