aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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