Explorar o código

Backport commit 3c4c8ca06 from Emacs

* lisp/ob-ref.el (org-babel-ref-resolve): Fix unescaped character
literal.

Fix all unescaped character literals
3c4c8ca06e3306ccbcd07e354eb51abe53b52d22
Philipp Stephani
Sun May 7 13:22:34 2017 +0200
Philipp Stephani %!s(int64=8) %!d(string=hai) anos
pai
achega
5eeccc7230
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lisp/ob-ref.el

+ 1 - 1
lisp/ob-ref.el

@@ -131,7 +131,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))))
-		       (= (cl-count ?( str) (cl-count ?) str))))
+		       (= (cl-count ?\( str) (cl-count ?\) str))))
 	    (setq index (match-string 1 ref))
 	    (setq ref (substring ref 0 (match-beginning 0))))
 	  ;; assign any arguments to pass to source block