diff options
| author | Kenichi Handa | 2000-12-14 01:42:13 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-12-14 01:42:13 +0000 |
| commit | f15dafe081c90d4c5cd69e016226e5636dc5d22f (patch) | |
| tree | 02c9b817f684cf79840ffd2afd1b0b170f296e4c /src | |
| parent | a20193cd46a1e1a5d8f262c2ed5db9a9e73c4892 (diff) | |
| download | emacs-f15dafe081c90d4c5cd69e016226e5636dc5d22f.tar.gz emacs-f15dafe081c90d4c5cd69e016226e5636dc5d22f.zip | |
(Fmd5): Docstring improved.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 21 |
1 files changed, 16 insertions, 5 deletions
| @@ -4979,12 +4979,23 @@ 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 | { |