(auto-insert-alist): Remove nonsensical precision

specifier from format-string.
This commit is contained in:
Martin Rudalics 2007-12-21 10:22:37 +00:00
parent 99a3e35f97
commit 8ed6049f02
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-12-21 Martin Rudalics <rudalics@gmx.at>
* autoinsert.el (auto-insert-alist): Remove nonsensical precision
specifier from format-string. Reported by Ye Wenbin.
2007-12-20 Jason Rumney <jasonr@gnu.org>
* nxml/nxml-mode.el (nxml-faces): Rename from nxml-highlighting-faces.

View file

@ -179,7 +179,7 @@ If this contains a %s, that will be replaced by the matching rule."
;;'(setq v1 (apply 'vector (mapcar 'car finder-known-keywords)))
'(setq v1 (mapcar (lambda (x) (list (symbol-name (car x))))
finder-known-keywords)
v2 (mapconcat (lambda (x) (format "%10.0s: %s" (car x) (cdr x)))
v2 (mapconcat (lambda (x) (format "%12s: %s" (car x) (cdr x)))
finder-known-keywords
"\n"))
((let ((minibuffer-help-form v2))