changeset 100751:2935e76b69a8

(mkdir): New defalias.
author Dan Nicolaescu <dann@ics.uci.edu>
date Mon, 29 Dec 2008 05:11:15 +0000
parents a3ae6efdd65b
children 3bd2bab6d80f
files etc/NEWS lisp/ChangeLog lisp/subr.el
diffstat 3 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
 
--- 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  <dann@ics.uci.edu>
+
+	* subr.el (mkdir): New defalias.
+
 2008-12-29  Juri Linkov  <juri@jurta.org>
 
 	* proced.el (proced-mode-map): Bind " " to next-line instead of the
--- 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)