From 9aaeb4623d3ff5746e665bc17914eefd292b7dcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BChling?= Date: Sun, 2 Jan 2011 15:19:00 +0100 Subject: New OpenWrt package for GNU Octave. Experimental/probably still broken. Work in progress. Committing it as compilation seems to take forever. Not sure whether I can finish this within a few days. --- emacs/files/site-start.el | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 emacs/files/site-start.el (limited to 'emacs/files') diff --git a/emacs/files/site-start.el b/emacs/files/site-start.el new file mode 100644 index 0000000..e760ec8 --- /dev/null +++ b/emacs/files/site-start.el @@ -0,0 +1,27 @@ +;; Emacs startup file for OpenWRT Emacs package +;; +;; Copyright (C) 2010 David Kuehling +;; License: GPLv2 or later; NO WARRANTY. +;; + +;; load documentation for internal functions. This is skipped by loadup.el +;; when not dumping so we do it here. +(Snarf-documentation "DOC") + +;; On openwrt 'ls' is provided by busybox. That version of 'ls' does not +;; support the --dired option, make Emacs work around that. +(setq dired-use-ls-dired nil) + +;; Allow us to output international characters to the terminal +(set-terminal-coding-system 'utf-8) + +;; Do not show the menu bar. What use is it without a mouse? +;; (Note that you can still use the menu via x menu-bar-open +;; or tmm-menubar +(menu-bar-mode 0) + +;; ugly work-around for load-history entry (require . t-mouse) added by +;; linux.el Not good, as it costs some memory. +(setq load-history + (apply 'nconc (mapcar (lambda (v) (if (stringp (car v)) (list v) nil)) + load-history))) -- cgit v1.2.3