summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2018-10-06 09:42:04 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-10-06 09:42:04 +0200
commit1b62a564981638159870db99067b4b37d0ca4332 (patch)
tree8a7b7a840d61fd121fedc1ccc7def8d15e848502
parent26ed66b23335eb389f1f2859e409f46f66279e15 (diff)
parent5cc69a9ebfbb966a8e2a22f296b5d30827878ae5 (diff)
downloadorg-mode-1b62a564981638159870db99067b4b37d0ca4332.tar.gz
Merge branch 'master' into next
-rw-r--r--lisp/ob-core.el4
-rw-r--r--lisp/ob-haskell.el9
-rw-r--r--lisp/ob-octave.el10
-rw-r--r--lisp/org-compat.el3
-rw-r--r--lisp/org-macs.el4
5 files changed, 15 insertions, 15 deletions
diff --git a/lisp/ob-core.el b/lisp/ob-core.el
index 7b7b314..da9fa31 100644
--- a/lisp/ob-core.el
+++ b/lisp/ob-core.el
@@ -3135,10 +3135,6 @@ Callers of this function will probably want to add an entry to
(when (and sym (boundp sym))
(defvaralias (intern (concat "org-babel-" var ":" new)) sym)))))
-(defun org-babel-strip-quotes (string)
- "Strip \\\"s from around a string, if applicable."
- (org-unbracket-string "\"" "\"" string))
-
(provide 'ob-core)
;; Local variables:
diff --git a/lisp/ob-haskell.el b/lisp/ob-haskell.el
index 8fd6199..ff975f7 100644
--- a/lisp/ob-haskell.el
+++ b/lisp/ob-haskell.el
@@ -74,17 +74,16 @@
(org-babel-variable-assignments:haskell params)))
(session (org-babel-haskell-initiate-session session params))
(comint-preoutput-filter-functions
- (cons 'ansi-color-filter-apply comint-preoutput-filter-functions))
+ (cons 'ansi-color-filter-apply comint-preoutput-filter-functions))
(raw (org-babel-comint-with-output
(session org-babel-haskell-eoe t full-body)
(insert (org-trim full-body))
(comint-send-input nil t)
(insert org-babel-haskell-eoe)
(comint-send-input nil t)))
- (results (mapcar
- #'org-babel-strip-quotes
- (cdr (member org-babel-haskell-eoe
- (reverse (mapcar #'org-trim raw)))))))
+ (results (mapcar #'org-strip-quotes
+ (cdr (member org-babel-haskell-eoe
+ (reverse (mapcar #'org-trim raw)))))))
(org-babel-reassemble-table
(let ((result
(pcase result-type
diff --git a/lisp/ob-octave.el b/lisp/ob-octave.el
index 61492c7..bc3dc4c 100644
--- a/lisp/ob-octave.el
+++ b/lisp/ob-octave.el
@@ -237,13 +237,11 @@ value of the last statement in BODY, as elisp."
(`output
(setq results
(if matlabp
- (cdr (reverse (delq "" (mapcar
- #'org-babel-strip-quotes
- (mapcar #'org-trim raw)))))
+ (cdr (reverse (delq "" (mapcar #'org-strip-quotes
+ (mapcar #'org-trim raw)))))
(cdr (member org-babel-octave-eoe-output
- (reverse (mapcar
- #'org-babel-strip-quotes
- (mapcar #'org-trim raw)))))))
+ (reverse (mapcar #'org-strip-quotes
+ (mapcar #'org-trim raw)))))))
(mapconcat #'identity (reverse results) "\n")))))
(defun org-babel-octave-import-elisp-from-file (file-name)
diff --git a/lisp/org-compat.el b/lisp/org-compat.el
index a72627a..2427c7d 100644
--- a/lisp/org-compat.el
+++ b/lisp/org-compat.el
@@ -464,6 +464,9 @@ use of this function is for the stuck project list."
(debug (body)))
`(with-silent-modifications ,@body))
+(define-obsolete-function-alias 'org-babel-strip-quotes
+ 'org-strip-quotes "Org 9.2")
+
;;;; Obsolete link types
(eval-after-load 'org
diff --git a/lisp/org-macs.el b/lisp/org-macs.el
index 93c2140..fa052a9 100644
--- a/lisp/org-macs.el
+++ b/lisp/org-macs.el
@@ -882,6 +882,10 @@ removed."
(substring string (length pre) (- (length post)))
string))
+(defun org-strip-quotes (string)
+ "Strip double quotes from around a string, if applicable."
+ (org-unbracket-string "\"" "\"" string))
+
(defsubst org-current-line-string (&optional to-here)
(buffer-substring (point-at-bol) (if to-here (point) (point-at-eol))))