Emacs: Remove errors & warnings
Alan Pearce alan.pearce@spotcap.com
Thu, 29 Oct 2015 08:58:49 +0100
1 files changed, 4 insertions(+), 4 deletions(-)
jump to
M tag-emacs/emacs.d/init.org → tag-emacs/emacs.d/init.org
@@ -465,7 +465,7 @@ (delete-current-buffer-file) (if server-buffer-clients (server-edit) (let ((buf (buffer-name))) - (when (equalp buf "*HTTP Response*") + (when (equal buf "*HTTP Response*") (other-window 1)) (kill-buffer buf))))) #+END_SRC @@ -480,7 +480,7 @@ (req-package ws-butler :if window-system :config (ws-butler-global-mode 1)) (if (daemonp) - (add-hook #'before-make-frame-hook (lambda () (ws-butler-global-mode 1)))) + (add-hook 'before-make-frame-hook (lambda () (ws-butler-global-mode 1)))) #+END_SRC ** shrink-whitespace @@ -1129,8 +1129,8 @@ (unbind-key "s-p") (unbind-key "s-w") (bind-key* "s-k" #'kill-or-delete-this-buffer-dwim) - (bind-key* "C-M-a" #'backward-paragraph text-mode-map) - (bind-key* "C-M-e" #'forward-paragraph text-mode-map) + (bind-key "C-M-a" #'backward-paragraph text-mode-map) + (bind-key "C-M-e" #'forward-paragraph text-mode-map) (bind-key* "s-x" (define-prefix-command 'super-x-map)) (bind-key* "s-," #'switch-to-dotfiles)