summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2011-07-08 12:28:35 +0200
committerBastien Guerry <bzg@altern.org>2011-07-08 12:28:35 +0200
commitb5feb951a4032be7187dac01279a390ec3af36d1 (patch)
treef3e12ad7ec57c75565f5957e48baf6c040489c80
parentaea3efde8f5570e3e0c9e4e28ee06f53c53ebe85 (diff)
downloadorg-mode-b5feb951a4032be7187dac01279a390ec3af36d1.tar.gz
contrib/lisp/org-lparse.el: New defcustom `org-lparse-use-flashy-warning'
* org-lparse.el (org-lparse-use-flashy-warning): New defcustom. (org-lparse-warn): Use it.
-rwxr-xr-xcontrib/lisp/org-lparse.el13
1 files changed, 10 insertions, 3 deletions
diff --git a/contrib/lisp/org-lparse.el b/contrib/lisp/org-lparse.el
index cf65af4..15d00fd 100755
--- a/contrib/lisp/org-lparse.el
+++ b/contrib/lisp/org-lparse.el
@@ -442,6 +442,11 @@ The variable is an list of the form (PROCESS ARG1 ARG2 ARG3
%D output dir as a URL"
:group 'org-export)
+(defcustom org-lparse-use-flashy-warning t
+ "Use flashy warnings when exporting to ODT."
+ :type 'boolean
+ :group 'org-export)
+
(defun org-export-convert (&optional in-file fmt)
"Convert file from one format to another using a converter.
IN-FILE is the file to be converted. If unspecified, it defaults
@@ -1980,9 +1985,11 @@ Replaces invalid characters with \"_\"."
(org-lparse-format 'FONTIFY snumber (format "section-number-%d" level))))
(defun org-lparse-warn (msg)
- (put-text-property 0 (length msg) 'face 'font-lock-warning-face msg)
- (message msg)
- (sleep-for 3))
+ (if (not org-lparse-use-flashy-warning)
+ (message msg)
+ (put-text-property 0 (length msg) 'face 'font-lock-warning-face msg)
+ (message msg)
+ (sleep-for 3)))
(defun org-xml-format-href (s)
"Make sure the S is valid as a href reference in an XHTML document."