2021-01-05 01:57:42 +00:00
|
|
|
|
;;; w32-fns.el --- Lisp routines for 32-bit Windows -*- lexical-binding: t; -*-
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
2022-01-01 07:45:51 +00:00
|
|
|
|
;; Copyright (C) 1994, 2001-2022 Free Software Foundation, Inc.
|
1994-11-01 10:27:02 +00:00
|
|
|
|
|
1998-03-03 19:36:31 +00:00
|
|
|
|
;; Author: Geoff Voelker <voelker@cs.washington.edu>
|
2001-09-04 12:54:14 +00:00
|
|
|
|
;; Keywords: internal
|
2010-08-29 16:17:13 +00:00
|
|
|
|
;; Package: emacs
|
1994-11-01 10:27:02 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1994-11-01 10:27:02 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1994-11-01 10:27:02 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1994-11-01 10:27:02 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
2007-10-21 07:33:32 +00:00
|
|
|
|
(require 'w32-vars)
|
1994-11-01 10:27:02 +00:00
|
|
|
|
|
2005-08-31 13:52:51 +00:00
|
|
|
|
(defvar explicit-shell-file-name)
|
|
|
|
|
|
2007-11-21 03:39:33 +00:00
|
|
|
|
;;;; Function keys
|
|
|
|
|
|
2016-05-26 18:57:29 +00:00
|
|
|
|
(declare-function w32-get-locale-info "w32proc.c" (lcid &optional longform))
|
|
|
|
|
(declare-function w32-get-valid-locale-ids "w32proc.c" ())
|
1995-04-12 03:13:20 +00:00
|
|
|
|
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(if (eq system-type 'windows-nt)
|
|
|
|
|
;; Map all versions of a filename (8.3, longname, mixed case) to the
|
|
|
|
|
;; same buffer.
|
|
|
|
|
(setq find-file-visit-truename t))
|
1997-09-02 23:54:07 +00:00
|
|
|
|
|
2018-09-07 14:41:21 +00:00
|
|
|
|
;;;; Shells
|
|
|
|
|
|
1997-04-24 02:58:11 +00:00
|
|
|
|
(defun w32-shell-name ()
|
1997-09-02 23:54:07 +00:00
|
|
|
|
"Return the name of the shell being used."
|
2011-01-07 19:07:29 +00:00
|
|
|
|
(or (bound-and-true-p shell-file-name)
|
1997-04-24 02:58:11 +00:00
|
|
|
|
(getenv "ESHELL")
|
|
|
|
|
(getenv "SHELL")
|
2015-05-06 03:10:59 +00:00
|
|
|
|
(and (fboundp 'w32-using-nt) (w32-using-nt) "cmd.exe")
|
1997-04-24 02:58:11 +00:00
|
|
|
|
"command.com"))
|
|
|
|
|
|
1997-09-02 23:54:07 +00:00
|
|
|
|
(defun w32-system-shell-p (shell-name)
|
|
|
|
|
(and shell-name
|
2001-10-29 18:49:16 +00:00
|
|
|
|
(member (downcase (file-name-nondirectory shell-name))
|
1997-09-02 23:54:07 +00:00
|
|
|
|
w32-system-shells)))
|
1997-04-24 02:58:11 +00:00
|
|
|
|
|
1998-09-03 22:34:47 +00:00
|
|
|
|
(defun w32-shell-dos-semantics ()
|
2020-12-19 16:14:33 +00:00
|
|
|
|
"Return non-nil if current interactive shell expects MS-DOS shell semantics."
|
1998-09-03 22:34:47 +00:00
|
|
|
|
(or (w32-system-shell-p (w32-shell-name))
|
|
|
|
|
(and (member (downcase (file-name-nondirectory (w32-shell-name)))
|
|
|
|
|
'("cmdproxy" "cmdproxy.exe"))
|
|
|
|
|
(w32-system-shell-p (getenv "COMSPEC")))))
|
|
|
|
|
|
2007-10-21 19:35:11 +00:00
|
|
|
|
(defvar w32-quote-process-args) ;; defined in w32proc.c
|
|
|
|
|
|
1997-09-02 23:54:07 +00:00
|
|
|
|
(defun w32-check-shell-configuration ()
|
2008-10-16 15:28:29 +00:00
|
|
|
|
"Check the configuration of shell variables on Windows.
|
1997-04-24 02:58:11 +00:00
|
|
|
|
This function is invoked after loading the init files and processing
|
1997-09-02 23:54:07 +00:00
|
|
|
|
the command line arguments. It issues a warning if the user or site
|
|
|
|
|
has configured the shell with inappropriate settings."
|
1998-04-17 05:03:43 +00:00
|
|
|
|
(interactive)
|
1997-09-02 23:54:07 +00:00
|
|
|
|
(let ((prev-buffer (current-buffer))
|
|
|
|
|
(buffer (get-buffer-create "*Shell Configuration*"))
|
|
|
|
|
(system-shell))
|
|
|
|
|
(set-buffer buffer)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(if (w32-system-shell-p (getenv "ESHELL"))
|
|
|
|
|
(insert (format "Warning! The ESHELL environment variable uses %s.
|
2001-10-29 18:49:16 +00:00
|
|
|
|
You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
|
1997-09-02 23:54:07 +00:00
|
|
|
|
(getenv "ESHELL"))))
|
|
|
|
|
(if (w32-system-shell-p (getenv "SHELL"))
|
|
|
|
|
(insert (format "Warning! The SHELL environment variable uses %s.
|
2001-10-29 18:49:16 +00:00
|
|
|
|
You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
|
1997-09-02 23:54:07 +00:00
|
|
|
|
(getenv "SHELL"))))
|
|
|
|
|
(if (w32-system-shell-p shell-file-name)
|
|
|
|
|
(insert (format "Warning! shell-file-name uses %s.
|
2001-10-29 18:49:16 +00:00
|
|
|
|
You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
|
1997-09-02 23:54:07 +00:00
|
|
|
|
shell-file-name)))
|
|
|
|
|
(if (and (boundp 'explicit-shell-file-name)
|
|
|
|
|
(w32-system-shell-p explicit-shell-file-name))
|
|
|
|
|
(insert (format "Warning! explicit-shell-file-name uses %s.
|
|
|
|
|
You probably want to change it so that it uses cmdproxy.exe instead.\n\n"
|
|
|
|
|
explicit-shell-file-name)))
|
|
|
|
|
(setq system-shell (> (buffer-size) 0))
|
1998-04-17 05:03:43 +00:00
|
|
|
|
|
|
|
|
|
;; Allow user to specify that they really do want to use one of the
|
|
|
|
|
;; "system" shells, despite the drawbacks, but still warn if
|
|
|
|
|
;; shell-command-switch doesn't match.
|
|
|
|
|
(if w32-allow-system-shell
|
|
|
|
|
(erase-buffer))
|
|
|
|
|
|
1997-09-02 23:54:07 +00:00
|
|
|
|
(cond (system-shell
|
|
|
|
|
;; System shells.
|
|
|
|
|
(if (string-equal "-c" shell-command-switch)
|
|
|
|
|
(insert "Warning! shell-command-switch is \"-c\".
|
|
|
|
|
You should set this to \"/c\" when using a system shell.\n\n"))
|
|
|
|
|
(if w32-quote-process-args
|
|
|
|
|
(insert "Warning! w32-quote-process-args is t.
|
|
|
|
|
You should set this to nil when using a system shell.\n\n")))
|
|
|
|
|
;; Non-system shells.
|
|
|
|
|
(t
|
|
|
|
|
(if (string-equal "/c" shell-command-switch)
|
|
|
|
|
(insert "Warning! shell-command-switch is \"/c\".
|
|
|
|
|
You should set this to \"-c\" when using a non-system shell.\n\n"))
|
|
|
|
|
(if (not w32-quote-process-args)
|
|
|
|
|
(insert "Warning! w32-quote-process-args is nil.
|
|
|
|
|
You should set this to t when using a non-system shell.\n\n"))))
|
|
|
|
|
(if (> (buffer-size) 0)
|
|
|
|
|
(display-buffer buffer)
|
|
|
|
|
(kill-buffer buffer))
|
|
|
|
|
(set-buffer prev-buffer)))
|
|
|
|
|
|
|
|
|
|
(add-hook 'after-init-hook 'w32-check-shell-configuration)
|
|
|
|
|
|
2018-09-07 14:41:21 +00:00
|
|
|
|
;;;; Coding-systems, locales, etc.
|
|
|
|
|
|
2009-08-29 14:52:25 +00:00
|
|
|
|
;; Override setting chosen at startup.
|
2016-05-26 02:58:18 +00:00
|
|
|
|
(defun w32-set-default-process-coding-system ()
|
1999-03-25 22:49:36 +00:00
|
|
|
|
;; Most programs on Windows will accept Unix line endings on input
|
|
|
|
|
;; (and some programs ported from Unix require it) but most will
|
|
|
|
|
;; produce DOS line endings on output.
|
|
|
|
|
(setq default-process-coding-system
|
2018-01-25 18:35:13 +00:00
|
|
|
|
'(undecided-dos . undecided-unix))
|
2007-07-15 00:59:43 +00:00
|
|
|
|
;; Make cmdproxy default to using DOS line endings for input,
|
|
|
|
|
;; because some Windows programs (including command.com) require it.
|
|
|
|
|
(add-to-list 'process-coding-system-alist
|
2018-01-25 18:35:13 +00:00
|
|
|
|
'("[cC][mM][dD][pP][rR][oO][xX][yY]"
|
|
|
|
|
. (undecided-dos . undecided-dos)))
|
2007-07-15 00:59:43 +00:00
|
|
|
|
;; plink needs DOS input when entering the password.
|
|
|
|
|
(add-to-list 'process-coding-system-alist
|
2018-01-25 18:35:13 +00:00
|
|
|
|
'("[pP][lL][iI][nN][kK]"
|
|
|
|
|
. (undecided-dos . undecided-dos))))
|
2016-05-26 02:58:18 +00:00
|
|
|
|
(define-obsolete-function-alias 'set-default-process-coding-system
|
2016-11-18 06:50:40 +00:00
|
|
|
|
#'w32-set-default-process-coding-system "26.1")
|
2016-05-26 02:58:18 +00:00
|
|
|
|
(add-hook 'before-init-hook #'w32-set-default-process-coding-system)
|
1999-03-25 22:49:36 +00:00
|
|
|
|
|
1998-04-17 05:03:43 +00:00
|
|
|
|
|
2012-02-28 08:17:21 +00:00
|
|
|
|
;;; Basic support functions for managing Emacs's locale setting
|
1998-04-17 05:03:43 +00:00
|
|
|
|
|
|
|
|
|
(defvar w32-valid-locales nil
|
|
|
|
|
"List of locale ids known to be supported.")
|
|
|
|
|
|
2009-08-29 14:52:25 +00:00
|
|
|
|
;; This is the brute-force version; an efficient version is now
|
|
|
|
|
;; built-in though.
|
1998-04-17 05:03:43 +00:00
|
|
|
|
(if (not (fboundp 'w32-get-valid-locale-ids))
|
|
|
|
|
(defun w32-get-valid-locale-ids ()
|
|
|
|
|
"Return list of all valid Windows locale ids."
|
|
|
|
|
(let ((i 65535)
|
|
|
|
|
locales)
|
|
|
|
|
(while (> i 0)
|
|
|
|
|
(if (w32-get-locale-info i)
|
|
|
|
|
(setq locales (cons i locales)))
|
|
|
|
|
(setq i (1- i)))
|
|
|
|
|
locales)))
|
|
|
|
|
|
|
|
|
|
(defun w32-list-locales ()
|
|
|
|
|
"List the name and id of all locales supported by Windows."
|
|
|
|
|
(interactive)
|
2008-10-17 11:11:34 +00:00
|
|
|
|
(when (null w32-valid-locales)
|
|
|
|
|
(setq w32-valid-locales (sort (w32-get-valid-locale-ids) #'<)))
|
2008-12-03 16:36:59 +00:00
|
|
|
|
(with-output-to-temp-buffer "*Supported Locales*"
|
|
|
|
|
(princ "LCID\tAbbrev\tFull name\n\n")
|
2008-12-11 09:40:44 +00:00
|
|
|
|
(dolist (locale w32-valid-locales)
|
|
|
|
|
(princ (format "%d\t%s\t%s\n"
|
|
|
|
|
locale
|
|
|
|
|
(w32-get-locale-info locale)
|
|
|
|
|
(w32-get-locale-info locale t))))))
|
1998-04-17 05:03:43 +00:00
|
|
|
|
|
2009-08-29 14:52:25 +00:00
|
|
|
|
;; The variable source-directory is used to initialize Info-directory-list.
|
|
|
|
|
;; However, the common case is that Emacs is being used from a binary
|
|
|
|
|
;; distribution, and the value of source-directory is meaningless in that
|
|
|
|
|
;; case. Even worse, source-directory can refer to a directory on a drive
|
|
|
|
|
;; on the build machine that happens to be a removable drive on the user's
|
|
|
|
|
;; machine. When this happens, Emacs tries to access the removable drive
|
|
|
|
|
;; and produces the abort/retry/ignore dialog. Since we do not use
|
|
|
|
|
;; source-directory, set it to something that is a reasonable approximation
|
|
|
|
|
;; on the user's machine.
|
|
|
|
|
|
|
|
|
|
;;(add-hook 'before-init-hook
|
|
|
|
|
;; (lambda ()
|
|
|
|
|
;; (setq source-directory (file-name-as-directory
|
|
|
|
|
;; (expand-file-name ".." exec-directory)))))
|
1998-10-30 03:56:46 +00:00
|
|
|
|
|
2016-05-26 02:58:18 +00:00
|
|
|
|
(defun w32-set-system-coding-system (coding-system)
|
2004-05-28 19:14:50 +00:00
|
|
|
|
"Set the coding system used by the Windows system to CODING-SYSTEM.
|
1999-03-17 22:06:23 +00:00
|
|
|
|
This is used for things like passing font names with non-ASCII
|
2005-07-21 10:51:10 +00:00
|
|
|
|
characters in them to the system. For a list of possible values of
|
2001-11-20 22:14:20 +00:00
|
|
|
|
CODING-SYSTEM, use \\[list-coding-systems].
|
|
|
|
|
|
|
|
|
|
This function is provided for backward compatibility, since
|
2004-05-28 19:14:50 +00:00
|
|
|
|
`w32-system-coding-system' is now an alias for `locale-coding-system'."
|
1999-03-17 22:06:23 +00:00
|
|
|
|
(interactive
|
2001-11-20 22:14:20 +00:00
|
|
|
|
(list (let ((default locale-coding-system))
|
1999-03-17 22:06:23 +00:00
|
|
|
|
(read-coding-system
|
Use `format-prompt' when prompting with default values
* lisp/woman.el (woman-file-name):
* lisp/wid-edit.el (widget-file-prompt-value)
(widget-coding-system-prompt-value):
* lisp/w32-fns.el (w32-set-system-coding-system):
* lisp/vc/vc.el (vc-print-root-log):
* lisp/vc/vc-annotate.el (vc-annotate):
* lisp/vc/emerge.el (emerge-read-file-name):
* lisp/vc/ediff.el (ediff-directories)
(ediff-directory-revisions, ediff-directories3)
(ediff-merge-directories, )
(ediff-merge-directories-with-ancestor)
(ediff-merge-directory-revisions)
(ediff-merge-directory-revisions-with-ancestor)
(ediff-merge-revisions, ediff-merge-revisions-with-ancestor)
(ediff-revision):
* lisp/vc/ediff-util.el (ediff-toggle-regexp-match):
* lisp/vc/ediff-mult.el (ediff-filegroup-action):
* lisp/vc/add-log.el (prompt-for-change-log-name):
* lisp/textmodes/table.el (table-insert-row-column)
(table-span-cell, table-split-cell-horizontally)
(table-split-cell, table-justify, table-generate-source)
(table-insert-sequence, table-capture)
(table--read-from-minibuffer, table--query-justification):
* lisp/textmodes/sgml-mode.el (sgml-tag, sgml-tag-help):
* lisp/textmodes/reftex-ref.el (reftex-goto-label):
* lisp/textmodes/refer.el (refer-get-bib-files):
* lisp/textmodes/css-mode.el (css-lookup-symbol):
* lisp/term.el (serial-read-name, serial-read-speed):
* lisp/speedbar.el (speedbar-change-initial-expansion-list):
* lisp/simple.el (previous-matching-history-element)
(set-variable):
* lisp/ses.el (ses-read-cell, ses-set-column-width):
* lisp/replace.el (query-replace-read-from)
(occur-read-primary-args):
* lisp/rect.el (string-rectangle, string-insert-rectangle):
* lisp/progmodes/tcl.el (tcl-help-on-word):
* lisp/progmodes/sh-script.el (sh-set-shell):
* lisp/progmodes/python.el (python-eldoc-at-point):
* lisp/progmodes/octave.el (octave-completing-read)
(octave-update-function-file-comment, octave-insert-defun):
* lisp/progmodes/inf-lisp.el (lisp-symprompt):
* lisp/progmodes/cperl-mode.el (cperl-info-on-command)
(cperl-perldoc):
* lisp/progmodes/compile.el (compilation-find-file):
* lisp/net/rcirc.el (rcirc-prompt-for-encryption):
* lisp/net/eww.el (eww):
* lisp/net/browse-url.el (browse-url-with-browser-kind):
* lisp/man.el (man):
* lisp/mail/sendmail.el (sendmail-query-user-about-smtp):
* lisp/mail/mailalias.el (build-mail-aliases):
* lisp/mail/mailabbrev.el (merge-mail-abbrevs)
(rebuild-mail-abbrevs):
* lisp/locate.el (locate-prompt-for-search-string):
* lisp/isearch.el (isearch-occur):
* lisp/international/ogonek.el (ogonek-read-encoding)
(ogonek-read-prefix):
* lisp/international/mule.el (read-buffer-file-coding-system)
(set-terminal-coding-system, set-keyboard-coding-system)
(set-next-selection-coding-system, recode-region):
* lisp/international/mule-cmds.el ()
(universal-coding-system-argument, search-unencodable-char)
(select-safe-coding-system-interactively):
* lisp/info.el (Info-search, Info-search-backward, Info-menu):
* lisp/info-look.el (info-lookup-interactive-arguments):
* lisp/imenu.el (imenu--completion-buffer):
* lisp/ibuf-ext.el (mode, used-mode, ibuffer-mark-by-mode):
* lisp/hi-lock.el (hi-lock-unface-buffer)
(hi-lock-read-face-name):
* lisp/help.el (view-emacs-news, where-is):
* lisp/help-fns.el (describe-variable, describe-symbol)
(describe-keymap):
* lisp/gnus/mm-decode.el (mm-save-part):
* lisp/gnus/gnus-sum.el (gnus-summary-browse-url):
* lisp/gnus/gnus-group.el (gnus-group--read-bug-ids)
(gnus-group-set-current-level):
* lisp/frame.el (make-frame-on-monitor)
(close-display-connection, select-frame-by-name):
* lisp/format.el (format-encode-buffer, format-encode-region):
* lisp/files.el (recode-file-name):
* lisp/files-x.el (read-file-local-variable)
(read-file-local-variable-value, )
(read-file-local-variable-mode):
* lisp/ffap.el (ffap-menu-ask):
* lisp/faces.el (face-read-string):
* lisp/facemenu.el (facemenu-set-charset):
* lisp/erc/erc-dcc.el (erc-dcc-do-GET-command):
* lisp/emulation/edt-mapper.el (edt-mapper):
* lisp/emacs-lisp/trace.el (trace--read-args)
(trace-function-foreground, trace-function-background):
* lisp/emacs-lisp/smie.el (smie-config-set-indent):
* lisp/emacs-lisp/re-builder.el (reb-change-syntax):
* lisp/emacs-lisp/package.el (describe-package):
* lisp/emacs-lisp/find-func.el (read-library-name)
(find-function-read):
* lisp/emacs-lisp/ert.el (ert-read-test-name)
(ert-run-tests-interactively):
* lisp/emacs-lisp/disass.el (disassemble):
* lisp/emacs-lisp/debug.el (debug-on-entry)
(debug-on-variable-change):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-read-regexp):
* lisp/dired-x.el (dired--mark-suffix-interactive-spec):
* lisp/dired-aux.el (dired-diff):
* lisp/cus-edit.el (custom-variable-prompt, customize-mode)
(customize-changed-options):
* lisp/completion.el (interactive-completion-string-reader):
* lisp/calendar/timeclock.el (timeclock-ask-for-project):
* lisp/calc/calcalg3.el (calc-get-fit-variables):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-bin.el (calc-word-size):
* lisp/bookmark.el (bookmark-set-internal):
* lisp/abbrev.el (read-abbrev-file): Use `format-prompt' for
prompting (bug#12443).
2020-09-06 14:56:44 +00:00
|
|
|
|
(format-prompt "Coding system for system calls" default)
|
1999-03-17 22:06:23 +00:00
|
|
|
|
default))))
|
|
|
|
|
(check-coding-system coding-system)
|
2001-11-20 22:14:20 +00:00
|
|
|
|
(setq locale-coding-system coding-system))
|
2016-05-26 02:58:18 +00:00
|
|
|
|
(define-obsolete-function-alias 'set-w32-system-coding-system
|
2016-11-18 06:50:40 +00:00
|
|
|
|
#'w32-set-system-coding-system "26.1")
|
2001-11-20 22:14:20 +00:00
|
|
|
|
|
|
|
|
|
;; locale-coding-system was introduced to do the same thing as
|
|
|
|
|
;; w32-system-coding-system. Use that instead.
|
|
|
|
|
(defvaralias 'w32-system-coding-system 'locale-coding-system)
|
1999-03-17 22:06:23 +00:00
|
|
|
|
|
2009-08-29 14:52:25 +00:00
|
|
|
|
;; Set to a system sound if you want a fancy bell.
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(if (fboundp 'set-message-beep) ; w32fns.c
|
|
|
|
|
(set-message-beep nil))
|
1995-04-12 03:13:20 +00:00
|
|
|
|
|
2013-05-06 07:29:26 +00:00
|
|
|
|
(defvar w32-charset-info-alist) ; w32font.c
|
|
|
|
|
|
2000-11-10 22:05:50 +00:00
|
|
|
|
(defun w32-add-charset-info (xlfd-charset windows-charset codepage)
|
|
|
|
|
"Function to add character sets to display with Windows fonts.
|
|
|
|
|
Creates entries in `w32-charset-info-alist'.
|
|
|
|
|
XLFD-CHARSET is a string which will appear in the XLFD font name to
|
2008-10-16 15:28:29 +00:00
|
|
|
|
identify the character set. WINDOWS-CHARSET is a symbol identifying
|
2005-07-21 10:51:10 +00:00
|
|
|
|
the Windows character set this maps to. For the list of possible
|
|
|
|
|
values, see the documentation for `w32-charset-info-alist'. CODEPAGE
|
2000-11-10 22:05:50 +00:00
|
|
|
|
can be a numeric codepage that Windows uses to display the character
|
|
|
|
|
set, t for Unicode output with no codepage translation or nil for 8
|
|
|
|
|
bit output with no translation."
|
|
|
|
|
(add-to-list 'w32-charset-info-alist
|
2008-10-16 15:28:29 +00:00
|
|
|
|
(cons xlfd-charset (cons windows-charset codepage))))
|
2000-11-10 22:05:50 +00:00
|
|
|
|
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(when (boundp 'w32-charset-info-alist)
|
|
|
|
|
;; The last charset we add becomes the "preferred" charset for the return
|
2018-03-14 01:13:26 +00:00
|
|
|
|
;; value from x-select-font etc, so list the most important charsets last.
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(w32-add-charset-info "iso8859-14" 'w32-charset-ansi 28604)
|
|
|
|
|
(w32-add-charset-info "iso8859-15" 'w32-charset-ansi 28605)
|
2020-03-14 10:00:46 +00:00
|
|
|
|
(w32-add-charset-info "iso8859-16" 'w32-charset-ansi 28606)
|
2017-12-15 02:18:42 +00:00
|
|
|
|
;; The following two are included for pattern matching.
|
|
|
|
|
(w32-add-charset-info "jisx0201" 'w32-charset-shiftjis 932)
|
|
|
|
|
(w32-add-charset-info "jisx0208" 'w32-charset-shiftjis 932)
|
|
|
|
|
(w32-add-charset-info "jisx0201-latin" 'w32-charset-shiftjis 932)
|
|
|
|
|
(w32-add-charset-info "jisx0201-katakana" 'w32-charset-shiftjis 932)
|
2020-03-14 10:00:46 +00:00
|
|
|
|
(w32-add-charset-info "jisx0212" 'w32-charset-shiftjis 932)
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(w32-add-charset-info "ksc5601.1989" 'w32-charset-hangeul 949)
|
2020-03-14 10:00:46 +00:00
|
|
|
|
(w32-add-charset-info "ksx1001" 'w32-charset-hangeul 949)
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(w32-add-charset-info "big5" 'w32-charset-chinesebig5 950)
|
|
|
|
|
(w32-add-charset-info "gb2312.1980" 'w32-charset-gb2312 936)
|
2020-03-14 10:00:46 +00:00
|
|
|
|
(w32-add-charset-info "gbk" 'w32-charset-gb2312 936)
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(w32-add-charset-info "ms-symbol" 'w32-charset-symbol nil)
|
|
|
|
|
(w32-add-charset-info "ms-oem" 'w32-charset-oem 437)
|
|
|
|
|
(w32-add-charset-info "ms-oemlatin" 'w32-charset-oem 850)
|
|
|
|
|
(w32-add-charset-info "iso8859-2" 'w32-charset-easteurope 28592)
|
|
|
|
|
(w32-add-charset-info "iso8859-3" 'w32-charset-turkish 28593)
|
|
|
|
|
(w32-add-charset-info "iso8859-4" 'w32-charset-baltic 28594)
|
2021-02-07 15:52:30 +00:00
|
|
|
|
(w32-add-charset-info "iso8859-5" 'w32-charset-russian 28595)
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(w32-add-charset-info "iso8859-6" 'w32-charset-arabic 28596)
|
|
|
|
|
(w32-add-charset-info "iso8859-7" 'w32-charset-greek 28597)
|
|
|
|
|
(w32-add-charset-info "iso8859-8" 'w32-charset-hebrew 1255)
|
|
|
|
|
(w32-add-charset-info "iso8859-9" 'w32-charset-turkish 1254)
|
|
|
|
|
(w32-add-charset-info "iso8859-13" 'w32-charset-baltic 1257)
|
|
|
|
|
(w32-add-charset-info "koi8-r" 'w32-charset-russian 20866)
|
2020-03-14 10:00:46 +00:00
|
|
|
|
(w32-add-charset-info "microsoft-cp1251" 'w32-charset-russian 1251)
|
|
|
|
|
(w32-add-charset-info "windows-1251" 'w32-charset-russian 1251)
|
2018-08-11 08:15:57 +00:00
|
|
|
|
(w32-add-charset-info "tis620-2533" 'w32-charset-russian 28595)
|
2018-07-28 17:34:57 +00:00
|
|
|
|
(w32-add-charset-info "iso8859-11" 'w32-charset-thai 874)
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(w32-add-charset-info "windows-1258" 'w32-charset-vietnamese 1258)
|
2020-03-14 10:00:46 +00:00
|
|
|
|
(w32-add-charset-info "viscii" 'w32-charset-vietnamese 1258)
|
2017-12-15 02:18:42 +00:00
|
|
|
|
(w32-add-charset-info "ksc5601.1992" 'w32-charset-johab 1361)
|
|
|
|
|
(w32-add-charset-info "mac-roman" 'w32-charset-mac 10000)
|
|
|
|
|
(w32-add-charset-info "iso10646-1" 'w32-charset-default t)
|
|
|
|
|
|
|
|
|
|
;; ;; If Unicode Windows charset is not defined, use ansi fonts.
|
|
|
|
|
;; (w32-add-charset-info "iso10646-1" 'w32-charset-ansi t))
|
|
|
|
|
|
|
|
|
|
;; Preferred names
|
|
|
|
|
(w32-add-charset-info "big5-0" 'w32-charset-chinesebig5 950)
|
|
|
|
|
(w32-add-charset-info "gb2312.1980-0" 'w32-charset-gb2312 936)
|
|
|
|
|
(w32-add-charset-info "jisx0208-sjis" 'w32-charset-shiftjis 932)
|
|
|
|
|
(w32-add-charset-info "ksc5601.1987-0" 'w32-charset-hangeul 949)
|
|
|
|
|
(w32-add-charset-info "tis620-0" 'w32-charset-thai 874)
|
|
|
|
|
(w32-add-charset-info "iso8859-1" 'w32-charset-ansi 1252))
|
2000-03-22 23:01:04 +00:00
|
|
|
|
|
2018-09-07 14:41:21 +00:00
|
|
|
|
;;;; Standard filenames
|
|
|
|
|
|
|
|
|
|
(defun w32-convert-standard-filename (filename)
|
|
|
|
|
"Convert a standard file's name to something suitable for MS-Windows.
|
|
|
|
|
This means to guarantee valid names and perhaps to canonicalize
|
|
|
|
|
certain patterns.
|
|
|
|
|
|
|
|
|
|
This function is called by `convert-standard-filename'.
|
|
|
|
|
|
|
|
|
|
Replace invalid characters and turn Cygwin names into native
|
|
|
|
|
names."
|
|
|
|
|
(save-match-data
|
|
|
|
|
(let ((name
|
|
|
|
|
(if (string-match "\\`/cygdrive/\\([a-zA-Z]\\)/" filename)
|
|
|
|
|
(replace-match "\\1:/" t nil filename)
|
|
|
|
|
(copy-sequence filename)))
|
|
|
|
|
(start 0))
|
|
|
|
|
;; leave ':' if part of drive specifier
|
|
|
|
|
(if (and (> (length name) 1)
|
|
|
|
|
(eq (aref name 1) ?:))
|
|
|
|
|
(setq start 2))
|
|
|
|
|
;; destructively replace invalid filename characters with !
|
|
|
|
|
(while (string-match "[?*:<>|\"\000-\037]" name start)
|
|
|
|
|
(aset name (match-beginning 0) ?!)
|
|
|
|
|
(setq start (match-end 0)))
|
|
|
|
|
name)))
|
|
|
|
|
|
|
|
|
|
;;;; System name and version for emacsbug.el
|
|
|
|
|
|
2022-05-14 13:19:12 +00:00
|
|
|
|
(declare-function w32-version "term/w32-win" ())
|
|
|
|
|
(declare-function w32-read-registry "w32fns.c" (root key name))
|
2019-05-17 03:18:12 +00:00
|
|
|
|
|
2019-05-20 12:34:36 +00:00
|
|
|
|
(defun w32--os-description ()
|
2018-09-07 14:41:21 +00:00
|
|
|
|
"Return a string describing the underlying OS and its version."
|
|
|
|
|
(let* ((w32ver (car (w32-version)))
|
|
|
|
|
(w9x-p (< w32ver 5))
|
|
|
|
|
(key (if w9x-p
|
|
|
|
|
"SOFTWARE/Microsoft/Windows/CurrentVersion"
|
|
|
|
|
"SOFTWARE/Microsoft/Windows NT/CurrentVersion"))
|
|
|
|
|
(os-name (w32-read-registry 'HKLM key "ProductName"))
|
|
|
|
|
(os-version (if w9x-p
|
|
|
|
|
(w32-read-registry 'HKLM key "VersionNumber")
|
|
|
|
|
(let ((vmajor
|
|
|
|
|
(w32-read-registry 'HKLM key
|
|
|
|
|
"CurrentMajorVersionNumber"))
|
|
|
|
|
(vminor
|
|
|
|
|
(w32-read-registry 'HKLM key
|
|
|
|
|
"CurrentMinorVersionNumber")))
|
|
|
|
|
(if (and vmajor vmajor)
|
|
|
|
|
(format "%d.%d" vmajor vminor)
|
|
|
|
|
(w32-read-registry 'HKLM key "CurrentVersion")))))
|
|
|
|
|
(os-csd (w32-read-registry 'HKLM key "CSDVersion"))
|
|
|
|
|
(os-rel (or (w32-read-registry 'HKLM key "ReleaseID")
|
|
|
|
|
(w32-read-registry 'HKLM key "CSDBuildNumber")
|
|
|
|
|
"0")) ; No Release ID before Windows Vista
|
|
|
|
|
(os-build (w32-read-registry 'HKLM key "CurrentBuildNumber"))
|
|
|
|
|
(os-rev (w32-read-registry 'HKLM key "UBR"))
|
|
|
|
|
(os-rev (if os-rev (format "%d" os-rev))))
|
|
|
|
|
(if w9x-p
|
|
|
|
|
(concat
|
|
|
|
|
(if (not (string-match "\\`Microsoft " os-name)) "Microsoft ")
|
|
|
|
|
os-name
|
|
|
|
|
" (v" os-version ")")
|
|
|
|
|
(concat
|
|
|
|
|
(if (not (string-match "\\`Microsoft " os-name)) "Microsoft ")
|
|
|
|
|
os-name ; Windows 7 Enterprise
|
|
|
|
|
" "
|
|
|
|
|
os-csd ; Service Pack 1
|
|
|
|
|
(if (and os-csd (> (length os-csd) 0)) " " "")
|
|
|
|
|
"(v"
|
|
|
|
|
os-version "." os-rel "." os-build (if os-rev (concat "." os-rev))
|
|
|
|
|
")"))))
|
|
|
|
|
|
2005-12-24 12:49:52 +00:00
|
|
|
|
|
|
|
|
|
;;;; Support for build process
|
2011-04-19 13:44:55 +00:00
|
|
|
|
|
2006-12-09 12:38:32 +00:00
|
|
|
|
(defun w32-append-code-lines (orig extra)
|
|
|
|
|
"Append non-empty non-comment lines in the file EXTRA to the file ORIG.
|
|
|
|
|
|
|
|
|
|
This function saves all buffers and kills the Emacs session, without asking
|
|
|
|
|
for any permissions.
|
|
|
|
|
|
|
|
|
|
This is required because the Windows build environment is not required
|
|
|
|
|
to include Sed, which is used by leim/Makefile.in to do the job."
|
2021-01-05 01:57:42 +00:00
|
|
|
|
(with-current-buffer (find-file-noselect orig)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert-file-contents extra)
|
|
|
|
|
(delete-matching-lines "^$\\|^;")
|
|
|
|
|
(save-buffers-kill-emacs t)))
|
2006-12-09 12:38:32 +00:00
|
|
|
|
|
1996-11-19 07:04:01 +00:00
|
|
|
|
;;; w32-fns.el ends here
|