summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2011-07-21 16:14:58 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2011-08-18 10:41:31 +0200
commit9479991d4c453863c04d933865ee7ad7a9f47654 (patch)
tree0be09cca84d54e801d478f1b3f728961d218bee8
parenta7600032d00fa9346853630232de5eebd2f12778 (diff)
downloadorg-mode-9479991d4c453863c04d933865ee7ad7a9f47654.tar.gz
org-indent: modify messages sent
* lisp/org-indent.el (org-indent-indent-buffer): send more appropriate messages .
-rw-r--r--lisp/org-indent.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org-indent.el b/lisp/org-indent.el
index 9b8599a..ff86117 100644
--- a/lisp/org-indent.el
+++ b/lisp/org-indent.el
@@ -183,12 +183,12 @@ useful to make it ever so slightly different."
(interactive)
(if (not (org-mode-p))
(error "Buffer major mode must be Org")
- (message "Initializing buffer indentation. It may take a few seconds...")
+ (message "Setting buffer indentation. It may take a few seconds...")
(org-with-wide-buffer
(with-silent-modifications
(org-indent-remove-properties (point-min) (point-max))
(org-indent-add-properties (point-min) (point-max))))
- (message "Indentation of buffer initialized.")))
+ (message "Indentation of buffer set.")))
(defsubst org-indent-remove-properties (beg end)
"Remove indentations between BEG and END."