diff options
author | Philipp Stephani <phst@google.com> | 2017-05-06 19:16:49 +0200 |
---|---|---|
committer | Philipp <phst@google.com> | 2017-05-07 13:22:34 +0200 |
commit | 3c4c8ca06e3306ccbcd07e354eb51abe53b52d22 (patch) | |
tree | 01542b123bede1a9d6d9b05ec1dbf2089e9a76bd /lisp/org | |
parent | bcbd8f7e4e929604bb3dfef9937432cb05b5f648 (diff) | |
download | emacs-3c4c8ca06e3306ccbcd07e354eb51abe53b52d22.tar.gz emacs-3c4c8ca06e3306ccbcd07e354eb51abe53b52d22.tar.bz2 emacs-3c4c8ca06e3306ccbcd07e354eb51abe53b52d22.zip |
Fix all unescaped character literals
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/ob-ref.el | 2 |
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." ;; if ref is indexed grab the indices -- beware nested indices (when (and (string-match "\\[\\([^\\[]+\\)\\]$" ref) (let ((str (substring ref 0 (match-beginning 0)))) - (= (org-count ?( str) (org-count ?) str)))) + (= (org-count ?\( str) (org-count ?\) str)))) (setq index (match-string 1 ref)) (setq ref (substring ref 0 (match-beginning 0)))) ;; assign any arguments to pass to source block |