aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2000-12-14 01:42:13 +0000
committerKenichi Handa2000-12-14 01:42:13 +0000
commitf15dafe081c90d4c5cd69e016226e5636dc5d22f (patch)
tree02c9b817f684cf79840ffd2afd1b0b170f296e4c
parenta20193cd46a1e1a5d8f262c2ed5db9a9e73c4892 (diff)
downloademacs-f15dafe081c90d4c5cd69e016226e5636dc5d22f.tar.gz
emacs-f15dafe081c90d4c5cd69e016226e5636dc5d22f.zip
(Fmd5): Docstring improved.
-rw-r--r--src/fns.c21
1 files changed, 16 insertions, 5 deletions
diff --git a/src/fns.c b/src/fns.c
index a317f1bef3a..5c0fd2d3068 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4979,12 +4979,23 @@ The two optional arguments START and END are character positions\n\
4979specifying for which part of OBJECT the message digest should be computed.\n\ 4979specifying for which part of OBJECT the message digest should be computed.\n\
4980If nil or omitted, the digest is computed for the whole OBJECT.\n\ 4980If nil or omitted, the digest is computed for the whole OBJECT.\n\
4981\n\ 4981\n\
4982Third optional argument CODING-SYSTEM specifies the coding system text\n\ 4982The MD5 message digest is computed from the result of encoding the\n\
4983should be converted to before computing the digest. If nil or omitted,\n\ 4983text in a coding system, not directly from the internal Emacs form\n\
4984the current format is used or a format is guessed.\n\ 4984of the text. The optional fourth argument CODING-SYSTEM specifies\n\
4985which coding system to encode the text with. It should be the same\n\
4986coding system that you used or will use when actually writing the text\n\
4987into a file.\n\
4985\n\ 4988\n\
4986Fourth optional argument NOERROR is there for compatability with other\n\ 4989If CODING-SYSTEM is nil or omitted, the default depends on OBJECT.\n\
4987Emacsen and is ignored.") 4990If OBJECT is a buffer, the default for CODING-SYSTEM is whatever\n\
4991coding system would be chosen by default for writing this text\n\
4992into a file.\n\
4993\n\
4994If OBJECT is a string, the most preferred coding system (see the\n\
4995command `prefer-coding-system') is used.\n\
4996\n\
4997The optional fifth argument NOERROR exists for compatibility with\n\
4998other 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{