Update quotation style in customizations.el

Emacs 27.1 uses `'()` instead of `(quote ())`, which is a bit more readable, so i keep it.
This commit is contained in:
Gergely Polonkai 2020-11-05 08:27:16 +01:00
parent 9c47543bdd
commit 721824bc69
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 11 additions and 16 deletions

View File

@ -8,12 +8,11 @@
'(blink-cursor-mode t)
'(column-number-mode t)
'(cursor-color "#ffd85c")
'(cursor-type (quote bar))
'(custom-enabled-themes (quote (tango-dark tango)))
'(cursor-type 'bar)
'(custom-enabled-themes '(tango-dark tango))
'(custom-file (concat user-emacs-directory "customizations.el"))
'(custom-safe-themes
(quote
("84d2f9eeb3f82d619ca4bfffe5f157282f4779732f48a5ac1484d94d5ff5b279" "3c83b3676d796422704082049fc38b6966bcad960f896669dfc21a7a37a748fa" "a27c00821ccfd5a78b01e4f35dc056706dd9ede09a8b90c6955ae6a390eb1c1e" default)))
'("84d2f9eeb3f82d619ca4bfffe5f157282f4779732f48a5ac1484d94d5ff5b279" "3c83b3676d796422704082049fc38b6966bcad960f896669dfc21a7a37a748fa" "a27c00821ccfd5a78b01e4f35dc056706dd9ede09a8b90c6955ae6a390eb1c1e" default))
'(echo-keystrokes 0.1)
'(epg-gpg-program "gpg2")
'(fill-column 98)
@ -24,13 +23,10 @@
'(inhibit-startup-screen t)
'(initial-scratch-message nil)
'(kill-read-only-ok t)
'(message-sendmail-envelope-from (quote header))
'(minibuffer-prompt-properties
(quote
(read-only t cursor-intangible t face minibuffer-prompt)))
'(message-sendmail-envelope-from 'header)
'(minibuffer-prompt-properties '(read-only t cursor-intangible t face minibuffer-prompt))
'(package-selected-packages
(quote
(a
'(a
ace-mc
ace-window
achievements
@ -240,14 +236,13 @@
yasnippet
yasnippet-snippets
zone-nyan
zygospore)))
zygospore))
'(safe-local-variable-values
(quote
((web-mode-engine . jinja)
'((web-mode-engine . jinja)
(engine . jinja)
(bug-reference-bug-regexp . "#\\(?2:[0-9]+\\)"))))
(bug-reference-bug-regexp . "#\\(?2:[0-9]+\\)")))
'(scroll-margin 2)
'(send-mail-function (quote sendmail-send-it))
'(send-mail-function 'sendmail-send-it)
'(sendmail-program "/usr/bin/msmtp")
'(sgml-basic-offset 4)
'(show-trailing-whitespace t)
@ -257,7 +252,7 @@
'(use-package-verbose nil)
'(user-full-name "Gergely Polonkai")
'(user-mail-address "gergely@polonkai.eu")
'(wl-draft-send-mail-function (quote wl-draft-send-mail-with-sendmail)))
'(wl-draft-send-mail-function 'wl-draft-send-mail-with-sendmail))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.