From 53374291b7f24cdbd7653c447984c1dbd83fdebc Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Mon, 29 Dec 2008 05:11:15 +0000 Subject: [PATCH] (mkdir): New defalias. --- etc/NEWS | 2 ++ lisp/ChangeLog | 4 ++++ lisp/subr.el | 1 + 3 files changed, 7 insertions(+) diff --git a/etc/NEWS b/etc/NEWS index 50a58f8e2fc..1865495e09d 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -551,6 +551,8 @@ top line, -1 for bottom line), or nil for no recentering. +++ *** When typing in a password in the echo area, C-y yanks the current kill into the password. + +*** `mkdir' is a new convenience alias for `make-directory'. * New Modes and Packages in Emacs 23.1 diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6e93991542d..a388847b6b5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2008-12-29 Dan Nicolaescu + + * subr.el (mkdir): New defalias. + 2008-12-29 Juri Linkov * proced.el (proced-mode-map): Bind " " to next-line instead of the diff --git a/lisp/subr.el b/lisp/subr.el index 7c8f844164f..0e5f0194ce4 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -1077,6 +1077,7 @@ to reread, so it now uses nil to mean `no event', instead of -1." (defalias 'int-to-string 'number-to-string) (defalias 'store-match-data 'set-match-data) (defalias 'chmod 'set-file-modes) +(defalias 'mkdir 'make-directory) ;; These are the XEmacs names: (defalias 'point-at-eol 'line-end-position) (defalias 'point-at-bol 'line-beginning-position) -- 2.39.2