aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-30 14:03:30 +0000
committerGerd Moellmann2000-11-30 14:03:30 +0000
commit18e81dc8a94bff0944e8ae6879f740dcd4f499df (patch)
treeccadff95b69d7613113ca11f314d141a1523bee5 /src
parente16b4a497c92de38d99d451004d7a02aecb200ee (diff)
downloademacs-18e81dc8a94bff0944e8ae6879f740dcd4f499df.tar.gz
emacs-18e81dc8a94bff0944e8ae6879f740dcd4f499df.zip
(Fmd5): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/fns.c b/src/fns.c
index f9dea02a491..db665a53968 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4971,17 +4971,18 @@ integers, including negative integers.")
4971#include "md5.h" 4971#include "md5.h"
4972 4972
4973DEFUN ("md5", Fmd5, Smd5, 1, 5, 0, 4973DEFUN ("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\
4976The two optional arguments START and END are character positions;\n\ 4976The two optional arguments START and END are character positions\n\
4977they can be in either order.\n\ 4977specifying for which part of OBJECT the message digest should be computed.\n\
4978If nil or omitted, the digest is computed for the whole OBJECT.\n\
4978\n\ 4979\n\
4979The third optional argument CODING-SYSTEM specify coding system text\n\ 4980Third optional argument CODING-SYSTEM specifies the coding system text\n\
4980should be converted to before computing digest. If nil, uses the\n\ 4981should be converted to before computing the digest. If nil or omitted,\n\
4981current format or guesses.\n\ 4982the current format is used or a format is guessed.\n\
4982\n\ 4983\n\
4983Fourth optional argument NOERROR doesn't do anything (for XEmacs\n\ 4984Fourth optional argument NOERROR is there for compatability with other\n\
4984compatibility).") 4985Emacsen 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{