Browse Source

Revert "org-footnote: Fix location after moving to definition"

This reverts commit 8500501984b6b0e283722d6e96c4e359f818f7cb.
Nicolas Goaziou 6 năm trước cách đây
mục cha
commit
cbb7be9c25
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 1 1
      lisp/org-footnote.el
  2. 1 1
      testing/lisp/test-org-footnote.el

+ 1 - 1
lisp/org-footnote.el

@@ -544,7 +544,7 @@ value if point was successfully moved."
       (user-error "Definition is outside narrowed part of buffer")))
     (org-mark-ring-push)
     (goto-char def-start)
-    (looking-at (format "\\[fn:%s[]:] ?" (regexp-quote label)))
+    (looking-at (format "\\[fn:%s[]:]" (regexp-quote label)))
     (goto-char (match-end 0))
     (org-show-context 'link-search)
     (when (derived-mode-p 'org-mode)

+ 1 - 1
testing/lisp/test-org-footnote.el

@@ -231,7 +231,7 @@
   ;; anonymous footnotes.
   (should
    (equal
-    "Definition."
+    " Definition."
     (org-test-with-temp-text "Some text\n[fn:1] Definition."
       (org-footnote-goto-definition "1")
       (buffer-substring (point) (point-max)))))