| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.60 2009/04/14 15:45:45 ulm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.61 2009/05/25 16:25:32 fauli Exp $ |
| 4 | # |
4 | # |
| 5 | # Copyright 2002-2004 Matthew Kennedy <mkennedy@gentoo.org> |
5 | # Copyright 2002-2004 Matthew Kennedy <mkennedy@gentoo.org> |
| 6 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
6 | # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
| 7 | # Copyright 2004-2005 Mamoru Komachi <usata@gentoo.org> |
7 | # Copyright 2004-2005 Mamoru Komachi <usata@gentoo.org> |
| 8 | # Copyright 2007-2008 Christian Faulhammer <fauli@gentoo.org> |
8 | # Copyright 2007-2008 Christian Faulhammer <fauli@gentoo.org> |
| … | |
… | |
| 62 | # |
62 | # |
| 63 | # To let the Emacs support be activated by Emacs on startup, you need |
63 | # To let the Emacs support be activated by Emacs on startup, you need |
| 64 | # to provide a site file (shipped in ${FILESDIR}) which contains the |
64 | # to provide a site file (shipped in ${FILESDIR}) which contains the |
| 65 | # startup code (have a look in the documentation of your software). |
65 | # startup code (have a look in the documentation of your software). |
| 66 | # Normally this would look like this: |
66 | # Normally this would look like this: |
| 67 | # |
|
|
| 68 | # ;;; csv-mode site-lisp configuration |
|
|
| 69 | # |
67 | # |
| 70 | # (add-to-list 'load-path "@SITELISP@") |
68 | # (add-to-list 'load-path "@SITELISP@") |
| 71 | # (add-to-list 'auto-mode-alist '("\\.csv\\'" . csv-mode)) |
69 | # (add-to-list 'auto-mode-alist '("\\.csv\\'" . csv-mode)) |
| 72 | # (autoload 'csv-mode "csv-mode" "Major mode for csv files." t) |
70 | # (autoload 'csv-mode "csv-mode" "Major mode for csv files." t) |
| 73 | # |
71 | # |