mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-28 10:56:57 +00:00
org-footnote.el: Fix bug when using `electric-indent-mode'
* org-footnote.el (org-footnote-create-definition): Prevent `electric-indent-mode' from inserting the definition at the wrong place. Thanks to Xue Fuqiao for reporting this bug.
This commit is contained in:
parent
a5ed80fb32
commit
b425e2a2d6
@ -486,7 +486,8 @@ or new, let the user edit the definition of the footnote."
|
||||
(defun org-footnote-create-definition (label)
|
||||
"Start the definition of a footnote with label LABEL."
|
||||
(interactive "sLabel: ")
|
||||
(let ((label (org-footnote-normalize-label label)))
|
||||
(let ((label (org-footnote-normalize-label label))
|
||||
electric-indent-mode) ;; Prevent wrong indentation
|
||||
(cond
|
||||
;; In an Org file.
|
||||
((derived-mode-p 'org-mode)
|
||||
|
Loading…
Reference in New Issue
Block a user