aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2008-12-29 05:11:15 +0000
committerDan Nicolaescu2008-12-29 05:11:15 +0000
commit53374291b7f24cdbd7653c447984c1dbd83fdebc (patch)
treec68e993da7a932945e37aff22f0380607d1b0d3b
parent31e0750eac2513ac05a74283fe56ce883991246c (diff)
downloademacs-53374291b7f24cdbd7653c447984c1dbd83fdebc.tar.gz
emacs-53374291b7f24cdbd7653c447984c1dbd83fdebc.zip
(mkdir): New defalias.
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el1
3 files changed, 7 insertions, 0 deletions
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.
551+++ 551+++
552*** When typing in a password in the echo area, C-y yanks the current 552*** When typing in a password in the echo area, C-y yanks the current
553kill into the password. 553kill into the password.
554
555*** `mkdir' is a new convenience alias for `make-directory'.
554 556
555* New Modes and Packages in Emacs 23.1 557* New Modes and Packages in Emacs 23.1
556 558
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6e93991542d..a388847b6b5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * subr.el (mkdir): New defalias.
4
12008-12-29 Juri Linkov <juri@jurta.org> 52008-12-29 Juri Linkov <juri@jurta.org>
2 6
3 * proced.el (proced-mode-map): Bind " " to next-line instead of the 7 * 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."
1077(defalias 'int-to-string 'number-to-string) 1077(defalias 'int-to-string 'number-to-string)
1078(defalias 'store-match-data 'set-match-data) 1078(defalias 'store-match-data 'set-match-data)
1079(defalias 'chmod 'set-file-modes) 1079(defalias 'chmod 'set-file-modes)
1080(defalias 'mkdir 'make-directory)
1080;; These are the XEmacs names: 1081;; These are the XEmacs names:
1081(defalias 'point-at-eol 'line-end-position) 1082(defalias 'point-at-eol 'line-end-position)
1082(defalias 'point-at-bol 'line-beginning-position) 1083(defalias 'point-at-bol 'line-beginning-position)