Fix: YAS--CALLED-INTERACTIVELY-P should reverse its condition check

This commit is contained in:
João Távora 2012-12-22 18:04:54 +00:00
parent a74481f491
commit 1db685c480

View File

@ -1320,7 +1320,7 @@ them all in `yas--menu-table'"
Optional KIND is as documented at `called-interactively-p'
in GNU Emacs 24.1 or higher."
(if (string< "24.1" emacs-version)
(if (string< emacs-version "24.1")
'(called-interactively-p)
`(called-interactively-p ,kind)))