mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-01 08:17:38 +00:00
* lisp/gnus/gnus-spec.el (gnus-xmas-format): Fix weird error call.
This commit is contained in:
parent
96fd6ea214
commit
311273ab79
@ -1,5 +1,7 @@
|
||||
2013-09-13 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* gnus-spec.el (gnus-xmas-format): Fix weird error call.
|
||||
|
||||
* gnus-html.el (declare-function): Add compat stub for ancient Emacs.
|
||||
(image-size): Declare.
|
||||
|
||||
|
@ -512,7 +512,8 @@ are supported for %s."
|
||||
(delete-char -1))
|
||||
(t
|
||||
(if (null args)
|
||||
(error 'wrong-number-of-arguments #'my-format n fstring))
|
||||
(signal 'wrong-number-of-arguments
|
||||
(list #'gnus-xmas-format n fstring)))
|
||||
(let* ((minlen (string-to-number (or (match-string 2) "")))
|
||||
(arg (car args))
|
||||
(str (if (stringp arg) arg (format "%s" arg)))
|
||||
|
Loading…
Reference in New Issue
Block a user