diff options
| author | Stefan Kangas | 2025-02-22 18:15:37 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2025-02-23 20:47:34 +0100 |
| commit | e15dcb2db5c40e90ea2a21391af5addb9e778779 (patch) | |
| tree | 86c2f6b269fe31a0fe8a550b6ddcd45545a59bff | |
| parent | 0cc651acddb87180357ab8ff4adcbac8d6174e50 (diff) | |
| download | emacs-e15dcb2db5c40e90ea2a21391af5addb9e778779.tar.gz emacs-e15dcb2db5c40e90ea2a21391af5addb9e778779.zip | |
Improve wording of lsh docstring
* lisp/subr.el (lsh): Improve wording of docstring.
| -rw-r--r-- | lisp/subr.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 7aca542dab4..7552378a781 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -571,10 +571,10 @@ If COUNT is negative, shifting is actually to the right. | |||
| 571 | In this case, if VALUE is a negative fixnum treat it as unsigned, | 571 | In this case, if VALUE is a negative fixnum treat it as unsigned, |
| 572 | i.e., subtract 2 * `most-negative-fixnum' from VALUE before shifting it. | 572 | i.e., subtract 2 * `most-negative-fixnum' from VALUE before shifting it. |
| 573 | 573 | ||
| 574 | Most uses of this function turn out to be mistakes. We recommend | 574 | Most uses of this function turn out to be mistakes. We recommend using |
| 575 | to use `ash' instead, unless COUNT could ever be negative, and | 575 | `ash' instead, unless COUNT could ever be negative, in which case your |
| 576 | if, when COUNT is negative, your program really needs the special | 576 | program should only use this function if it specifically requires the |
| 577 | treatment of negative COUNT provided by this function." | 577 | special handling of negative COUNT." |
| 578 | (declare (ftype (function (integer integer) integer)) | 578 | (declare (ftype (function (integer integer) integer)) |
| 579 | (compiler-macro | 579 | (compiler-macro |
| 580 | (lambda (form) | 580 | (lambda (form) |