aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Courtieu2011-01-18 09:50:28 +0000
committerPierre Courtieu2011-01-18 09:50:28 +0000
commit1faeeee2f519637fc4a4b7f556b102f92864fbda (patch)
tree568463f1fdd2f76162267c36feb1be70f82e4019
parentaa76421458123fc17a61f4b7218a175ece5e9404 (diff)
Fix trac 382 by not setting save-abbrevs.
-rw-r--r--coq/coq-abbrev.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/coq/coq-abbrev.el b/coq/coq-abbrev.el
index 5d179cd3..6382455e 100644
--- a/coq/coq-abbrev.el
+++ b/coq/coq-abbrev.el
@@ -65,7 +65,9 @@
(append coq-tactics-abbrev-table coq-tacticals-abbrev-table
coq-commands-abbrev-table coq-terms-abbrev-table))
;; if we use default coq abbrev, never ask to save it
- (setq save-abbrevs nil)
+ ;; PC: fix trac #382 I comment this. But how to disable abbrev
+ ;; saving for coq mode only?
+ ;;(setq save-abbrevs nil) ;
(message "Coq default abbrevs loaded")
))