diff options
author | Ondřej Surý <ondrej@sury.org> | 2011-02-16 11:50:13 +0100 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2011-02-16 11:51:43 +0100 |
commit | ac2d3c9eb73a2d23848c55c3171d8ff6dd0feed9 (patch) | |
tree | acfdd71ec5cbec4d54020eaec8c5fed0a04410ed /debian/golang-mode.emacsen-startup | |
parent | 1dcd4bb96ca53d5059a5f112e6422fde7b323644 (diff) | |
download | golang-ac2d3c9eb73a2d23848c55c3171d8ff6dd0feed9.tar.gz |
Build golang-mode package (Courtesy of Florian Weimer)
Diffstat (limited to 'debian/golang-mode.emacsen-startup')
-rw-r--r-- | debian/golang-mode.emacsen-startup | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/golang-mode.emacsen-startup b/debian/golang-mode.emacsen-startup new file mode 100644 index 000000000..378f11f5f --- /dev/null +++ b/debian/golang-mode.emacsen-startup @@ -0,0 +1,7 @@ +;; -*-emacs-lisp-*- + +(let ((path "/usr/share/emacs/site-lisp/golang-mode")) + (when (file-exists-p path) + (add-to-list 'load-path path t) + (require 'go-mode-load))) + |