# HG changeset patch # User Dan Nicolaescu # Date 1230527475 0 # Node ID 2935e76b69a811758a4e36c780e8adbd750aed75 # Parent a3ae6efdd65b422794accf85d225c884e145f2a1 (mkdir): New defalias. diff -r a3ae6efdd65b -r 2935e76b69a8 etc/NEWS --- a/etc/NEWS Mon Dec 29 04:53:10 2008 +0000 +++ b/etc/NEWS Mon Dec 29 05:11:15 2008 +0000 @@ -551,6 +551,8 @@ +++ *** 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 -r a3ae6efdd65b -r 2935e76b69a8 lisp/ChangeLog --- a/lisp/ChangeLog Mon Dec 29 04:53:10 2008 +0000 +++ b/lisp/ChangeLog Mon Dec 29 05:11:15 2008 +0000 @@ -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 -r a3ae6efdd65b -r 2935e76b69a8 lisp/subr.el --- a/lisp/subr.el Mon Dec 29 04:53:10 2008 +0000 +++ b/lisp/subr.el Mon Dec 29 05:11:15 2008 +0000 @@ -1077,6 +1077,7 @@ (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)