aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics <[email protected]>2007-12-21 10:22:37 +0000
committerMartin Rudalics <[email protected]>2007-12-21 10:22:37 +0000
commit8ed6049f02e437f0146257543ee1c78589dde8d1 (patch)
tree24fdb79e46572542a9020b04344e3799b8328e7f
parent99a3e35f970a1c5da44e271f2471bd99d83d233a (diff)
(auto-insert-alist): Remove nonsensical precision
specifier from format-string.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/autoinsert.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e6c0d0020e..8ced758706 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-21 Martin Rudalics <[email protected]>
+
+ * autoinsert.el (auto-insert-alist): Remove nonsensical precision
+ specifier from format-string. Reported by Ye Wenbin.
+
2007-12-20 Jason Rumney <[email protected]>
* nxml/nxml-mode.el (nxml-faces): Rename from nxml-highlighting-faces.
diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el
index 5887529ba4..4ed1942ee8 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))