aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2025-02-22 18:15:37 +0100
committerStefan Kangas2025-02-23 20:47:34 +0100
commite15dcb2db5c40e90ea2a21391af5addb9e778779 (patch)
tree86c2f6b269fe31a0fe8a550b6ddcd45545a59bff
parent0cc651acddb87180357ab8ff4adcbac8d6174e50 (diff)
downloademacs-e15dcb2db5c40e90ea2a21391af5addb9e778779.tar.gz
emacs-e15dcb2db5c40e90ea2a21391af5addb9e778779.zip
Improve wording of lsh docstring
* lisp/subr.el (lsh): Improve wording of docstring.
-rw-r--r--lisp/subr.el8
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.
571In this case, if VALUE is a negative fixnum treat it as unsigned, 571In this case, if VALUE is a negative fixnum treat it as unsigned,
572i.e., subtract 2 * `most-negative-fixnum' from VALUE before shifting it. 572i.e., subtract 2 * `most-negative-fixnum' from VALUE before shifting it.
573 573
574Most uses of this function turn out to be mistakes. We recommend 574Most uses of this function turn out to be mistakes. We recommend using
575to use `ash' instead, unless COUNT could ever be negative, and 575`ash' instead, unless COUNT could ever be negative, in which case your
576if, when COUNT is negative, your program really needs the special 576program should only use this function if it specifically requires the
577treatment of negative COUNT provided by this function." 577special 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)