annotate lisp/comint/comint-xemacs.el @ 34:d620409f5eb8 r19-15b100

Import from CVS: tag r19-15b100
author cvs
date Mon, 13 Aug 2007 08:53:20 +0200
parents
children c53a95d3c46d 8619ce7e4c50
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
34
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
1 ;;; comint-xemacs.el --- Face customizations for comint
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
2
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
3 ;; Copyright (C) 1997 by Free Software Foundation, Inc.
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
4
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
5 ;; Author: Steven L Baur <steve@altair.xemacs.org>
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
6 ;; Keywords: help, faces
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
7
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
9
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
10 ;; XEmacs is free software; you can redistribute it and/or modify it
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
11 ;; under the terms of the GNU General Public License as published by
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
13 ;; any later version.
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
14
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
15 ;; XEmacs is distributed in the hope that it will be useful, but
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
18 ;; General Public License for more details.
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
19
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
20 ;; You should have received a copy of the GNU General Public License
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
23 ;; 02111-1307, USA.
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
24
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
25 ;;; Synched up with: Not in FSF
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
26
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
27 ;;; Commentary:
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
28
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
29 ;; Declare customizable faces for comint outside the main code so it can
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
30 ;; be dumped with XEmacs.
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
31
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
32 ;;; Code:
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
33
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
34 (defface comint-input-face '((((class color)
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
35 (background dark))
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
36 (:foreground "red"))
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
37 (((class color)
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
38 (background light))
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
39 (:foreground "blue"))
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
40 (((class mono))
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
41 (:bold t))
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
42 (((class grayscale))
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
43 (:bold t))
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
44 (t
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
45 (:bold t)))
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
46 "How to display user input for comint shells."
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
47 :group 'comint-input-face)
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
48
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
49
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
50
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
51 (provide 'comint-xemacs)
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
52
d620409f5eb8 Import from CVS: tag r19-15b100
cvs
parents:
diff changeset
53 ;;; comint-xemacs.el ends here