From a42be4b0c0e6fc6869247998ea7d7b7a2e6be212 Mon Sep 17 00:00:00 2001 From: Rob Giardina Date: Sun, 11 Dec 2011 14:47:25 +0100 Subject: [PATCH] Fix quoting in org-agenda-with-point-at-orig-entry. * org-agenda.el (org-agenda-with-point-at-orig-entry): Small bugfix. TINYCHANGE --- lisp/org-agenda.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index f8512d3b5..155bf2d10 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -1742,7 +1742,7 @@ in that string. If STRING is nil, it will be fetched from the beginning of the current line." (org-with-gensyms (marker) `(let ((,marker (get-text-property (if string 0 (point-at-bol)) - 'org-hd-marker string))) + 'org-hd-marker ,string))) (with-current-buffer (marker-buffer ,marker) (save-excursion (goto-char ,marker) -- 2.11.4.GIT