2001-07-15 16:15:35 +00:00
|
|
|
;;; dos-vars.el --- MS-Dos specific user options
|
1998-05-15 05:45:53 +00:00
|
|
|
|
2017-01-01 03:14:01 +00:00
|
|
|
;; Copyright (C) 1998, 2001-2017 Free Software Foundation, Inc.
|
1998-05-15 05:45:53 +00:00
|
|
|
|
2014-02-10 01:34:22 +00:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1998-05-15 05:45:53 +00:00
|
|
|
;; Keywords: internal
|
2010-08-29 16:17:13 +00:00
|
|
|
;; Package: emacs
|
1998-05-15 05:45:53 +00:00
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1998-05-15 05:45:53 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1998-05-15 05:45:53 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1998-05-15 05:45:53 +00:00
|
|
|
|
2001-07-15 16:15:35 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
1998-05-15 05:45:53 +00:00
|
|
|
(defgroup dos-fns nil
|
1998-05-15 05:48:02 +00:00
|
|
|
"MS-DOS specific functions."
|
1998-05-15 05:45:53 +00:00
|
|
|
:group 'environment)
|
|
|
|
|
|
|
|
(defcustom msdos-shells '("command.com" "4dos.com" "ndos.com")
|
2008-12-03 05:48:14 +00:00
|
|
|
"List of shells that use `/c' instead of `-c' and a backslashed command."
|
1998-05-15 05:45:53 +00:00
|
|
|
:type '(repeat string)
|
|
|
|
:group 'dos-fns)
|
|
|
|
|
1998-12-20 15:12:03 +00:00
|
|
|
(defcustom dos-codepage-setup-hook nil
|
2008-12-03 05:48:14 +00:00
|
|
|
"List of functions to be called after the DOS terminal and coding
|
1998-12-20 15:12:03 +00:00
|
|
|
systems are set up. This is the place, e.g., to set specific entries
|
|
|
|
in `standard-display-table' as appropriate for your codepage, if
|
|
|
|
`IT-display-table-setup' doesn't do a perfect job."
|
|
|
|
:group 'dos-fns
|
|
|
|
:type '(hook)
|
|
|
|
:version "20.3.3")
|
|
|
|
|
2013-05-11 23:41:52 +00:00
|
|
|
(provide 'dos-vars)
|
|
|
|
|
1998-05-15 05:45:53 +00:00
|
|
|
;;; dos-vars.el ends here
|