summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-04-06 16:49:10 +0200
committerBastien Guerry <bzg@altern.org>2013-04-06 16:49:10 +0200
commit133afe8915193adeb9d6f98a3a139cecc1a7ea66 (patch)
treedf7185a2b176a50a23b90e047b1d3116add62712
parent67a55acb39a863e5522220a72b467d70fd8bb80f (diff)
downloadorg-mode-133afe8915193adeb9d6f98a3a139cecc1a7ea66.tar.gz
Cosmetic change in messages.
-rw-r--r--lisp/ox-latex.el2
-rw-r--r--lisp/ox-man.el2
-rw-r--r--lisp/ox-odt.el4
-rw-r--r--lisp/ox-texinfo.el2
4 files changed, 5 insertions, 5 deletions
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index f693019..aad9271 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -2922,7 +2922,7 @@ Return PDF file name or an error if it couldn't be produced."
;; not to whatever value the current buffer may have.
(default-directory (file-name-directory full-name))
errors)
- (unless snippet (message (format "Processing LaTeX file %s ..." texfile)))
+ (unless snippet (message (format "Processing LaTeX file %s..." texfile)))
(save-window-excursion
(cond
;; A function is provided: Apply it.
diff --git a/lisp/ox-man.el b/lisp/ox-man.el
index 2d63c35..4a5add8 100644
--- a/lisp/ox-man.el
+++ b/lisp/ox-man.el
@@ -1208,7 +1208,7 @@ Return PDF file name or an error if it couldn't be produced."
;; not to whatever value the current buffer may have.
(default-directory (file-name-directory full-name))
errors)
- (message (format "Processing Groff file %s ..." file))
+ (message (format "Processing Groff file %s..." file))
(save-window-excursion
(cond
;; A function is provided: Apply it.
diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el
index 04e15b5..394530c 100644
--- a/lisp/ox-odt.el
+++ b/lisp/ox-odt.el
@@ -2239,7 +2239,7 @@ CONTENTS is nil. INFO is a plist holding contextual information."
(target-file
(format "%s%04d.%s" target-dir
(incf org-odt-embedded-images-count) image-type)))
- (message "Embedding %s as %s ..."
+ (message "Embedding %s as %s..."
(substring-no-properties path) target-file)
(when (= 1 org-odt-embedded-images-count)
@@ -2447,7 +2447,7 @@ used as a communication channel."
"application/vnd.oasis.opendocument.formula" target-dir "1.2")
;; Copy over the formula file from user directory to zip
;; directory.
- (message "Embedding %s as %s ..." src-file target-file)
+ (message "Embedding %s as %s..." src-file target-file)
(let ((case-fold-search nil))
(cond
;; Case 1: Mathml.
diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el
index 3323c31..dd4e024 100644
--- a/lisp/ox-texinfo.el
+++ b/lisp/ox-texinfo.el
@@ -1793,7 +1793,7 @@ Return INFO file name or an error if it couldn't be produced."
;; not to whatever value the current buffer may have.
(default-directory (file-name-directory full-name))
errors)
- (message (format "Processing Texinfo file %s ..." file))
+ (message (format "Processing Texinfo file %s..." file))
(save-window-excursion
(cond
;; A function is provided: Apply it.