]> gitweb.factorcode.org Git - factor.git/blob - misc/fuel/fu.el
FUEL: Fix bug whereby true display-stacks? could hang the listener.
[factor.git] / misc / fuel / fu.el
1 ;;; fu.el --- Startup file for FUEL
2
3 ;; Copyright (C) 2008  Jose Antonio Ortega Ruiz
4 ;; See http://factorcode.org/license.txt for BSD license.
5
6 ;; Author: Jose Antonio Ortega Ruiz <jao@gnu.org>
7 ;; Keywords: languages
8
9 ;;; Code:
10
11 (add-to-list 'load-path (file-name-directory load-file-name))
12
13 (add-to-list 'auto-mode-alist '("\\.factor\\'" . factor-mode))
14 (autoload 'factor-mode "factor-mode.el"
15   "Major mode for editing Factor source." t)
16
17 (autoload 'run-factor "fuel-listener.el"
18   "Start a Factor listener, or switch to a running one." t)
19
20 (autoload 'switch-to-factor "fuel-listener.el"
21   "Start a Factor listener, or switch to a running one." t)
22
23 (autoload 'fuel-autodoc-mode "fuel-help.el"
24   "Minor mode showing in the minibuffer a synopsis of Factor word at point."
25   t)
26
27
28 \f
29 ;;; fu.el ends here