From: Dave Love Date: Wed, 22 Nov 2000 11:17:23 +0000 (+0000) Subject: (md5): Fix error call. X-Git-Tag: emacs-pretest-21.0.92~192 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e43cfb397b5d4da7bc58410a5a6d69642cc3cab5;p=emacs.git (md5): Fix error call. --- 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." (unless (eq 0 (call-process-region (or start (point-min)) (or end (point-max)) md5-program nil out-buffer)) - (error "Running MD5 command %s failed" - (cons md5-program md5-program-args))))) + (error "Running `md5-program' failed")))) ;; The meaningful output is the first 32 characters. ;; Don't return the newline that follows them! (buffer-substring 1 33))))