diff options
Diffstat (limited to 'lisp/emacs-lisp/lisp-mnt.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mnt.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el index 6fdd348caab..393f0dd99e8 100644 --- a/lisp/emacs-lisp/lisp-mnt.el +++ b/lisp/emacs-lisp/lisp-mnt.el @@ -542,21 +542,21 @@ copyright notice is allowed." ((null name) "Can't find package name") ((not (lm-authors)) - "‘Author:’ tag missing") + "`Author:' tag missing") ((not (lm-maintainer)) - "‘Maintainer:’ tag missing") + "`Maintainer:' tag missing") ((not (lm-summary)) "Can't find the one-line summary description") ((not (lm-keywords)) - "‘Keywords:’ tag missing") + "`Keywords:' tag missing") ((not (lm-keywords-finder-p)) - "‘Keywords:’ has no valid finder keywords (see ‘finder-known-keywords’)") + "`Keywords:' has no valid finder keywords (see `finder-known-keywords')") ((not (lm-commentary-mark)) - "Can't find a ‘Commentary’ section marker") + "Can't find a `Commentary' section marker") ((not (lm-history-mark)) - "Can't find a ‘History’ section marker") + "Can't find a `History' section marker") ((not (lm-code-mark)) - "Can't find a ‘Code’ section marker") + "Can't find a `Code' section marker") ((progn (goto-char (point-max)) (not |