comparison src/data.c @ 11002:ff115809a39e

(Fash): Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Tue, 14 Mar 1995 18:38:28 +0000
parents 6a8b6db450dc
children 48bf6677dab3
comparison
equal deleted inserted replaced
11001:2736b0e7295b 11002:ff115809a39e
2016 2016
2017 DEFUN ("ash", Fash, Sash, 2, 2, 0, 2017 DEFUN ("ash", Fash, Sash, 2, 2, 0,
2018 "Return VALUE with its bits shifted left by COUNT.\n\ 2018 "Return VALUE with its bits shifted left by COUNT.\n\
2019 If COUNT is negative, shifting is actually to the right.\n\ 2019 If COUNT is negative, shifting is actually to the right.\n\
2020 In this case, the sign bit is duplicated.") 2020 In this case, the sign bit is duplicated.")
2021 (value, num2) 2021 (value, count)
2022 register Lisp_Object value, num2; 2022 register Lisp_Object value, count;
2023 { 2023 {
2024 register Lisp_Object val; 2024 register Lisp_Object val;
2025 2025
2026 CHECK_NUMBER (value, 0); 2026 CHECK_NUMBER (value, 0);
2027 CHECK_NUMBER (count, 1); 2027 CHECK_NUMBER (count, 1);