Switch to recommended form of GPLv3 permissions notice.
[emacs.git] / lisp / dos-vars.el
blobeb79766ff8814a4ca052cbd5d61bd54847a4cc89
1 ;;; dos-vars.el --- MS-Dos specific user options
3 ;; Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: internal
9 ;; This file is part of GNU Emacs.
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
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;;; Code:
28 (defgroup dos-fns nil
29 "MS-DOS specific functions."
30 :group 'environment)
32 (defcustom msdos-shells '("command.com" "4dos.com" "ndos.com")
33 "*List of shells that use `/c' instead of `-c' and a backslashed command."
34 :type '(repeat string)
35 :group 'dos-fns)
37 (defcustom dos-codepage-setup-hook nil
38 "*List of functions to be called after the DOS terminal and coding
39 systems are set up. This is the place, e.g., to set specific entries
40 in `standard-display-table' as appropriate for your codepage, if
41 `IT-display-table-setup' doesn't do a perfect job."
42 :group 'dos-fns
43 :type '(hook)
44 :version "20.3.3")
46 ;; arch-tag: dce8a0d9-ab29-413f-84ed-8b89d6190546
47 ;;; dos-vars.el ends here