aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schneider <qsx@qsx.re>2019-06-27 14:57:22 +0200
committerThomas Schneider <qsx@qsx.re>2019-06-27 14:57:22 +0200
commita4f7ae8c1a4822595a8bf80407c3bd506eba9ece (patch)
tree8d68cd596d66172742803e9aa16faa18a644ead9
parentdc9e889d6cbc0ce531f8fecaad2515a6fd073331 (diff)
Emacs: Prefix all function symbols with #
-rw-r--r--dot.emacs.d/init.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el
index 0d5813f..f81c972 100644
--- a/dot.emacs.d/init.el
+++ b/dot.emacs.d/init.el
@@ -220,8 +220,8 @@
(add-to-list 'auto-mode-alist '("/mutt" . mail-mode))
(add-to-list 'auto-mode-alist '("/neomutt" . mail-mode))
-(add-hook 'mail-mode-hook 'turn-on-auto-fill)
-(add-hook 'mail-mode-hook 'mail-text)
+(add-hook 'mail-mode-hook #'turn-on-auto-fill)
+(add-hook 'mail-mode-hook #'mail-text)
(use-package tex
:ensure auctex
@@ -243,12 +243,12 @@
(setq column-number-mode t)
-(global-set-key (kbd "C-x C-k") 'kill-this-buffer)
+(global-set-key (kbd "C-x C-k") #'kill-this-buffer)
(global-set-key (kbd "C-M-y") '(lambda ()
(interactive)
(insert (gui-get-primary-selection))))
-(add-hook 'org-mode-hook 'turn-on-auto-fill)
+(add-hook 'org-mode-hook #'turn-on-auto-fill)
(setq-default fill-column 80)
@@ -344,4 +344,4 @@
("Automata" ("from" "automata" both) "Automata")
("RWTH" ("from" "rwth-aachen" both) "RWTH")
("CCCAC" ("from" "aachen\.ccc\.de" both) "CCCAC")))
- (add-hook 'message-setup-hook 'gnus-alias-determine-identity))
+ (add-hook 'message-setup-hook #'gnus-alias-determine-identity))