org.el (org-mode-flyspell-verify): Require 'org-element so that `org-element-affiliated-keywords' is defined

* org.el (org-mode-flyspell-verify): Require 'org-element so
that `org-element-affiliated-keywords' is defined.

Thanks to Matt Lundin for reporting this.
This commit is contained in:
Bastien Guerry 2013-03-25 17:01:18 +01:00
parent f09471e5d9
commit e7cfb4d13c

View file

@ -23397,6 +23397,7 @@ To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
(defun org-mode-flyspell-verify ()
"Don't let flyspell put overlays at active buttons, or on
{todo,all-time,additional-option-like}-keywords."
(require 'org-element) ; For `org-element-affiliated-keywords'
(let ((pos (max (1- (point)) (point-min)))
(word (thing-at-point 'word)))
(and (not (get-text-property pos 'keymap))