diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-21 20:16:05 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-21 20:16:05 -0700 |
commit | b1b7f300fa77d838cfdf47bfc65bfd1c5808d966 (patch) | |
tree | c154b9ae52993d3702f35dd44d24d3e3ef003d16 /lisp/progmodes/idlw-help.el | |
parent | f6ebbb46d6cf3733f53a17bbeafe59b6b7f4e7cc (diff) | |
download | emacs-b1b7f300fa77d838cfdf47bfc65bfd1c5808d966.tar.gz |
* progmodes/idlw-help.el (idlwave-help-fontify): Use called-interactively-p.
Diffstat (limited to 'lisp/progmodes/idlw-help.el')
-rw-r--r-- | lisp/progmodes/idlw-help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/idlw-help.el b/lisp/progmodes/idlw-help.el index b46b16aa87e..7060cae5080 100644 --- a/lisp/progmodes/idlw-help.el +++ b/lisp/progmodes/idlw-help.el @@ -1178,7 +1178,7 @@ Useful when source code is displayed as help. See the option (if (featurep 'font-lock) (let ((major-mode 'idlwave-mode) (font-lock-verbose - (if (interactive-p) font-lock-verbose nil)) + (if (called-interactively-p 'interactive) font-lock-verbose nil)) (syntax-table (syntax-table))) (unwind-protect (progn |