Mercurial > emacs
annotate lisp/w32-vars.el @ 85511:f873840f9fea
* emulation/edt-mapper.el (function-key-map):
(edt-map-key): Make it a function instead of using fset. Inline
edt-gnu-map-key and edt-lucid-map-key. Use featurep 'xemacs.
(edt-gnu-map-key, edt-lucid-map-key): Remove.
(edt-x-emacs-p): Remove.
(edt-emacs-variant, edt-window-system, edt-xserver):
Use featurep 'xemacs.
* net/eudc.el: Use (featurep 'xemacs) instead of the string test.
Replace eudc-xemacs-p with its definition.
(eudc-xemacs-p, eudc-emacs-p, eudc-xemacs-mule-p)
(eudc-emacs-mule-p): Remove.
(eudc-install-menu, eudc-mode): Replace eudc-emacs-p and
eudc-xemacs-p with feature tests.
* net/eudc-bob.el (eudc-bob-generic-menu, eudc-bob-mail-keymap)
(eudc-bob-url-keymap, eudc-bob-sound-keymap)
(eudc-bob-generic-keymap, eudc-bob-popup-menu)
(eudc-bob-toggle-inline-display):
* net/eudc-hotlist.el (eudc-hotlist-emacs-menu): Replace
eudc-emacs-p and eudc-xemacs-p with feature tests.
* net/eudcb-ph.el (eudc-ph-open-session): Replace
eudc-xemacs-mule-p with its former definition.
* progmodes/octave-mod.el (octave-xemacs-p): Remove.
(octave-abbrev-start): Replace octave-xemacs-p with
(featurep 'xemacs).
* progmodes/vera-mode.el (vera-xemacs): Remove.
(vera-mode-syntax-table): Replace vera-xemacs with
(featurep 'xemacs).
* progmodes/vhdl-mode.el (vhdl-xemacs): Remove.
(vhdl-doc-mode, vhdl-doc-variable, vhdl-compile-init)
(vhdl-speedbar-initialize, vhdl-ps-print-init)
(vhdl-forward-comment, vhdl-mode-map-init, vhdl-show-messages)
(vhdl-emacs-22, vhdl-emacs-21): Replace vhdl-xemacs
with (featurep 'xemacs).
* progmodes/antlr-mode.el (cond-emacs-xemacs-macfn, defunx)
(save-buffer-state-x):
* obsolete/fast-lock.el (fast-lock-verbose):
* emulation/viper-init.el (viper-xemacs-p)
(viper-cond-compile-for-xemacs-or-emacs):
* emacs-lisp/checkdoc.el (checkdoc-minor-mode-map):
* ps-print.el (case-fold-search):
* ediff-hook.el (ediff-cond-compile-for-xemacs-or-emacs):
* calculator.el (calculator-help): Use featurep 'xemacs.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sun, 21 Oct 2007 17:22:04 +0000 |
parents | 0dcd1f3c9909 |
children | 107ccd98fa12 4bc33ffdda1a |
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 |
75347 | 3 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
4 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
5 ;; Author: Jason Rumney <jasonr@gnu.org> |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
6 ;; Keywords: internal |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
7 |
45057 | 8 ;; This file is part of GNU Emacs. |
9 | |
45340 | 10 ;; 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
|
11 ;; 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
|
12 ;; the Free Software Foundation; either version 3, or (at your option) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
13 ;; any later version. |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
14 |
45341 | 15 ;; 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
|
16 ;; 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
|
17 ;; 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
|
18 ;; 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
|
19 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to |
64091 | 22 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
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 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
38 "*Use the standard font dialog. |
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 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
44 (defcustom w32-list-proportional-fonts nil |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
45 "*Include proportional fonts in the default font dialog." |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
46 :type 'boolean |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
47 :group 'w32) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
48 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
49 (defcustom w32-allow-system-shell nil |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
50 "*Disable startup warning when using \"system\" shells." |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
51 :type 'boolean |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
52 :group 'w32) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
53 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
54 (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
|
55 "4nt" "4nt.exe" "4dos" "4dos.exe" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
56 "ndos" "ndos.exe") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
57 "*List of strings recognized as Windows NT/9X system shells." |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
58 :type '(repeat string) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
59 :group 'w32) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
60 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
61 ;; Want "menu" custom type for this. |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
62 (defcustom w32-fixed-font-alist |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
63 '("Font menu" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
64 ("Misc" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
65 ;; 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
|
66 ("fixed" "Fixedsys") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
67 ("") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
68 ("Terminal 5x4" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
69 "-*-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
|
70 ("Terminal 6x8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
71 "-*-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
|
72 ("Terminal 9x5" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
73 "-*-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
|
74 ("Terminal 9x7" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
75 "-*-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
|
76 ("Terminal 9x8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
77 "-*-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
|
78 ("Terminal 12x12" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
79 "-*-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
|
80 ("Terminal 14x10" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
81 "-*-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
|
82 ("Terminal 6x6 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
83 "-*-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
|
84 ("") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
85 ("Lucida Sans Typewriter.8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
86 "-*-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
|
87 ("Lucida Sans Typewriter.9" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
88 "-*-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
|
89 ("Lucida Sans Typewriter.10" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
90 "-*-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
|
91 ("Lucida Sans Typewriter.11" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
92 "-*-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
|
93 ("Lucida Sans Typewriter.12" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
94 "-*-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
|
95 ("Lucida Sans Typewriter.8 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-*-*-11-*-*-*-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.9 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-*-*-12-*-*-*-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.10 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-*-*-13-*-*-*-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.11 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-*-*-15-*-*-*-c-*-iso8859-1") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
103 ("Lucida Sans Typewriter.12 Bold" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
104 "-*-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
|
105 ("Courier" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
106 ("Courier 10x8" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
107 "-*-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
|
108 ("Courier 12x9" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
109 "-*-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
|
110 ("Courier 15x12" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
111 "-*-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
|
112 ;; 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
|
113 ("") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
114 ("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
|
115 ("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
|
116 ("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
|
117 ("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
|
118 ("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
|
119 ("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
|
120 ("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
|
121 ("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
|
122 ("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
|
123 ("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
|
124 ("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
|
125 ("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
|
126 ("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
|
127 ("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
|
128 ("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
|
129 ("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
|
130 ("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
|
131 ("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
|
132 ("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
|
133 ("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
|
134 )) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
135 "*Fonts suitable for use in Emacs. |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
136 Initially this is a list of some fixed width fonts that most people |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
137 will have like Terminal and Courier. These fonts are used in the font |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
138 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
|
139 :type '(list |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
140 (string :tag "Menu Title") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
141 (repeat :inline t |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
142 (list :tag "Submenu" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
143 (string :tag "Title") |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
144 (repeat :inline t |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
145 (choice :tag "" |
64107
c88d98c10ab2
(w32-fixed-font-alist): Fix typo in `defcustom' tag.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
146 (const :tag "Separator" ("")) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
147 (list :tag "Font Entry" |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
148 (string :tag "Menu text") |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
149 (string :tag "Font"))))))) |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
150 :group 'w32) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
151 |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
152 (defcustom x-select-enable-clipboard t |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
153 "*Non-nil means cutting and pasting uses the clipboard. |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
154 This is in addition to the primary selection." |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
155 :type 'boolean |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
156 :group 'killing) |
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
157 |
85500
0dcd1f3c9909
* textmodes/reftex.el: Move require easymenu before first use.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78236
diff
changeset
|
158 (provide 'w32-vars) |
42846
d254de347285
New file: custom declarations for MS-Windows specific settings.
Jason Rumney <jasonr@gnu.org>
parents:
diff
changeset
|
159 |
52401 | 160 ;;; 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
|
161 ;;; w32-vars.el ends here |