From 3081be6dd7bef09f928f40a1d2ad4099417f566e Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Thu, 29 Oct 2009 18:23:23 +0100 Subject: [PATCH] Remove unnecessary eval-after-load around the call to abbrev-table-put --- lisp/org.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 317e50940..3d6d5baf5 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -4141,10 +4141,9 @@ The following commands are available: (org-indent-mode 1)) (org-set-startup-visibility))) -(eval-after-load "abbrev" - '(when (fboundp 'abbrev-table-put) - (abbrev-table-put org-mode-abbrev-table - :parents (list text-mode-abbrev-table)))) +(when (fboundp 'abbrev-table-put) + (abbrev-table-put org-mode-abbrev-table + :parents (list text-mode-abbrev-table))) (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)