diff options
| author | Richard M. Stallman | 1995-03-14 18:38:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-03-14 18:38:28 +0000 |
| commit | 3b9f7964e9dae2b2c6705811cef66a1baca215f4 (patch) | |
| tree | 5a9bf7b30dc3d0a25dcb034b605eb203adc28cb8 /src | |
| parent | 20171c7c69aed5d4e343658f386e7d22370a1640 (diff) | |
| download | emacs-3b9f7964e9dae2b2c6705811cef66a1baca215f4.tar.gz emacs-3b9f7964e9dae2b2c6705811cef66a1baca215f4.zip | |
(Fash): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 4 |
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\ |
| 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 | ||