Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2015-08-06 14:58:29 +02:00
commit ba6d489321
8 changed files with 26 additions and 23 deletions

View File

@ -321,8 +321,8 @@ name of the code block."
Do not query the user." Do not query the user."
(org-babel-check-confirm-evaluate info (org-babel-check-confirm-evaluate info
(not (when noeval (not (when noeval
(message (format "Evaluation of this%scode-block%sis disabled." (message "Evaluation of this%scode-block%sis disabled."
code-block block-name)))))) code-block block-name)))))
;; dynamically scoped for asynchronous export ;; dynamically scoped for asynchronous export
(defvar org-babel-confirm-evaluate-answer-no) (defvar org-babel-confirm-evaluate-answer-no)
@ -348,8 +348,8 @@ of potentially harmful code."
(yes-or-no-p (yes-or-no-p
(format "Evaluate this%scode block%son your system? " (format "Evaluate this%scode block%son your system? "
code-block block-name))) code-block block-name)))
(message (format "Evaluation of this%scode-block%sis aborted." (message "Evaluation of this%scode-block%sis aborted."
code-block block-name))))))) code-block block-name))))))
;;;###autoload ;;;###autoload
(defun org-babel-execute-safely-maybe () (defun org-babel-execute-safely-maybe ()

View File

@ -156,8 +156,7 @@ of the same value."
(format "real, parameter :: %S(%d) = %s\n" (format "real, parameter :: %S(%d) = %s\n"
var (length val) (org-babel-fortran-transform-list val))) var (length val) (org-babel-fortran-transform-list val)))
(t (t
(error (format "the type of parameter %s is not supported by ob-fortran" (error "the type of parameter %s is not supported by ob-fortran" var)))))
var))))))
(defun org-babel-fortran-transform-list (val) (defun org-babel-fortran-transform-list (val)
"Return a fortran representation of enclose syntactic lists." "Return a fortran representation of enclose syntactic lists."

View File

@ -206,9 +206,7 @@ This is the compiled version of the format.")
(val (or (cdr ass) "")) (val (or (cdr ass) ""))
(modval (modval
(cond (cond
((and org-columns-modify-value-for-display-function ((functionp org-columns-modify-value-for-display-function)
(functionp
org-columns-modify-value-for-display-function))
(funcall org-columns-modify-value-for-display-function (funcall org-columns-modify-value-for-display-function
title val)) title val))
((equal property "ITEM") (org-columns-compact-links val)) ((equal property "ITEM") (org-columns-compact-links val))
@ -222,7 +220,13 @@ This is the compiled version of the format.")
(string (string
(format f (org-columns-add-ellipses (or modval val) width))) (format f (org-columns-add-ellipses (or modval val) width)))
(ov (org-columns-new-overlay (ov (org-columns-new-overlay
(point) (1+ (point)) string (if dateline face1 face)))) (point) (1+ (point))
string
(cond
((equal property "TODO")
(list (org-get-todo-face val) (if dateline face1 face)))
(dateline face1)
(t face)))))
(overlay-put ov 'keymap org-columns-map) (overlay-put ov 'keymap org-columns-map)
(overlay-put ov 'org-columns-key property) (overlay-put ov 'org-columns-key property)
(overlay-put ov 'org-columns-value (cdr ass)) (overlay-put ov 'org-columns-value (cdr ass))

View File

@ -6541,13 +6541,13 @@ When FACE-OR-COLOR is not a string, just return it."
'org-priority) 'org-priority)
'font-lock-fontified t))))) 'font-lock-fontified t)))))
(defun org-get-tag-face (kwd) (defun org-get-tag-face (tag)
"Get the right face for a TODO keyword KWD. "Get the right face for TAG.
If KWD is a number, get the corresponding match group." If TAG is a number, get the corresponding match group."
(if (numberp kwd) (setq kwd (match-string kwd))) (let ((tag (if (wholenump tag) (match-string tag) tag)))
(or (org-face-from-face-or-color (or (org-face-from-face-or-color
'tag 'org-tag (cdr (assoc kwd org-tag-faces))) 'tag 'org-tag (cdr (assoc kwd org-tag-faces)))
'org-tag)) 'org-tag)))
(defun org-unfontify-region (beg end &optional maybe_loudly) (defun org-unfontify-region (beg end &optional maybe_loudly)
"Remove fontification and activation overlays from links." "Remove fontification and activation overlays from links."

View File

@ -3433,7 +3433,7 @@ Return PDF file name or an error if it couldn't be produced."
default-directory)) default-directory))
(time (current-time)) (time (current-time))
warnings) warnings)
(unless snippet (message (format "Processing LaTeX file %s..." texfile))) (unless snippet (message "Processing LaTeX file %s..." texfile))
(save-window-excursion (save-window-excursion
(cond (cond
;; A function is provided: Apply it. ;; A function is provided: Apply it.

View File

@ -1196,7 +1196,7 @@ Return PDF file name or an error if it couldn't be produced."
(file-name-directory full-name) (file-name-directory full-name)
default-directory)) default-directory))
errors) errors)
(message (format "Processing Groff file %s..." file)) (message "Processing Groff file %s..." file)
(save-window-excursion (save-window-excursion
(cond (cond
;; A function is provided: Apply it. ;; A function is provided: Apply it.

View File

@ -1410,8 +1410,8 @@ original parsed data. INFO is a plist holding export options."
((member styles-file-type '("odt" "ott")) ((member styles-file-type '("odt" "ott"))
(org-odt--zip-extract styles-file "styles.xml" org-odt-zip-dir))))) (org-odt--zip-extract styles-file "styles.xml" org-odt-zip-dir)))))
(t (t
(error (format "Invalid specification of styles.xml file: %S" (error "Invalid specification of styles.xml file: %S"
(plist-get info :odt-styles-file))))) (plist-get info :odt-styles-file))))
;; create a manifest entry for styles.xml ;; create a manifest entry for styles.xml
(org-odt-create-manifest-file-entry "text/xml" "styles.xml") (org-odt-create-manifest-file-entry "text/xml" "styles.xml")

View File

@ -1589,7 +1589,7 @@ Return INFO file name or an error if it couldn't be produced."
(file-name-directory full-name) (file-name-directory full-name)
default-directory)) default-directory))
errors) errors)
(message (format "Processing Texinfo file %s..." file)) (message "Processing Texinfo file %s..." file)
(save-window-excursion (save-window-excursion
;; Replace %b, %f and %o with appropriate values in each command ;; Replace %b, %f and %o with appropriate values in each command
;; before applying it. Output is redirected to "*Org INFO ;; before applying it. Output is redirected to "*Org INFO