Mercurial > emacs
annotate lisp/dos-vars.el @ 92826:416592e7d882
Move variable declarations where they are needed.
(diary-bahai-date): Move to end.
(generated-autoload-file): Don't set, instead use different values of
generate-autoload-cookie plus Makefile rules to allow for a mixture of
internal calendar autoloads and normal autoloads.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 13 Mar 2008 05:40:02 +0000 |
parents | 73661ddc7ac7 |
children | 606f2d163a64 1e3a407766b9 |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
23919
diff
changeset
|
1 ;;; dos-vars.el --- MS-Dos specific user options |
22072 | 2 |
74439 | 3 ;; Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005, |
79721 | 4 ;; 2006, 2007, 2008 Free Software Foundation, Inc. |
22072 | 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 | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
13 ;; the Free Software Foundation; either version 3, or (at your option) |
22072 | 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 | |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
22072 | 25 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
23919
diff
changeset
|
26 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
23919
diff
changeset
|
27 |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
23919
diff
changeset
|
28 ;;; Code: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
23919
diff
changeset
|
29 |
22072 | 30 (defgroup dos-fns nil |
22073 | 31 "MS-DOS specific functions." |
22072 | 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 | |
23919
3b3a9cd1785a
(dos-codepage-setup-hook): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
22677
diff
changeset
|
39 (defcustom dos-codepage-setup-hook nil |
3b3a9cd1785a
(dos-codepage-setup-hook): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
22677
diff
changeset
|
40 "*List of functions to be called after the DOS terminal and coding |
3b3a9cd1785a
(dos-codepage-setup-hook): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
22677
diff
changeset
|
41 systems are set up. This is the place, e.g., to set specific entries |
3b3a9cd1785a
(dos-codepage-setup-hook): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
22677
diff
changeset
|
42 in `standard-display-table' as appropriate for your codepage, if |
3b3a9cd1785a
(dos-codepage-setup-hook): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
22677
diff
changeset
|
43 `IT-display-table-setup' doesn't do a perfect job." |
3b3a9cd1785a
(dos-codepage-setup-hook): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
22677
diff
changeset
|
44 :group 'dos-fns |
3b3a9cd1785a
(dos-codepage-setup-hook): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
22677
diff
changeset
|
45 :type '(hook) |
3b3a9cd1785a
(dos-codepage-setup-hook): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
22677
diff
changeset
|
46 :version "20.3.3") |
3b3a9cd1785a
(dos-codepage-setup-hook): New defcustom.
Eli Zaretskii <eliz@gnu.org>
parents:
22677
diff
changeset
|
47 |
52401 | 48 ;;; arch-tag: dce8a0d9-ab29-413f-84ed-8b89d6190546 |
22072 | 49 ;;; dos-vars.el ends here |