Skip to content

Commit

Permalink
Apply hack to Emacs 25 instead of Emacs 25.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wasamasa committed May 23, 2017
1 parent a112da5 commit 5182fda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elisp/reader.el
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 5182fda

Please sign in to comment.