diff options
| -rw-r--r-- | coq/coq-abbrev.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/coq/coq-abbrev.el b/coq/coq-abbrev.el index 8c034438..0ab6bf71 100644 --- a/coq/coq-abbrev.el +++ b/coq/coq-abbrev.el @@ -54,8 +54,9 @@ ;#s and @{..} are replaced by holes by holes-abbrev-complete (defun coq-install-abbrevs () "install default abbrev table for coq if no other already is." - (if (and (boundp 'coq-mode-abbrev-table) - (not (equal coq-mode-abbrev-table (make-abbrev-table)))) + (if (boundp 'coq-mode-abbrev-table) + ;; da: this test will always fail. Assume bound-->non-empty + ;; (not (equal coq-mode-abbrev-table (make-abbrev-table)))) (message "Coq abbrevs already exists, default not loaded") (define-abbrev-table 'coq-mode-abbrev-table (append coq-tactics-abbrev-table coq-tacticals-abbrev-table |
