From b19dd9d1bbf0afce896a367a817e0e22c381308b Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Tue, 17 Jul 2012 21:15:02 +0300 Subject: [PATCH] * lisp/descr-text.el (describe-char): Fix format args. Fixes: debbugs:10129 --- lisp/ChangeLog | 6 +++++- lisp/descr-text.el | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 49cba828b69..2320a16a26e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2012-07-17 Juri Linkov + + * descr-text.el (describe-char): Fix format args. (Bug#10129) + 2012-07-17 Fabián Ezequiel Gallina Final renames and doc fixes for movement commands (bug#11899). * progmodes/python.el (python-nav-beginning-of-statement): Rename @@ -4197,7 +4201,7 @@ 2012-04-16 Chong Yidong - * 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. diff --git a/lisp/descr-text.el b/lisp/descr-text.el index bcb95a54ad6..6be33066d52 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -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" -- 2.11.4.GIT