From 7fcd14945a626c359bab591b38f6a6811c4733d1 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 13 Mar 2019 00:25:51 +0100 Subject: [PATCH] org-inlinetask: remove unused function * lisp/org-inlinetask.el (org-inlinetask-get-current-indentation): Remove function. The function was unused throughout the code base. --- lisp/org-inlinetask.el | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lisp/org-inlinetask.el b/lisp/org-inlinetask.el index 775facd21..c76d7d209 100644 --- a/lisp/org-inlinetask.el +++ b/lisp/org-inlinetask.el @@ -268,17 +268,6 @@ If the task has an end part, also demote it." (goto-char beg) (org-fixup-indentation diff))))))) -(defun org-inlinetask-get-current-indentation () - "Get the indentation of the last non-while line above this one." - (save-excursion - (beginning-of-line 1) - (skip-chars-backward " \t\n") - (beginning-of-line 1) - (or (org-at-item-p) - (looking-at "[ \t]*")) - (goto-char (match-end 0)) - (current-column))) - (defvar org-indent-indentation-per-level) ; defined in org-indent.el (defface org-inlinetask '((t :inherit shadow))