X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=lisp%2Fwinnt.el;h=9ce0750874e014d793fa3de533fb7859d5728824;hb=713c1775c3350729ae7a9bb864015ed7136cd2d5;hp=b0898a90a7287ed383d9d3d8bd63e495043c7a9f;hpb=2e3e3f9ee27fec50f45c282d71eaddf7c673bc56;p=chise%2Fxemacs-chise.git diff --git a/lisp/winnt.el b/lisp/winnt.el index b0898a9..9ce0750 100644 --- a/lisp/winnt.el +++ b/lisp/winnt.el @@ -76,7 +76,7 @@ before calling this function. You can redefine this for customization. See also `auto-save-file-name-p'." (let ((name (original-make-auto-save-file-name)) (start 0)) - ;; destructively replace occurences of * or ? with $ + ;; destructively replace occurrences of * or ? with $ (while (string-match "[?*]" name start) (aset name (match-beginning 0) ?$) (setq start (1+ (match-end 0)))) @@ -88,7 +88,7 @@ See also `auto-save-file-name-p'." (defun nt-quote-args-verbatim (args) "Copy ARG list verbatim, separating each arg with space." - (mapconcat 'identity args " ")) + (mapconcat #'identity args " ")) (defun nt-quote-args-prefix-quote (prefix args) (mapconcat (lambda (str)