* lisp/descr-text.el (describe-char): Fix format args.
authorJuri Linkov <juri@jurta.org>
Tue, 17 Jul 2012 18:15:02 +0000 (21:15 +0300)
committerJuri Linkov <juri@jurta.org>
Tue, 17 Jul 2012 18:15:02 +0000 (21:15 +0300)
Fixes: debbugs:10129

lisp/ChangeLog
lisp/descr-text.el

index 49cba82..2320a16 100644 (file)
@@ -1,3 +1,7 @@
+2012-07-17  Juri Linkov  <juri@jurta.org>
+
+       * descr-text.el (describe-char): Fix format args.  (Bug#10129)
+
 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
        Final renames and doc fixes for movement commands (bug#11899).
        * progmodes/python.el (python-nav-beginning-of-statement): Rename
 
 2012-04-16  Chong Yidong  <cyd@gnu.org>
 
-       * image.el (imagemagick--extension-regexp): New variable.
+       * image.el (imagemagick--file-regexp): New variable.
        (imagemagick-register-types): Use it.
        (imagemagick-types-inhibit): Add :set function.  Allow new value
        of t to inhibit all types.
index bcb95a5..6be3306 100644 (file)
@@ -533,7 +533,7 @@ relevant to POS."
                        (col      (current-column)))
                   (if (or (/= beg 1)  (/= end (1+ total)))
                       (format "%d of %d (%d%%), restriction: <%d-%d>, column: %d%s"
-                              pos total percent col beg end hscroll)
+                              pos total percent beg end col hscroll)
                     (if (= pos end)
                         (format "%d of %d (EOB), column: %d%s" pos total col hscroll)
                       (format "%d of %d (%d%%), column: %d%s"