Mercurial > emacs
annotate lisp/w32-vars.el @ 110709:f07cd17d0a5a
* keyboard.c (command_loop_1): Make sure the mark is really alive
before using it (Bug#7044).
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sat, 02 Oct 2010 20:59:02 -0400 |
parents | 280c8ae2476d |
children | 8764fdce10f5 |
rev | line source |
---|---|
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
1 ;;; w32-vars.el --- MS-Windows specific user options |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
2 |
106815 | 3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
100908 | 4 ;; Free Software Foundation, Inc. |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
5 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
6 ;; Author: Jason Rumney <jasonr@gnu.org> |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
7 ;; Keywords: internal |
110015
280c8ae2476d
Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
8 ;; Package: emacs |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
9 |
45057 | 10 ;; This file is part of GNU Emacs. |
11 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
13 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
16 |
45341 | 17 ;; GNU Emacs is distributed in the hope that it will be useful, |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
20 ;; GNU General Public License for more details. |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
21 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
22 ;; You should have received a copy of the GNU General Public License |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
24 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
25 ;;; Commentary: |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
26 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
27 ;;; Code: |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
28 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
29 ;; Custom group for w32 specific settings |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
30 (defgroup w32 nil |
64026
f0f7996ea325
(w32): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
62531
diff
changeset
|
31 "MS-Windows specific features." |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
32 :group 'environment |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
52401
diff
changeset
|
33 :version "22.1" |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
34 :prefix "w32") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
35 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
36 ;; Redefine the font selection to use the standard W32 dialog |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
37 (defcustom w32-use-w32-font-dialog t |
100171 | 38 "Use the standard font dialog. |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
39 If nil, pop up a menu of a fixed set of fonts including fontsets, like |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
40 X does. See `w32-fixed-font-alist' for the font menu definition." |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
41 :type 'boolean |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
42 :group 'w32) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
43 |
102472
58ec78703942
* w32-vars.el (w32-list-proportional-fonts): Make obsolete.
Jason Rumney <jasonr@gnu.org>
parents:
102239
diff
changeset
|
44 (defvar w32-list-proportional-fonts nil |
58ec78703942
* w32-vars.el (w32-list-proportional-fonts): Make obsolete.
Jason Rumney <jasonr@gnu.org>
parents:
102239
diff
changeset
|
45 "Include proportional fonts in the default font dialog.") |
102473
1fff65a4070f
* w32-vars.el (w32-list-proportional-fonts): Fix typos in last change.
Juanma Barranquero <lekktu@gmail.com>
parents:
102472
diff
changeset
|
46 (make-obsolete-variable 'w32-list-proportional-fonts "no longer used." "23.1") |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
47 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
48 (defcustom w32-allow-system-shell nil |
100171 | 49 "Disable startup warning when using \"system\" shells." |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
50 :type 'boolean |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
51 :group 'w32) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
52 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
53 (defcustom w32-system-shells '("cmd" "cmd.exe" "command" "command.com" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
54 "4nt" "4nt.exe" "4dos" "4dos.exe" |
91938
1306e7d92884
(w32-system-shells): Add TCC (new name for 4NT.)
Juanma Barranquero <lekktu@gmail.com>
parents:
87649
diff
changeset
|
55 "tcc" "tcc.exe" "ndos" "ndos.exe") |
102239
8234994136f0
* w32-vars.el (w32-system-shells): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
100908
diff
changeset
|
56 "List of strings recognized as Windows system shells." |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
57 :type '(repeat string) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
58 :group 'w32) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
59 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
60 ;; Want "menu" custom type for this. |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
61 (defcustom w32-fixed-font-alist |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
62 '("Font menu" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
63 ("Misc" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
64 ;; For these, we specify the pixel height and width. |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
65 ("fixed" "Fixedsys") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
66 ("") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
67 ("Terminal 5x4" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
68 "-*-Terminal-normal-r-*-*-*-45-*-*-c-40-*-oem") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
69 ("Terminal 6x8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
70 "-*-Terminal-normal-r-*-*-*-60-*-*-c-80-*-oem") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
71 ("Terminal 9x5" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
72 "-*-Terminal-normal-r-*-*-*-90-*-*-c-50-*-oem") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
73 ("Terminal 9x7" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
74 "-*-Terminal-normal-r-*-*-*-90-*-*-c-70-*-oem") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
75 ("Terminal 9x8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
76 "-*-Terminal-normal-r-*-*-*-90-*-*-c-80-*-oem") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
77 ("Terminal 12x12" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
78 "-*-Terminal-normal-r-*-*-*-120-*-*-c-120-*-oem") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
79 ("Terminal 14x10" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
80 "-*-Terminal-normal-r-*-*-*-135-*-*-c-100-*-oem") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
81 ("Terminal 6x6 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
82 "-*-Terminal-bold-r-*-*-*-60-*-*-c-60-*-oem") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
83 ("") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
84 ("Lucida Sans Typewriter.8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
85 "-*-Lucida Sans Typewriter-normal-r-*-*-11-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
86 ("Lucida Sans Typewriter.9" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
87 "-*-Lucida Sans Typewriter-normal-r-*-*-12-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
88 ("Lucida Sans Typewriter.10" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
89 "-*-Lucida Sans Typewriter-normal-r-*-*-13-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
90 ("Lucida Sans Typewriter.11" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
91 "-*-Lucida Sans Typewriter-normal-r-*-*-15-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
92 ("Lucida Sans Typewriter.12" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
93 "-*-Lucida Sans Typewriter-normal-r-*-*-16-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
94 ("Lucida Sans Typewriter.8 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
95 "-*-Lucida Sans Typewriter-semibold-r-*-*-11-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
96 ("Lucida Sans Typewriter.9 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
97 "-*-Lucida Sans Typewriter-semibold-r-*-*-12-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
98 ("Lucida Sans Typewriter.10 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
99 "-*-Lucida Sans Typewriter-semibold-r-*-*-13-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
100 ("Lucida Sans Typewriter.11 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
101 "-*-Lucida Sans Typewriter-semibold-r-*-*-15-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
102 ("Lucida Sans Typewriter.12 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
103 "-*-Lucida Sans Typewriter-semibold-r-*-*-16-*-*-*-c-*-iso8859-1")) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
104 ("Courier" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
105 ("Courier 10x8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
106 "-*-Courier-*normal-r-*-*-*-97-*-*-c-80-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
107 ("Courier 12x9" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
108 "-*-Courier-*normal-r-*-*-*-120-*-*-c-90-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
109 ("Courier 15x12" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
110 "-*-Courier-*normal-r-*-*-*-150-*-*-c-120-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
111 ;; For these, we specify the point height. |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
112 ("") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
113 ("8" "-*-Courier New-normal-r-*-*-11-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
114 ("9" "-*-Courier New-normal-r-*-*-12-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
115 ("10" "-*-Courier New-normal-r-*-*-13-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
116 ("11" "-*-Courier New-normal-r-*-*-15-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
117 ("12" "-*-Courier New-normal-r-*-*-16-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
118 ("8 bold" "-*-Courier New-bold-r-*-*-11-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
119 ("9 bold" "-*-Courier New-bold-r-*-*-12-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
120 ("10 bold" "-*-Courier New-bold-r-*-*-13-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
121 ("11 bold" "-*-Courier New-bold-r-*-*-15-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
122 ("12 bold" "-*-Courier New-bold-r-*-*-16-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
123 ("8 italic" "-*-Courier New-normal-i-*-*-11-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
124 ("9 italic" "-*-Courier New-normal-i-*-*-12-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
125 ("10 italic" "-*-Courier New-normal-i-*-*-13-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
126 ("11 italic" "-*-Courier New-normal-i-*-*-15-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
127 ("12 italic" "-*-Courier New-normal-i-*-*-16-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
128 ("8 bold italic" "-*-Courier New-bold-i-*-*-11-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
129 ("9 bold italic" "-*-Courier New-bold-i-*-*-12-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
130 ("10 bold italic" "-*-Courier New-bold-i-*-*-13-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
131 ("11 bold italic" "-*-Courier New-bold-i-*-*-15-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
132 ("12 bold italic" "-*-Courier New-bold-i-*-*-16-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
133 )) |
100171 | 134 "Fonts suitable for use in Emacs. |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
135 Initially this is a list of some fixed width fonts that most people |
91938
1306e7d92884
(w32-system-shells): Add TCC (new name for 4NT.)
Juanma Barranquero <lekktu@gmail.com>
parents:
87649
diff
changeset
|
136 will have like Terminal and Courier. These fonts are used in the font |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
137 menu if the variable `w32-use-w32-font-dialog' is nil." |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
138 :type '(list |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
139 (string :tag "Menu Title") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
140 (repeat :inline t |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
141 (list :tag "Submenu" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
142 (string :tag "Title") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
143 (repeat :inline t |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
144 (choice :tag "" |
64107
c88d98c10ab2
(w32-fixed-font-alist): Fix typo in `defcustom' tag.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
145 (const :tag "Separator" ("")) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
146 (list :tag "Font Entry" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
147 (string :tag "Menu text") |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
148 (string :tag "Font"))))))) |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
149 :group 'w32) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
150 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
151 (defcustom x-select-enable-clipboard t |
100171 | 152 "Non-nil means cutting and pasting uses the clipboard. |
104066 | 153 This is in addition to, but in preference to, the primary selection. |
154 | |
155 On MS-Windows, this is non-nil by default, since Windows does not | |
156 support other types of selections. \(The primary selection that is | |
157 set by Emacs is not accessible to other programs on Windows.\)" | |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
158 :type 'boolean |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
159 :group 'killing) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
160 |
85500
0dcd1f3c9909
* textmodes/reftex.el: Move require easymenu before first use.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78236
diff
changeset
|
161 (provide 'w32-vars) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
162 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91938
diff
changeset
|
163 ;; arch-tag: ee2394fb-9db7-4c15-a8f0-66b47f4a2bb1 |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
164 ;;; w32-vars.el ends here |