aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org
diff options
context:
space:
mode:
authorPhilipp Stephani2017-05-06 19:16:49 +0200
committerPhilipp2017-05-07 13:22:34 +0200
commit3c4c8ca06e3306ccbcd07e354eb51abe53b52d22 (patch)
tree01542b123bede1a9d6d9b05ec1dbf2089e9a76bd /lisp/org
parentbcbd8f7e4e929604bb3dfef9937432cb05b5f648 (diff)
downloademacs-3c4c8ca06e3306ccbcd07e354eb51abe53b52d22.tar.gz
emacs-3c4c8ca06e3306ccbcd07e354eb51abe53b52d22.zip
Fix all unescaped character literals
Diffstat (limited to 'lisp/org')
-rw-r--r--lisp/org/ob-ref.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/ob-ref.el b/lisp/org/ob-ref.el
index 58cc2d96a64..1d26403035f 100644
--- a/lisp/org/ob-ref.el
+++ b/lisp/org/ob-ref.el
@@ -133,7 +133,7 @@ the variable."
133 ;; if ref is indexed grab the indices -- beware nested indices 133 ;; if ref is indexed grab the indices -- beware nested indices
134 (when (and (string-match "\\[\\([^\\[]+\\)\\]$" ref) 134 (when (and (string-match "\\[\\([^\\[]+\\)\\]$" ref)
135 (let ((str (substring ref 0 (match-beginning 0)))) 135 (let ((str (substring ref 0 (match-beginning 0))))
136 (= (org-count ?( str) (org-count ?) str)))) 136 (= (org-count ?\( str) (org-count ?\) str))))
137 (setq index (match-string 1 ref)) 137 (setq index (match-string 1 ref))
138 (setq ref (substring ref 0 (match-beginning 0)))) 138 (setq ref (substring ref 0 (match-beginning 0))))
139 ;; assign any arguments to pass to source block 139 ;; assign any arguments to pass to source block