diff options
author | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:38:03 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2004-02-08 22:38:03 +0000 |
commit | d71eb4d4f260f1cef4d4baef4a97cd80b1bfda4b (patch) | |
tree | 32d58c0424b073c50cba70cd07d0284c5a9fdf6b /lisp/emacs-lisp/lisp-mnt.el | |
parent | 6d255ee3ccca4ea24544a1f0c643c9e4083edf57 (diff) | |
download | emacs-d71eb4d4f260f1cef4d4baef4a97cd80b1bfda4b.tar.gz |
(lm-verify): Remove useless use of
format.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mnt.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mnt.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el index 245772dfc54..e67835eb82d 100644 --- a/lisp/emacs-lisp/lisp-mnt.el +++ b/lisp/emacs-lisp/lisp-mnt.el @@ -1,6 +1,6 @@ ;;; lisp-mnt.el --- utility functions for Emacs Lisp maintainers -;; Copyright (C) 1992, 1994, 1997, 2000, 2001, 2003 Free Software Foundation, Inc. +;; Copyright (C) 1992, 1994, 1997, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> ;; Maintainer: FSF @@ -522,7 +522,7 @@ copyright notice is allowed." (setq ret (cond ((null name) - (format "Package %s does not exist")) + "Can't find package name") ((not (lm-authors)) "`Author:' tag missing") ((not (lm-maintainer)) @@ -546,7 +546,7 @@ copyright notice is allowed." (concat "^;;;[ \t]+" name "[ \t]+ends here[ \t]*$" "\\|^;;;[ \t]+ End of file[ \t]+" name) nil t))) - (format "Can't find the footer line")) + "Can't find the footer line") ((not (and (lm-copyright-mark) (lm-crack-copyright))) "Can't find a valid copyright notice") ((not (or non-fsf-ok |