diff options
| author | Gerd Moellmann | 2000-11-30 14:03:30 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-11-30 14:03:30 +0000 |
| commit | 18e81dc8a94bff0944e8ae6879f740dcd4f499df (patch) | |
| tree | ccadff95b69d7613113ca11f314d141a1523bee5 /src | |
| parent | e16b4a497c92de38d99d451004d7a02aecb200ee (diff) | |
| download | emacs-18e81dc8a94bff0944e8ae6879f740dcd4f499df.tar.gz emacs-18e81dc8a94bff0944e8ae6879f740dcd4f499df.zip | |
(Fmd5): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 17 |
1 files changed, 9 insertions, 8 deletions
| @@ -4971,17 +4971,18 @@ integers, including negative integers.") | |||
| 4971 | #include "md5.h" | 4971 | #include "md5.h" |
| 4972 | 4972 | ||
| 4973 | DEFUN ("md5", Fmd5, Smd5, 1, 5, 0, | 4973 | DEFUN ("md5", Fmd5, Smd5, 1, 5, 0, |
| 4974 | "Return MD5 hash of OBJECT, a buffer or string.\n\ | 4974 | "Return MD5 message digest of OBJECT, a buffer or string.\n\ |
| 4975 | \n\ | 4975 | \n\ |
| 4976 | The two optional arguments START and END are character positions;\n\ | 4976 | The two optional arguments START and END are character positions\n\ |
| 4977 | they can be in either order.\n\ | 4977 | specifying for which part of OBJECT the message digest should be computed.\n\ |
| 4978 | If nil or omitted, the digest is computed for the whole OBJECT.\n\ | ||
| 4978 | \n\ | 4979 | \n\ |
| 4979 | The third optional argument CODING-SYSTEM specify coding system text\n\ | 4980 | Third optional argument CODING-SYSTEM specifies the coding system text\n\ |
| 4980 | should be converted to before computing digest. If nil, uses the\n\ | 4981 | should be converted to before computing the digest. If nil or omitted,\n\ |
| 4981 | current format or guesses.\n\ | 4982 | the current format is used or a format is guessed.\n\ |
| 4982 | \n\ | 4983 | \n\ |
| 4983 | Fourth optional argument NOERROR doesn't do anything (for XEmacs\n\ | 4984 | Fourth optional argument NOERROR is there for compatability with other\n\ |
| 4984 | compatibility).") | 4985 | Emacsen and is ignored.") |
| 4985 | (object, start, end, coding_system, noerror) | 4986 | (object, start, end, coding_system, noerror) |
| 4986 | Lisp_Object object, start, end, coding_system, noerror; | 4987 | Lisp_Object object, start, end, coding_system, noerror; |
| 4987 | { | 4988 | { |