Fix: "Symbol's value as variable is void: compilation-mode-map".
authorOleksandr Gavenko <gavenkoa@gmail.com>
Wed, 03 Aug 2011 09:15:07 +0300
changeset 674 f3ac6416ef21
parent 673 3f9a497c4ff7
child 675 7bef62461084
Fix: "Symbol's value as variable is void: compilation-mode-map".
.emacs-my
--- a/.emacs-my	Tue Aug 02 17:52:09 2011 +0300
+++ b/.emacs-my	Wed Aug 03 09:15:07 2011 +0300
@@ -1304,7 +1304,10 @@
    )
   (comint-send-string (get-buffer-process (current-buffer)) string)
   )
-(define-key compilation-mode-map [C-return] 'my-comint-send-string)
+(eval-after-load 'compile
+  '(progn
+     (define-key compilation-mode-map [C-return] 'my-comint-send-string)
+     ))
 
 ;;; ----------------------------------------------------------------
 (message "TAGS, etags, ctags, GNU GLOBAL")