From: Magnus H. <leg...@us...> - 2008-09-29 12:53:46
|
Update of /cvsroot/emacs-jabber/emacs-jabber In directory sc8-pr-cvs17.sourceforge.net:/tmp/cvs-serv19676 Modified Files: jabber-ft-common.el Log Message: Revision: ma...@fr...--2005/emacs-jabber--cvs-head--0--patch-599 Creator: Magnus Henoch <ma...@fr...> Fix docstring and type of jabber-ft-md5sum-program Index: jabber-ft-common.el =================================================================== RCS file: /cvsroot/emacs-jabber/emacs-jabber/jabber-ft-common.el,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- jabber-ft-common.el 25 Feb 2006 11:53:29 -0000 1.2 +++ jabber-ft-common.el 29 Sep 2008 12:53:35 -0000 1.3 @@ -1,6 +1,6 @@ ;;; jabber-ft-common.el --- Common functions for sending and receiving files (JEP-0096) -;; Copyright (C) 2006 Magnus Henoch +;; Copyright (C) 2006, 2008 Magnus Henoch ;; Author: Magnus Henoch <ma...@fr...> @@ -24,8 +24,10 @@ (when (executable-find "md5sum") (list (executable-find "md5sum")))) "The program to use to calculate MD5 sums of files. -It should accept the file name as the only argument." - :type 'string +The first item should be the name of the program, and the remaing +items the arguments. The file name is appended as the last +argument." + :type '(repeat string) :group 'jabber) (defun jabber-ft-get-md5 (file-name) |