summaryrefslogtreecommitdiff
path: root/elpa/auctex-13.1.3/style/english.el
diff options
context:
space:
mode:
Diffstat (limited to 'elpa/auctex-13.1.3/style/english.el')
-rw-r--r--elpa/auctex-13.1.3/style/english.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/elpa/auctex-13.1.3/style/english.el b/elpa/auctex-13.1.3/style/english.el
new file mode 100644
index 0000000..f8477bb
--- /dev/null
+++ b/elpa/auctex-13.1.3/style/english.el
@@ -0,0 +1,15 @@
+;;; english.el --- Setup AUCTeX for editing English text. -*- lexical-binding: t; -*-
+
+;;; Code:
+
+(require 'tex)
+
+(TeX-add-style-hook
+ "english"
+ (lambda ()
+ (unless (eq (car TeX-quote-language) 'override)
+ (setq TeX-quote-language nil))
+ (run-hooks 'TeX-language-en-hook))
+ TeX-dialect)
+
+;;; english.el ends here