summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-03-14 18:38:28 +0000
committerRichard M. Stallman <rms@gnu.org>1995-03-14 18:38:28 +0000
commit0afe49e4d9fe660af9bf004caf1c2740f800389d (patch)
tree206e22bdcdfd0921fa8f31b598ca745686aeeb5e /src
parente51417f153d8e0b5a754902664e3f034063bc411 (diff)
downloademacs-0afe49e4d9fe660af9bf004caf1c2740f800389d.tar.gz
(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,
"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.")
- (value, num2)
- register Lisp_Object value, num2;
+ (value, count)
+ register Lisp_Object value, count;
{
register Lisp_Object val;