aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/bibtex-style.el2
-rw-r--r--lisp/textmodes/texinfo.el4
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/textmodes/bibtex-style.el b/lisp/textmodes/bibtex-style.el
index ef5dd38e3bf..6f67d11d78e 100644
--- a/lisp/textmodes/bibtex-style.el
+++ b/lisp/textmodes/bibtex-style.el
@@ -63,7 +63,7 @@
63 ("\\<\\(FUNCTION\\|MACRO\\)\\s-+{\\([^}\n]+\\)}" 63 ("\\<\\(FUNCTION\\|MACRO\\)\\s-+{\\([^}\n]+\\)}"
64 (2 font-lock-function-name-face)))) 64 (2 font-lock-function-name-face))))
65 65
66;;;###autoload (add-to-list 'auto-mode-alist '("\\.bst\\'" . bibtex-style-mode)) 66;;;###autoload (add-to-list 'auto-mode-alist (cons (purecopy "\\.bst\\'") 'bibtex-style-mode))
67 67
68;;;###autoload 68;;;###autoload
69(define-derived-mode bibtex-style-mode nil "BibStyle" 69(define-derived-mode bibtex-style-mode nil "BibStyle"
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index d7098639ae5..6b32c165d82 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -42,13 +42,13 @@
42 :group 'docs) 42 :group 'docs)
43 43
44;;;###autoload 44;;;###autoload
45(defcustom texinfo-open-quote "``" 45(defcustom texinfo-open-quote (purecopy "``")
46 "String inserted by typing \\[texinfo-insert-quote] to open a quotation." 46 "String inserted by typing \\[texinfo-insert-quote] to open a quotation."
47 :type 'string 47 :type 'string
48 :group 'texinfo) 48 :group 'texinfo)
49 49
50;;;###autoload 50;;;###autoload
51(defcustom texinfo-close-quote "''" 51(defcustom texinfo-close-quote (purecopy "''")
52 "String inserted by typing \\[texinfo-insert-quote] to close a quotation." 52 "String inserted by typing \\[texinfo-insert-quote] to close a quotation."
53 :type 'string 53 :type 'string
54 :group 'texinfo) 54 :group 'texinfo)