Mercurial > emacs
annotate lisp/w32-vars.el @ 107646:dfdf14a6f5a0
Support MS-Windows build and reversed rows in GUI frames; add initial docs.
doc/emacs/mule.texi (International): Mention support of
bidirectional editing.
(Bidirectional Editing): New section.
etc/HELLO: Reorder Arabic and Hebrew into logical order, and
insert RLM before the opening paren, to make the display more
reasonable. Add setting for bidi-display-reordering in the local
variables section.
lisp/files.el: Make bidi-display-reordering safe variable for
boolean values.
src/xdisp (append_glyph): If the glyph row is reversed, prepend the
glyph rather than appending it.
src/makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
($(BLD)/bidi.$(O)): New target.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Mon, 29 Mar 2010 08:26:24 -0400 |
parents | 1d1d5d9bd884 |
children | 280c8ae2476d 376148b31b5e |
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 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
8 |
45057 | 9 ;; This file is part of GNU Emacs. |
10 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
11 ;; 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
|
12 ;; 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
|
13 ;; 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
|
14 ;; (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
|
15 |
45341 | 16 ;; 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
|
17 ;; 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
|
18 ;; 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
|
19 ;; 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
|
20 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
21 ;; 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
|
22 ;; 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
|
23 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
24 ;;; Commentary: |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
25 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
26 ;;; Code: |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
27 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
28 ;; Custom group for w32 specific settings |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
29 (defgroup w32 nil |
64026
f0f7996ea325
(w32): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
62531
diff
changeset
|
30 "MS-Windows specific features." |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
31 :group 'environment |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
52401
diff
changeset
|
32 :version "22.1" |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
33 :prefix "w32") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
34 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
35 ;; 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
|
36 (defcustom w32-use-w32-font-dialog t |
100171 | 37 "Use the standard font dialog. |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
38 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
|
39 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
|
40 :type 'boolean |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
41 :group 'w32) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
42 |
102472
58ec78703942
* w32-vars.el (w32-list-proportional-fonts): Make obsolete.
Jason Rumney <jasonr@gnu.org>
parents:
102239
diff
changeset
|
43 (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
|
44 "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
|
45 (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
|
46 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
47 (defcustom w32-allow-system-shell nil |
100171 | 48 "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
|
49 :type 'boolean |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
50 :group 'w32) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
51 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
52 (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
|
53 "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
|
54 "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
|
55 "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
|
56 :type '(repeat string) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
57 :group 'w32) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
58 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
59 ;; Want "menu" custom type for this. |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
60 (defcustom w32-fixed-font-alist |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
61 '("Font menu" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
62 ("Misc" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
63 ;; 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
|
64 ("fixed" "Fixedsys") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
65 ("") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
66 ("Terminal 5x4" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
67 "-*-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
|
68 ("Terminal 6x8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
69 "-*-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
|
70 ("Terminal 9x5" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
71 "-*-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
|
72 ("Terminal 9x7" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
73 "-*-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
|
74 ("Terminal 9x8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
75 "-*-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
|
76 ("Terminal 12x12" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
77 "-*-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
|
78 ("Terminal 14x10" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
79 "-*-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
|
80 ("Terminal 6x6 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
81 "-*-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
|
82 ("") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
83 ("Lucida Sans Typewriter.8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
84 "-*-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
|
85 ("Lucida Sans Typewriter.9" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
86 "-*-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
|
87 ("Lucida Sans Typewriter.10" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
88 "-*-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
|
89 ("Lucida Sans Typewriter.11" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
90 "-*-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
|
91 ("Lucida Sans Typewriter.12" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
92 "-*-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
|
93 ("Lucida Sans Typewriter.8 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
94 "-*-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
|
95 ("Lucida Sans Typewriter.9 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
96 "-*-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
|
97 ("Lucida Sans Typewriter.10 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
98 "-*-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
|
99 ("Lucida Sans Typewriter.11 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
100 "-*-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
|
101 ("Lucida Sans Typewriter.12 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
102 "-*-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
|
103 ("Courier" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
104 ("Courier 10x8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
105 "-*-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
|
106 ("Courier 12x9" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
107 "-*-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
|
108 ("Courier 15x12" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
109 "-*-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
|
110 ;; 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
|
111 ("") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
112 ("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
|
113 ("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
|
114 ("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
|
115 ("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
|
116 ("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
|
117 ("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
|
118 ("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
|
119 ("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
|
120 ("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
|
121 ("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
|
122 ("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
|
123 ("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
|
124 ("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
|
125 ("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
|
126 ("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
|
127 ("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
|
128 ("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
|
129 ("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
|
130 ("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
|
131 ("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
|
132 )) |
100171 | 133 "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
|
134 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
|
135 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
|
136 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
|
137 :type '(list |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
138 (string :tag "Menu Title") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
139 (repeat :inline t |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
140 (list :tag "Submenu" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
141 (string :tag "Title") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
142 (repeat :inline t |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
143 (choice :tag "" |
64107
c88d98c10ab2
(w32-fixed-font-alist): Fix typo in `defcustom' tag.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
144 (const :tag "Separator" ("")) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
145 (list :tag "Font Entry" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
146 (string :tag "Menu text") |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
147 (string :tag "Font"))))))) |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
148 :group 'w32) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
149 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
150 (defcustom x-select-enable-clipboard t |
100171 | 151 "Non-nil means cutting and pasting uses the clipboard. |
104066 | 152 This is in addition to, but in preference to, the primary selection. |
153 | |
154 On MS-Windows, this is non-nil by default, since Windows does not | |
155 support other types of selections. \(The primary selection that is | |
156 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
|
157 :type 'boolean |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
158 :group 'killing) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
159 |
85500
0dcd1f3c9909
* textmodes/reftex.el: Move require easymenu before first use.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78236
diff
changeset
|
160 (provide 'w32-vars) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
161 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91938
diff
changeset
|
162 ;; 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
|
163 ;;; w32-vars.el ends here |