diff options
| author | Jason Rumney | 2002-01-20 15:33:07 +0000 |
|---|---|---|
| committer | Jason Rumney | 2002-01-20 15:33:07 +0000 |
| commit | 8c2aed8f605439890ae2f8a74a03ecda5c3f6bb4 (patch) | |
| tree | 6ada19c4f635d2863f50b04611eaf1963f3c3968 | |
| parent | be932fda8dee25adecc8cbb930095ec6472d683a (diff) | |
| download | emacs-8c2aed8f605439890ae2f8a74a03ecda5c3f6bb4.tar.gz emacs-8c2aed8f605439890ae2f8a74a03ecda5c3f6bb4.zip | |
Move user variables to w32-vars.el and make them defcustoms.
| -rw-r--r-- | lisp/w32-fns.el | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lisp/w32-fns.el b/lisp/w32-fns.el index 79b4e5c3007..d22b718d5ee 100644 --- a/lisp/w32-fns.el +++ b/lisp/w32-fns.el | |||
| @@ -53,11 +53,6 @@ The value is a list of three integers: the major and minor version | |||
| 53 | numbers, and the build number." | 53 | numbers, and the build number." |
| 54 | (x-server-version)) | 54 | (x-server-version)) |
| 55 | 55 | ||
| 56 | (defvar w32-system-shells '("cmd" "cmd.exe" "command" "command.com" | ||
| 57 | "4nt" "4nt.exe" "4dos" "4dos.exe" | ||
| 58 | "ndos" "ndos.exe") | ||
| 59 | "List of strings recognized as Windows NT/9X system shells.") | ||
| 60 | |||
| 61 | (defun w32-using-nt () | 56 | (defun w32-using-nt () |
| 62 | "Return non-nil if literally running on Windows NT (i.e., not Windows 9X)." | 57 | "Return non-nil if literally running on Windows NT (i.e., not Windows 9X)." |
| 63 | (and (eq system-type 'windows-nt) (getenv "SystemRoot"))) | 58 | (and (eq system-type 'windows-nt) (getenv "SystemRoot"))) |
| @@ -82,9 +77,6 @@ numbers, and the build number." | |||
| 82 | '("cmdproxy" "cmdproxy.exe")) | 77 | '("cmdproxy" "cmdproxy.exe")) |
| 83 | (w32-system-shell-p (getenv "COMSPEC"))))) | 78 | (w32-system-shell-p (getenv "COMSPEC"))))) |
| 84 | 79 | ||
| 85 | (defvar w32-allow-system-shell nil | ||
| 86 | "*Disable startup warning when using \"system\" shells.") | ||
| 87 | |||
| 88 | (defun w32-check-shell-configuration () | 80 | (defun w32-check-shell-configuration () |
| 89 | "Check the configuration of shell variables on Windows NT/9X. | 81 | "Check the configuration of shell variables on Windows NT/9X. |
| 90 | This function is invoked after loading the init files and processing | 82 | This function is invoked after loading the init files and processing |
| @@ -434,12 +426,6 @@ bit output with no translation." | |||
| 434 | (defvar x-cut-buffer-max 20000 | 426 | (defvar x-cut-buffer-max 20000 |
| 435 | "Max number of characters to put in the cut buffer.") | 427 | "Max number of characters to put in the cut buffer.") |
| 436 | 428 | ||
| 437 | (defcustom x-select-enable-clipboard t | ||
| 438 | "Non-nil means cutting and pasting uses the clipboard. | ||
| 439 | This is in addition to the primary selection." | ||
| 440 | :type 'boolean | ||
| 441 | :group 'killing) | ||
| 442 | |||
| 443 | (defun x-select-text (text &optional push) | 429 | (defun x-select-text (text &optional push) |
| 444 | "Make TEXT the last selected text. | 430 | "Make TEXT the last selected text. |
| 445 | If `x-select-enable-clipboard' is non-nil, copy the text to the system | 431 | If `x-select-enable-clipboard' is non-nil, copy the text to the system |