Преглед изворни кода

Try to fix the abbrev bug again.

Carsten Dominik пре 15 година
родитељ
комит
462bbc6bca
1 измењених фајлова са 3 додато и 2 уклоњено
  1. 3 2
      lisp/org.el

+ 3 - 2
lisp/org.el

@@ -4142,8 +4142,9 @@ The following commands are available:
     (org-set-startup-visibility)))
 
 (eval-after-load "abbrev"
-  '(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)