Browse Source

Cosmetic change in messages.

Bastien Guerry 12 years ago
parent
commit
133afe8915
4 changed files with 5 additions and 5 deletions
  1. 1 1
      lisp/ox-latex.el
  2. 1 1
      lisp/ox-man.el
  3. 2 2
      lisp/ox-odt.el
  4. 1 1
      lisp/ox-texinfo.el

+ 1 - 1
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.

+ 1 - 1
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.

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

+ 1 - 1
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.