Merge from origin/emacs-28
c0815aca18
Fix typos in in 'reset-language-environment'ea65de7577
eshell-complete-parse-arguments: don't use string-match on...
This commit is contained in:
commit
036e88ce2f
2 changed files with 4 additions and 4 deletions
|
@ -380,7 +380,7 @@ to writing a completion function."
|
|||
(setq val (number-to-string val)))
|
||||
;; expand .../ etc that only eshell understands to
|
||||
;; standard ../../
|
||||
((string-match "\\.\\.\\.+/" val)
|
||||
((and (stringp val)) (string-match "\\.\\.\\.+/" val)
|
||||
(setq val (eshell-expand-multiple-dots val))))
|
||||
(or val "")))
|
||||
args)
|
||||
|
|
|
@ -1874,7 +1874,7 @@ The default status is as follows:
|
|||
(set-default-coding-systems nil)
|
||||
(setq default-sendmail-coding-system 'utf-8)
|
||||
(setq default-file-name-coding-system (if (memq system-type
|
||||
'(window-nt ms-dos))
|
||||
'(windows-nt ms-dos))
|
||||
'iso-latin-1-unix
|
||||
'utf-8-unix))
|
||||
;; Preserve eol-type from existing default-process-coding-systems.
|
||||
|
@ -1893,9 +1893,9 @@ The default status is as follows:
|
|||
(condition-case nil
|
||||
(coding-system-change-text-conversion
|
||||
(cdr default-process-coding-system)
|
||||
(if (memq system-type '(window-nt ms-dos)) 'iso-latin-1 'utf-8))
|
||||
(if (memq system-type '(windows-nt ms-dos)) 'iso-latin-1 'utf-8))
|
||||
(coding-system-error
|
||||
(if (memq system-type '(window-nt ms-dos)) 'iso-latin-1 'utf-8)))))
|
||||
(if (memq system-type '(windows-nt ms-dos)) 'iso-latin-1 'utf-8)))))
|
||||
(setq default-process-coding-system
|
||||
(cons output-coding input-coding)))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue