diff options
author | Juri Linkov <juri@jurta.org> | 2012-07-17 21:15:02 +0300 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2012-07-17 21:15:02 +0300 |
commit | b19dd9d1bbf0afce896a367a817e0e22c381308b (patch) | |
tree | 906318056f35ff57050cd6e2397f9a99350d5b3a /lisp/descr-text.el | |
parent | bcdc27d7d4a5914ddbbec86441064bbe8f231a52 (diff) | |
download | emacs-b19dd9d1bbf0afce896a367a817e0e22c381308b.tar.gz |
* lisp/descr-text.el (describe-char): Fix format args.
Fixes: debbugs:10129
Diffstat (limited to 'lisp/descr-text.el')
-rw-r--r-- | lisp/descr-text.el | 2 |
1 files changed, 1 insertions, 1 deletions
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" |