diff options
author | Martin Rudalics <rudalics@gmx.at> | 2007-12-21 10:22:37 +0000 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2007-12-21 10:22:37 +0000 |
commit | 8ed6049f02e437f0146257543ee1c78589dde8d1 (patch) | |
tree | 24fdb79e46572542a9020b04344e3799b8328e7f /lisp/autoinsert.el | |
parent | 99a3e35f970a1c5da44e271f2471bd99d83d233a (diff) | |
download | emacs-8ed6049f02e437f0146257543ee1c78589dde8d1.tar.gz |
(auto-insert-alist): Remove nonsensical precision
specifier from format-string.
Diffstat (limited to 'lisp/autoinsert.el')
-rw-r--r-- | lisp/autoinsert.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index 5887529ba43..4ed1942ee80 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -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)) |