summary refs log tree commit diff
path: root/pkgs/applications/editors/emacs-25/site-start.el
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2016-09-18 13:34:28 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2016-09-18 13:38:21 +0200
commit01e44ac1f9af1d42ee9b5000426b780f2a03c948 (patch)
tree04b811bb05a6e2deb657805409c96b03e84c4d8c /pkgs/applications/editors/emacs-25/site-start.el
parent20fb07dc4ae8a4dc186779f01f3a65e6cc6eed33 (diff)
downloadnixlib-01e44ac1f9af1d42ee9b5000426b780f2a03c948.tar
nixlib-01e44ac1f9af1d42ee9b5000426b780f2a03c948.tar.gz
nixlib-01e44ac1f9af1d42ee9b5000426b780f2a03c948.tar.bz2
nixlib-01e44ac1f9af1d42ee9b5000426b780f2a03c948.tar.lz
nixlib-01e44ac1f9af1d42ee9b5000426b780f2a03c948.tar.xz
nixlib-01e44ac1f9af1d42ee9b5000426b780f2a03c948.tar.zst
nixlib-01e44ac1f9af1d42ee9b5000426b780f2a03c948.zip
emacs: 24.5 -> 25.1
This commit removes all references to emacs24 with the exception of
emacs24-macports. The two folders in `pkgs/applications/editors` named
`emacs-24` and `emacs-24` are consolidated to a new `emacs` folder.

Various parts in nixpkgs also referenced `emacs24Packages` (pinned to
`emacs24`) explicitly where `emacsPackages` (non-pinned) is more
appropriate. These references get fixed by this commit too.
Diffstat (limited to 'pkgs/applications/editors/emacs-25/site-start.el')
-rw-r--r--pkgs/applications/editors/emacs-25/site-start.el17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/applications/editors/emacs-25/site-start.el b/pkgs/applications/editors/emacs-25/site-start.el
deleted file mode 100644
index 023d6412ed84..000000000000
--- a/pkgs/applications/editors/emacs-25/site-start.el
+++ /dev/null
@@ -1,17 +0,0 @@
-;; NixOS specific load-path
-(setq load-path
-      (append (reverse (mapcar (lambda (x) (concat x "/share/emacs/site-lisp/"))
-                               (split-string (or (getenv "NIX_PROFILES") ""))))
-              load-path))
-
-;;; Make `woman' find the man pages
-(eval-after-load 'woman
-  '(setq woman-manpath
-         (append (reverse (mapcar (lambda (x) (concat x "/share/man/"))
-                                  (split-string (or (getenv "NIX_PROFILES") ""))))
-                 woman-manpath)))
-
-;; Make tramp work for remote NixOS machines
-;;; NOTE: You might want to add 
-(eval-after-load 'tramp
-  '(add-to-list 'tramp-remote-path "/run/current-system/sw/bin"))