Moved experimental code to non-hg tracked file.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Sun, 23 Feb 2020 14:45:23 +0200
changeset 1608 9c9e7f91f4f3
parent 1607 dd180a2be151
child 1609 2014cc35cb28
Moved experimental code to non-hg tracked file.
.emacs-my
.hgignore
Makefile
--- 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)