Tue Oct 10 2000 Trond Eivind Glomsrød <teg@redhat.com> - remove ctags.1 and etags.1 from the emacs etc directory (#18011) - fix the emacs-nox not to use the locale.alias in XFree86 (#18548)... copy it into /usr/share/emacs and patch the startup files to use it. Argh. Wed Oct 04 2000 Trond Eivind Glomsrød <teg@redhat.com> - fix initialization of python mode (require it before customizing it) Fri Sep 22 2000 Bill Nottingham <notting@redhat.com> - don't use bcopy without a prototype
11 lines
311 B
EmacsLisp
11 lines
311 B
EmacsLisp
;; Aspell is a replacement for ispell
|
|
(setq-default ispell-program-name "aspell")
|
|
|
|
;; Add python support
|
|
(require 'python-mode)
|
|
(setq auto-mode-alist
|
|
(cons '("\\.py$" . python-mode) auto-mode-alist))
|
|
(setq interpreter-mode-alist
|
|
(cons '("python" . python-mode)
|
|
interpreter-mode-alist))
|