Sync to HEAD
[bpt/emacs.git] / lisp / eshell / esh-maint.el
CommitLineData
0a10297a 1;;; esh-maint.el --- init code for building eshell -*- no-byte-compile: t -*-
affbf647 2
faadfb0a 3;; Copyright (C) 1999, 2000 Free Software Foundation
affbf647 4
7de5b421
GM
5;; Author: John Wiegley <johnw@gnu.org>
6
affbf647
GM
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software; you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation; either version 2, or (at your option)
12;; any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs; see the file COPYING. If not, write to the
21;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22;; Boston, MA 02111-1307, USA.
23
24;;; Commentary:
25
26;;; Code:
27
28(provide 'esh-maint)
29
30(and (fboundp 'font-lock-add-keywords)
31 (font-lock-add-keywords
32 'emacs-lisp-mode
33 '(("(eshell-for\\>" . font-lock-keyword-face)
34 ("(eshell-deftest\\>" . font-lock-keyword-face)
35 ("(eshell-condition-case\\>" . font-lock-keyword-face))))
36
37(if (file-directory-p "../pcomplete")
38 (add-to-list 'load-path "../pcomplete"))
39
40(if (locate-library "pcomplete")
41 (require 'pcomplete))
42
43(eval-when-compile
44 (require 'cl)
45 (setq cl-optimize-speed 9))
46
47;; (defun eshell-generate-autoloads ()
48;; (interactive)
49;; (require 'autoload)
50;; (setq generated-autoload-file
dace60cf 51;; (expand-file-name (car command-line-args-left)))
affbf647
GM
52;; (setq command-line-args-left (cdr command-line-args-left))
53;; (batch-update-autoloads))
54
55(require 'eshell)
56(require 'esh-mode) ; brings in eshell-util
57(require 'esh-opt)
58(require 'esh-test)
59
60;; (defun eshell-generate-main-menu ()
61;; "Create the main menu for the eshell documentation."
62;; (insert "@menu
63;; * The Emacs shell:: eshell.
64
65;; Core Functionality\n")
66;; (eshell-for module
67;; (sort (eshell-subgroups 'eshell)
dace60cf
JW
68;; (function
69;; (lambda (a b)
70;; (string-lessp (symbol-name a)
71;; (symbol-name b)))))
affbf647 72;; (insert (format "* %-34s"
dace60cf
JW
73;; (concat (get module 'custom-tag) "::"))
74;; (symbol-name module) ".\n"))
affbf647
GM
75;; (insert "\nOptional Functionality\n")
76;; (eshell-for module
77;; (sort (eshell-subgroups 'eshell-module)
dace60cf
JW
78;; (function
79;; (lambda (a b)
80;; (string-lessp (symbol-name a)
81;; (symbol-name b)))))
affbf647 82;; (insert (format "* %-34s"
dace60cf
JW
83;; (concat (get module 'custom-tag) "::"))
84;; (symbol-name module) ".\n"))
affbf647
GM
85;; (insert "@end menu\n"))
86
87;; (defun eshell-make-texi ()
88;; "Make the eshell.texi file."
89;; (interactive)
90;; (require 'eshell-auto)
91;; (require 'texidoc)
92;; (require 'pcomplete)
93;; (apply 'texidoc-files 'eshell-generate-main-menu "eshell.doci"
dace60cf
JW
94;; (append
95;; (list "eshell.el")
96;; (sort (mapcar
97;; (function
98;; (lambda (sym)
99;; (let ((name (symbol-name sym)))
100;; (if (string-match "\\`eshell-\\(.*\\)" name)
101;; (setq name (concat "esh-" (match-string 1 name))))
102;; (concat name ".el"))))
103;; (eshell-subgroups 'eshell))
104;; 'string-lessp)
105;; (sort (mapcar
106;; (function
107;; (lambda (sym)
108;; (let ((name (symbol-name sym)))
109;; (if (string-match "\\`eshell-\\(.*\\)" name)
110;; (setq name (concat "em-" (match-string 1 name))))
111;; (concat name ".el"))))
112;; (eshell-subgroups 'eshell-module))
113;; 'string-lessp)
114;; (list "eshell.texi"))))
affbf647
GM
115
116;; (defun eshell-make-readme ()
117;; "Make the README file from eshell.el."
118;; (interactive)
119;; (require 'eshell-auto)
120;; (require 'texidoc)
121;; (require 'pcomplete)
122;; (texidoc-files nil "eshell.doci" "eshell.el" "README.texi")
123;; (set-buffer (get-buffer "README.texi"))
124;; (goto-char (point-min))
125;; (search-forward "@chapter")
126;; (beginning-of-line)
127;; (forward-line -1)
128;; (kill-line 2)
129;; (re-search-forward "^@section User Options")
130;; (beginning-of-line)
131;; (delete-region (point) (point-max))
132;; (insert "@bye\n")
133;; (save-buffer)
134;; (with-temp-buffer
135;; (call-process "makeinfo" nil t nil "--no-headers" "README.texi")
136;; (goto-char (point-min))
137;; (search-forward "The Emacs Shell")
138;; (beginning-of-line)
139;; (delete-region (point-min) (point))
140;; (write-file "README"))
141;; (delete-file "README.texi")
142;; (kill-buffer "README.texi"))
143
6b61353c 144;;; arch-tag: 662089b6-78ec-48c5-b94f-d212279e8902
affbf647 145;;; esh-maint.el ends here