# HG changeset patch # User Richard M. Stallman # Date 794883020 0 # Node ID 6a8b6db450dc3379d9f9a049ccb6abb52061a2ce # Parent d1990c517cc940f3ff1bbb3e062ebb313cc85a9f (Fash, Flsh): Change arg names. diff -r d1990c517cc9 -r 6a8b6db450dc src/data.c --- a/src/data.c Fri Mar 10 04:30:57 1995 +0000 +++ b/src/data.c Sat Mar 11 00:50:20 1995 +0000 @@ -2018,18 +2018,18 @@ "Return VALUE with its bits shifted left by COUNT.\n\ If COUNT is negative, shifting is actually to the right.\n\ In this case, the sign bit is duplicated.") - (num1, num2) - register Lisp_Object num1, num2; + (value, num2) + register Lisp_Object value, num2; { register Lisp_Object val; - CHECK_NUMBER (num1, 0); - CHECK_NUMBER (num2, 1); + CHECK_NUMBER (value, 0); + CHECK_NUMBER (count, 1); - if (XINT (num2) > 0) - XSETINT (val, XINT (num1) << XFASTINT (num2)); + if (XINT (count) > 0) + XSETINT (val, XINT (value) << XFASTINT (count)); else - XSETINT (val, XINT (num1) >> -XINT (num2)); + XSETINT (val, XINT (value) >> -XINT (count)); return val; } @@ -2037,18 +2037,18 @@ "Return VALUE with its bits shifted left by COUNT.\n\ If COUNT is negative, shifting is actually to the right.\n\ In this case, zeros are shifted in on the left.") - (num1, num2) - register Lisp_Object num1, num2; + (value, count) + register Lisp_Object value, count; { register Lisp_Object val; - CHECK_NUMBER (num1, 0); - CHECK_NUMBER (num2, 1); + CHECK_NUMBER (value, 0); + CHECK_NUMBER (count, 1); - if (XINT (num2) > 0) - XSETINT (val, (EMACS_UINT) XUINT (num1) << XFASTINT (num2)); + if (XINT (count) > 0) + XSETINT (val, (EMACS_UINT) XUINT (value) << XFASTINT (count)); else - XSETINT (val, (EMACS_UINT) XUINT (num1) >> -XINT (num2)); + XSETINT (val, (EMACS_UINT) XUINT (value) >> -XINT (count)); return val; }