Browse Source

org-indent: modify messages sent

* lisp/org-indent.el (org-indent-indent-buffer): send more appropriate
  messages .
Nicolas Goaziou 13 years ago
parent
commit
9479991d4c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/org-indent.el

+ 2 - 2
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."