diff options
| author | Dave Love | 2000-11-22 11:17:23 +0000 |
|---|---|---|
| committer | Dave Love | 2000-11-22 11:17:23 +0000 |
| commit | e43cfb397b5d4da7bc58410a5a6d69642cc3cab5 (patch) | |
| tree | 6f0de0d9a5130bb69445063a80cf32f2af70195c | |
| parent | cade2e78973a442f332fc481b156dc477a261600 (diff) | |
| download | emacs-e43cfb397b5d4da7bc58410a5a6d69642cc3cab5.tar.gz emacs-e43cfb397b5d4da7bc58410a5a6d69642cc3cab5.zip | |
(md5): Fix error call.
| -rw-r--r-- | lisp/md5.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/md5.el b/lisp/md5.el index 87309797cee..645bbc92826 100644 --- a/lisp/md5.el +++ b/lisp/md5.el | |||
| @@ -70,8 +70,7 @@ MD5 is defined in RFC 1321." | |||
| 70 | (unless (eq 0 (call-process-region (or start (point-min)) | 70 | (unless (eq 0 (call-process-region (or start (point-min)) |
| 71 | (or end (point-max)) | 71 | (or end (point-max)) |
| 72 | md5-program nil out-buffer)) | 72 | md5-program nil out-buffer)) |
| 73 | (error "Running MD5 command %s failed" | 73 | (error "Running `md5-program' failed")))) |
| 74 | (cons md5-program md5-program-args))))) | ||
| 75 | ;; The meaningful output is the first 32 characters. | 74 | ;; The meaningful output is the first 32 characters. |
| 76 | ;; Don't return the newline that follows them! | 75 | ;; Don't return the newline that follows them! |
| 77 | (buffer-substring 1 33)))) | 76 | (buffer-substring 1 33)))) |