From 5c85409464f0f06e60fabfbbf3d0958a57e169fd Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 15 Oct 2016 00:52:15 +0200 Subject: [PATCH] Remove unnecessary workaround * lisp/org.el (org-end-of-line): Remove unnecessary workaround for bug #14346. --- lisp/org.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 85e7807ed..99ffdf9d6 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -23822,10 +23822,7 @@ With argument N not nil or 1, move forward N - 1 lines first." (when (/= bol (line-beginning-position)) (goto-char bol) (end-of-line)))) - (t (end-of-line)))) - (setq disable-point-adjustment - (or (not (invisible-p (point))) - (not (invisible-p (max (point-min) (1- (point)))))))) + (t (end-of-line))))) (define-key org-mode-map "\C-a" 'org-beginning-of-line) (define-key org-mode-map "\C-e" 'org-end-of-line) -- 2.11.4.GIT