mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-05 11:49:37 +00:00
Improve wording of lsh docstring
* lisp/subr.el (lsh): Improve wording of docstring.
This commit is contained in:
parent
0cc651acdd
commit
e15dcb2db5
1 changed files with 4 additions and 4 deletions
|
@ -571,10 +571,10 @@ If COUNT is negative, shifting is actually to the right.
|
||||||
In this case, if VALUE is a negative fixnum treat it as unsigned,
|
In this case, if VALUE is a negative fixnum treat it as unsigned,
|
||||||
i.e., subtract 2 * `most-negative-fixnum' from VALUE before shifting it.
|
i.e., subtract 2 * `most-negative-fixnum' from VALUE before shifting it.
|
||||||
|
|
||||||
Most uses of this function turn out to be mistakes. We recommend
|
Most uses of this function turn out to be mistakes. We recommend using
|
||||||
to use `ash' instead, unless COUNT could ever be negative, and
|
`ash' instead, unless COUNT could ever be negative, in which case your
|
||||||
if, when COUNT is negative, your program really needs the special
|
program should only use this function if it specifically requires the
|
||||||
treatment of negative COUNT provided by this function."
|
special handling of negative COUNT."
|
||||||
(declare (ftype (function (integer integer) integer))
|
(declare (ftype (function (integer integer) integer))
|
||||||
(compiler-macro
|
(compiler-macro
|
||||||
(lambda (form)
|
(lambda (form)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue