diff options
| author | Po Lu | 2024-08-20 21:57:25 +0800 |
|---|---|---|
| committer | Po Lu | 2024-08-20 21:57:25 +0800 |
| commit | a2684967270387d2e7ec79de148f04b7f54f2260 (patch) | |
| tree | 41098b24a2e99cd9f05448d18ea4f1c9fa808606 /doc | |
| parent | e1ee82f7387fa4e8c2d2bc096eae393298906329 (diff) | |
| parent | 3419e7ea522462c47a5ab4389a879d8b7c14452b (diff) | |
| download | emacs-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.texi | 14 |
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 |
| 4995 | For @code{md5}: 32 characters (32 bytes if @var{binary} is | 4995 | For @code{md5}: 32 characters (16 bytes if @var{binary} is |
| 4996 | non-@code{nil}). | 4996 | non-@code{nil}). |
| 4997 | @item | 4997 | @item |
| 4998 | For @code{sha1}: 40 characters (40 bytes if @var{binary} is | 4998 | For @code{sha1}: 40 characters (20 bytes if @var{binary} is |
| 4999 | non-@code{nil}). | 4999 | non-@code{nil}). |
| 5000 | @item | 5000 | @item |
| 5001 | For @code{sha224}: 56 characters (56 bytes if @var{binary} is | 5001 | For @code{sha224}: 56 characters (28 bytes if @var{binary} is |
| 5002 | non-@code{nil}). | 5002 | non-@code{nil}). |
| 5003 | @item | 5003 | @item |
| 5004 | For @code{sha256}: 64 characters (64 bytes if @var{binary} is | 5004 | For @code{sha256}: 64 characters (32 bytes if @var{binary} is |
| 5005 | non-@code{nil}). | 5005 | non-@code{nil}). |
| 5006 | @item | 5006 | @item |
| 5007 | For @code{sha384}: 96 characters (96 bytes if @var{binary} is | 5007 | For @code{sha384}: 96 characters (48 bytes if @var{binary} is |
| 5008 | non-@code{nil}). | 5008 | non-@code{nil}). |
| 5009 | @item | 5009 | @item |
| 5010 | For @code{sha512}: 128 characters (128 bytes if @var{binary} is | 5010 | For @code{sha512}: 128 characters (64 bytes if @var{binary} is |
| 5011 | non-@code{nil}). | 5011 | non-@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 | ||
| 5064 | It returns a 40-character string if @var{binary} is @code{nil}, or a | 5064 | It returns a 40-character string if @var{binary} is @code{nil}, or a |
| 5065 | 40-byte unibyte string otherwise. | 5065 | 20-byte unibyte string otherwise. |
| 5066 | @end defun | 5066 | @end defun |
| 5067 | 5067 | ||
| 5068 | @node Suspicious Text | 5068 | @node Suspicious Text |