diff options
| author | Philipp Stephani | 2017-05-06 19:16:49 +0200 |
|---|---|---|
| committer | Philipp | 2017-05-07 13:22:34 +0200 |
| commit | 3c4c8ca06e3306ccbcd07e354eb51abe53b52d22 (patch) | |
| tree | 01542b123bede1a9d6d9b05ec1dbf2089e9a76bd /lisp/org | |
| parent | bcbd8f7e4e929604bb3dfef9937432cb05b5f648 (diff) | |
| download | emacs-3c4c8ca06e3306ccbcd07e354eb51abe53b52d22.tar.gz 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." | |||
| 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 |