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