aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-03-14 18:38:28 +0000
committerRichard M. Stallman1995-03-14 18:38:28 +0000
commit3b9f7964e9dae2b2c6705811cef66a1baca215f4 (patch)
tree5a9bf7b30dc3d0a25dcb034b605eb203adc28cb8 /src
parent20171c7c69aed5d4e343658f386e7d22370a1640 (diff)
downloademacs-3b9f7964e9dae2b2c6705811cef66a1baca215f4.tar.gz
emacs-3b9f7964e9dae2b2c6705811cef66a1baca215f4.zip
(Fash): Fix previous change.
Diffstat (limited to 'src')
-rw-r--r--src/data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 07ffcb3aa6b..83cbcf6bd9a 100644
--- a/src/data.c
+++ b/src/data.c
@@ -2018,8 +2018,8 @@ 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\
2019If COUNT is negative, shifting is actually to the right.\n\ 2019If COUNT is negative, shifting is actually to the right.\n\
2020In this case, the sign bit is duplicated.") 2020In 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