aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2011-06-02 15:04:44 -0300
committerStefan Monnier2011-06-02 15:04:44 -0300
commitea9fafe0937ebd99780610a7c1451ca08b013702 (patch)
tree1c849b56bf6e4c6fc984c876aa5135eca1bcf12f
parent037e65b496485cf3bd570a805bac787abac39cf3 (diff)
downloademacs-ea9fafe0937ebd99780610a7c1451ca08b013702.tar.gz
emacs-ea9fafe0937ebd99780610a7c1451ca08b013702.zip
* lisp/subr.el (make-progress-reporter): Add "..." by default.
Fixes: debbugs:8785
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el2
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3834c99f000..101384cee7d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
4
12011-06-02 Juanma Barranquero <lekktu@gmail.com> 52011-06-02 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * bs.el (bs--mark-unmark, bs--nth-wrapper): 7 * bs.el (bs--mark-unmark, bs--nth-wrapper):
diff --git a/lisp/subr.el b/lisp/subr.el
index 74c9ce57d8f..d0ef38c1140 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -3702,6 +3702,8 @@ echo area updates (default is 0.2 seconds.) If the function
3702`float-time' is not present, time is not tracked at all. If the 3702`float-time' is not present, time is not tracked at all. If the
3703OS is not capable of measuring fractions of seconds, this 3703OS is not capable of measuring fractions of seconds, this
3704parameter is effectively rounded up." 3704parameter is effectively rounded up."
3705 (when (string-match "[[:alnum:]]\\'" message)
3706 (setq message (concat message "...")))
3705 (unless min-time 3707 (unless min-time
3706 (setq min-time 0.2)) 3708 (setq min-time 0.2))
3707 (let ((reporter 3709 (let ((reporter