summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2007-12-06 11:37:11 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2007-12-06 11:37:11 +0000
commita2314b61e81826524617e89c63c6b76eec5444f7 (patch)
treebd459426eca714cdd23b1854cfbd2bcb0b0227e7 /sci-mathematics/gretl/files
parentversion bump. Remove QMAKESPEC as it's redundant and might conflict with oth... (diff)
downloadhistorical-a2314b61e81826524617e89c63c6b76eec5444f7.tar.gz
historical-a2314b61e81826524617e89c63c6b76eec5444f7.tar.bz2
historical-a2314b61e81826524617e89c63c6b76eec5444f7.zip
Added emacs capability thanks to the emacs team (bug #201461).
Package-Manager: portage-2.1.4_rc7
Diffstat (limited to 'sci-mathematics/gretl/files')
-rw-r--r--sci-mathematics/gretl/files/50gretl-gentoo.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/sci-mathematics/gretl/files/50gretl-gentoo.el b/sci-mathematics/gretl/files/50gretl-gentoo.el
new file mode 100644
index 000000000000..c5f3159efc0b
--- /dev/null
+++ b/sci-mathematics/gretl/files/50gretl-gentoo.el
@@ -0,0 +1,16 @@
+
+;;; sci-mathematics/gretl site-lisp configuration
+
+(add-to-list 'load-path "@SITELISP@")
+
+(autoload 'gretl-mode "gretl" nil t)
+;; not adding to auto-mode-alist since .inp is too generic as extension
+;;(add-to-list 'auto-mode-alist '("\\.inp\\'" . gretl-mode))
+
+;; Automatically turn on the abbrev, auto-fill and font-lock features
+(add-hook 'gretl-mode-hook
+ (lambda ()
+ (abbrev-mode 1)
+ (auto-fill-mode 1)
+ (if (eq window-system 'x)
+ (font-lock-mode 1))))