aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPo Lu2024-08-20 21:57:25 +0800
committerPo Lu2024-08-20 21:57:25 +0800
commita2684967270387d2e7ec79de148f04b7f54f2260 (patch)
tree41098b24a2e99cd9f05448d18ea4f1c9fa808606 /doc
parente1ee82f7387fa4e8c2d2bc096eae393298906329 (diff)
parent3419e7ea522462c47a5ab4389a879d8b7c14452b (diff)
downloademacs-a2684967270387d2e7ec79de148f04b7f54f2260.tar.gz
emacs-a2684967270387d2e7ec79de148f04b7f54f2260.zip
Merge from savannah/emacs-30
3419e7ea522 Correct Android failure to open an old CJK font 45ae4de0e7c * lisp/help-fns.el (help-definition-prefixes): Don't dele... fc7581ae2ee ; Fix documentation of secure-hash functions 21be5cadaf1 ; * lisp/subr.el (sha1): Fix typo in docstring. 8715619d485 ; * etc/NEWS: Fix wording of last change. 023d387a7bd Update to Org 9.7.10 b54e8b3741b ; * etc/NEWS: Announce 'shr-fill-text'. acfd91bc0c7 ; * lisp/emacs-lisp/compat.el: Fix header style. 55337dc36a2 * test/infra/gitlab-ci.yml (.tree-sitter-template): Adapt... d8e9eb73c2b Bump use-package version for Emacs 30.1 4d9d3fec1b9 * Makefile.in (CHANGELOG_HISTORY_INDEX_MAX): Bump. 502285e84aa ; * admin/make-tarball.txt: Some clarifications.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/text.texi14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi
index 196fe89a092..278b53d7f65 100644
--- a/doc/lispref/text.texi
+++ b/doc/lispref/text.texi
@@ -4992,22 +4992,22 @@ of the returned string depends on @var{algorithm}:
4992 4992
4993@itemize 4993@itemize
4994@item 4994@item
4995For @code{md5}: 32 characters (32 bytes if @var{binary} is 4995For @code{md5}: 32 characters (16 bytes if @var{binary} is
4996non-@code{nil}). 4996non-@code{nil}).
4997@item 4997@item
4998For @code{sha1}: 40 characters (40 bytes if @var{binary} is 4998For @code{sha1}: 40 characters (20 bytes if @var{binary} is
4999non-@code{nil}). 4999non-@code{nil}).
5000@item 5000@item
5001For @code{sha224}: 56 characters (56 bytes if @var{binary} is 5001For @code{sha224}: 56 characters (28 bytes if @var{binary} is
5002non-@code{nil}). 5002non-@code{nil}).
5003@item 5003@item
5004For @code{sha256}: 64 characters (64 bytes if @var{binary} is 5004For @code{sha256}: 64 characters (32 bytes if @var{binary} is
5005non-@code{nil}). 5005non-@code{nil}).
5006@item 5006@item
5007For @code{sha384}: 96 characters (96 bytes if @var{binary} is 5007For @code{sha384}: 96 characters (48 bytes if @var{binary} is
5008non-@code{nil}). 5008non-@code{nil}).
5009@item 5009@item
5010For @code{sha512}: 128 characters (128 bytes if @var{binary} is 5010For @code{sha512}: 128 characters (64 bytes if @var{binary} is
5011non-@code{nil}). 5011non-@code{nil}).
5012@end itemize 5012@end itemize
5013 5013
@@ -5062,7 +5062,7 @@ This function is equivalent to calling @code{secure-hash} like this:
5062@end lisp 5062@end lisp
5063 5063
5064It returns a 40-character string if @var{binary} is @code{nil}, or a 5064It returns a 40-character string if @var{binary} is @code{nil}, or a
506540-byte unibyte string otherwise. 506520-byte unibyte string otherwise.
5066@end defun 5066@end defun
5067 5067
5068@node Suspicious Text 5068@node Suspicious Text