Added Makefile prefix to makefile-mode for emacs.
[hvlinux.git] / stage5 / misc / emacs / emacsrc
index 0142ea8..79ab865 100644 (file)
@@ -32,6 +32,9 @@
 ;; Pour avoir les accents
 (set-keyboard-coding-system 'utf-8)
 
+;; Pour que la touche backspace fonctionne aussi en mode console:
+(normal-erase-is-backspace-mode 0)
+
 ;; Set up the keyboard so the delete key on both the regular keyboard
 ;; and the keypad delete the character under the cursor and to the right
 ;; under X, instead of the default, backspace behavior.
 (add-to-list 'auto-mode-alist '("\\.pas$" . delphi-mode))
 
 ;; Add the .mak suffix to the auto-mode-alist:
-(setq auto-mode-alist (cons '("\\.mak\\'" . makefile-mode) auto-mode-alist))
+(setq auto-mode-alist (cons '("\\.mak$" . makefile-mode) auto-mode-alist))
+
+;; Add the Makefile prefix to the auto-mode-alist:
+(add-to-list 'auto-mode-alist '("Makefile" . makefile-mode))
 
 ;; When an Emacs init file gets large or has a lot of function definitions, you
 ;; should consider compiling it: it will load faster when Emacs starts, and its