comparison src/fns.c @ 34538:881bdfeacf55

(Fmd5): Docstring improved.
author Kenichi Handa <handa@m17n.org>
date Thu, 14 Dec 2000 01:42:13 +0000
parents f493b32a1a91
children a94a01759d0b
comparison
equal deleted inserted replaced
34537:5cb2cda06aa1 34538:881bdfeacf55
4977 \n\ 4977 \n\
4978 The two optional arguments START and END are character positions\n\ 4978 The two optional arguments START and END are character positions\n\
4979 specifying for which part of OBJECT the message digest should be computed.\n\ 4979 specifying for which part of OBJECT the message digest should be computed.\n\
4980 If nil or omitted, the digest is computed for the whole OBJECT.\n\ 4980 If nil or omitted, the digest is computed for the whole OBJECT.\n\
4981 \n\ 4981 \n\
4982 Third optional argument CODING-SYSTEM specifies the coding system text\n\ 4982 The MD5 message digest is computed from the result of encoding the\n\
4983 should be converted to before computing the digest. If nil or omitted,\n\ 4983 text in a coding system, not directly from the internal Emacs form\n\
4984 the current format is used or a format is guessed.\n\ 4984 of the text. The optional fourth argument CODING-SYSTEM specifies\n\
4985 which coding system to encode the text with. It should be the same\n\
4986 coding system that you used or will use when actually writing the text\n\
4987 into a file.\n\
4985 \n\ 4988 \n\
4986 Fourth optional argument NOERROR is there for compatability with other\n\ 4989 If CODING-SYSTEM is nil or omitted, the default depends on OBJECT.\n\
4987 Emacsen and is ignored.") 4990 If OBJECT is a buffer, the default for CODING-SYSTEM is whatever\n\
4991 coding system would be chosen by default for writing this text\n\
4992 into a file.\n\
4993 \n\
4994 If OBJECT is a string, the most preferred coding system (see the\n\
4995 command `prefer-coding-system') is used.\n\
4996 \n\
4997 The optional fifth argument NOERROR exists for compatibility with\n\
4998 other Emacs versions, and is ignored.")
4988 (object, start, end, coding_system, noerror) 4999 (object, start, end, coding_system, noerror)
4989 Lisp_Object object, start, end, coding_system, noerror; 5000 Lisp_Object object, start, end, coding_system, noerror;
4990 { 5001 {
4991 unsigned char digest[16]; 5002 unsigned char digest[16];
4992 unsigned char value[33]; 5003 unsigned char value[33];