Add 2008 to copyright years.
[bpt/emacs.git] / lisp / dos-vars.el
CommitLineData
55535639 1;;; dos-vars.el --- MS-Dos specific user options
b0d00c35 2
e91081eb 3;; Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005,
409cc4a3 4;; 2006, 2007, 2008 Free Software Foundation, Inc.
b0d00c35
RS
5
6;; Maintainer: FSF
7;; Keywords: internal
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
b4aa6026 13;; the Free Software Foundation; either version 3, or (at your option)
b0d00c35
RS
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
b0d00c35 25
55535639
PJ
26;;; Commentary:
27
28;;; Code:
29
b0d00c35 30(defgroup dos-fns nil
5a36f62b 31 "MS-DOS specific functions."
b0d00c35
RS
32 :group 'environment)
33
34(defcustom msdos-shells '("command.com" "4dos.com" "ndos.com")
35 "*List of shells that use `/c' instead of `-c' and a backslashed command."
36 :type '(repeat string)
37 :group 'dos-fns)
38
9d45accd
EZ
39(defcustom dos-codepage-setup-hook nil
40 "*List of functions to be called after the DOS terminal and coding
41systems are set up. This is the place, e.g., to set specific entries
42in `standard-display-table' as appropriate for your codepage, if
43`IT-display-table-setup' doesn't do a perfect job."
44 :group 'dos-fns
45 :type '(hook)
46 :version "20.3.3")
47
ab5796a9 48;;; arch-tag: dce8a0d9-ab29-413f-84ed-8b89d6190546
b0d00c35 49;;; dos-vars.el ends here