1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00

Apply hack to Emacs 25 instead of Emacs 25.1

This commit is contained in:
Vasilij Schneidermann 2017-05-23 23:28:48 +02:00
parent a112da51b4
commit 5182fdad56

View File

@ -1,6 +1,6 @@
;; HACK: `text-quoting-style' prettifies quotes in error messages on
;; Emacs 25.1, but no longer does from 25.2 upwards...
(when (and (= emacs-major-version 25) (= emacs-minor-version 1))
;; Emacs 25, but no longer does from 26 upwards...
(when (= emacs-major-version 25)
(setq text-quoting-style 'grave))
(defvar tokens nil)