Mercurial > emacs
comparison src/data.c @ 47276:fbe02a367006
(Flsh): Fix spacing.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 06 Sep 2002 09:03:04 +0000 |
parents | 06e2e0c47046 |
children | a6906c113d14 |
comparison
equal
deleted
inserted
replaced
47275:49ac77cddafb | 47276:fbe02a367006 |
---|---|
2740 } | 2740 } |
2741 | 2741 |
2742 DEFUN ("lsh", Flsh, Slsh, 2, 2, 0, | 2742 DEFUN ("lsh", Flsh, Slsh, 2, 2, 0, |
2743 doc: /* Return VALUE with its bits shifted left by COUNT. | 2743 doc: /* Return VALUE with its bits shifted left by COUNT. |
2744 If COUNT is negative, shifting is actually to the right. | 2744 If COUNT is negative, shifting is actually to the right. |
2745 In this case, zeros are shifted in on the left. */) | 2745 In this case, zeros are shifted in on the left. */) |
2746 (value, count) | 2746 (value, count) |
2747 register Lisp_Object value, count; | 2747 register Lisp_Object value, count; |
2748 { | 2748 { |
2749 register Lisp_Object val; | 2749 register Lisp_Object val; |
2750 | 2750 |