]> gitweb.michael.orlitzky.com - emacs.d.git/commitdiff
Remove all references to csharp-mode, it's dead upstream.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 7 Nov 2014 17:48:16 +0000 (12:48 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 7 Nov 2014 17:48:16 +0000 (12:48 -0500)
auto-modes.el
mode-hooks.el
mode-hooks/csharp-mode-hooks.el [deleted file]

index 6146b6dcd06a09199ea57fd3e365a671f511f320..a616d48447672357b1e3119486dd45c383b174f9 100644 (file)
        '("apache[12]\?\\.conf$"       . apache-mode)
        '("commonapache[12]\?\\.conf$" . apache-mode)
 
-       ;; csharp-mode
-       '("\\.ascx$" . csharp-mode)
-       '("\\.cs$"   . csharp-mode)
-
        ;; haskell-mode
        '("\\.l?hs$" . haskell-mode)
 
index 6e0559361f0f09887831b1dee13f75cd90f2665e..a43aeb11f89549d688f3e362a1bf92ab83453175 100644 (file)
@@ -2,7 +2,6 @@
    'load-path
    (file-name-sans-extension load-file-name))
 
-(load-library "csharp-mode-hooks")
 (load-library "css-mode-hooks")
 (load-library "js-mode-hooks")
 (load-library "haskell-mode-hooks")
diff --git a/mode-hooks/csharp-mode-hooks.el b/mode-hooks/csharp-mode-hooks.el
deleted file mode 100644 (file)
index 7162142..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-(defun csm-hook()
-  ;; csharp-mode overrides this somewhere. Fix that.
-  (setq require-final-newline nil)
-  )
-
-
-(add-hook 'csharp-mode-hook (function csm-hook))