HideIfDef mode bug fixes and enhancements. This is #2 of 3 patches based
[bpt/emacs.git] / lisp / dos-vars.el
CommitLineData
55535639 1;;; dos-vars.el --- MS-Dos specific user options
b0d00c35 2
ba318903 3;; Copyright (C) 1998, 2001-2014 Free Software Foundation, Inc.
b0d00c35 4
34dc21db 5;; Maintainer: emacs-devel@gnu.org
b0d00c35 6;; Keywords: internal
bd78fa1d 7;; Package: emacs
b0d00c35
RS
8
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
b0d00c35 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
b0d00c35
RS
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
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
b0d00c35 23
55535639
PJ
24;;; Commentary:
25
26;;; Code:
27
b0d00c35 28(defgroup dos-fns nil
5a36f62b 29 "MS-DOS specific functions."
b0d00c35
RS
30 :group 'environment)
31
32(defcustom msdos-shells '("command.com" "4dos.com" "ndos.com")
9201cc28 33 "List of shells that use `/c' instead of `-c' and a backslashed command."
b0d00c35
RS
34 :type '(repeat string)
35 :group 'dos-fns)
36
9d45accd 37(defcustom dos-codepage-setup-hook nil
9201cc28 38 "List of functions to be called after the DOS terminal and coding
9d45accd
EZ
39systems are set up. This is the place, e.g., to set specific entries
40in `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")
45
36f84c37
GM
46(provide 'dos-vars)
47
b0d00c35 48;;; dos-vars.el ends here