# HG changeset patch # User Oleksandr Gavenko # Date 1604235904 -7200 # Node ID 9189d278b0756e674fe11d755d80a6526a860fd5 # Parent f6eae5ebf7d9753f590b9e428ff07542c81962bd Replaced eval-after-load => with-eval-after-load for its easier syntax. diff -r f6eae5ebf7d9 -r 9189d278b075 .emacs-my --- a/.emacs-my Sun Nov 01 14:26:50 2020 +0200 +++ b/.emacs-my Sun Nov 01 15:05:04 2020 +0200 @@ -1775,7 +1775,7 @@ (setq woman-use-own-frame nil) (setq woman-fill-frame t) -(eval-after-load 'man +(with-eval-after-load 'man ;; Default sed filter failed with syntax error in native Emacs and Cygwin. (when (eq system-type 'windows-nt) (setq Man-filter-list nil))) @@ -2662,8 +2662,8 @@ ) (add-hook 'log-edit-mode-hook 'my-log-edit-mode-hook t) -(eval-after-load 'log-edit - '(remove-hook 'log-edit-hook 'log-edit-insert-message-template)) +(with-eval-after-load 'log-edit + (remove-hook 'log-edit-hook 'log-edit-insert-message-template)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (message "magit")