Moved experimental code to non-hg tracked file.
--- a/.emacs-my Mon Feb 17 13:44:36 2020 +0200
+++ b/.emacs-my Sun Feb 23 14:45:23 2020 +0200
@@ -2645,24 +2645,6 @@
(eval-after-load 'log-edit
'(remove-hook 'log-edit-hook 'log-edit-insert-message-template))
-(mapatoms
- (lambda (sym)
- (when (and
- (boundp sym)
- (sequencep (symbol-value sym))
- (string-suffix-p "-hook" (symbol-name sym))
- (cl-some
- (lambda (hook)
- (and (symbolp hook)
- (cl-search "git" (symbol-name hook))))
- (symbol-value sym)))
- (message "sym: %s" sym))))
-
-after-change-major-mode-hook
-
-(with-eval-after-load 'vc-hooks
- (remove-hook 'find-file-hook 'vc-refresh-state))
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(message "magit")
--- a/.hgignore Mon Feb 17 13:44:36 2020 +0200
+++ b/.hgignore Sun Feb 23 14:45:23 2020 +0200
@@ -2,3 +2,4 @@
.devel/
.tmp/
+*.dev.el
--- a/Makefile Mon Feb 17 13:44:36 2020 +0200
+++ b/Makefile Sun Feb 23 14:45:23 2020 +0200
@@ -65,7 +65,7 @@
################################################################
# Proj dirs/files.
-EL_FILES := $(wildcard *.el)
+EL_FILES := $(filter-out %.dev.el,$(wildcard *.el))
ELC_FILES := $(EL_FILES:.el=.elc)
RST_FILES := $(wildcard *.rst)