diff options
| author | Dan Nicolaescu | 2008-12-29 05:11:15 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-12-29 05:11:15 +0000 |
| commit | 53374291b7f24cdbd7653c447984c1dbd83fdebc (patch) | |
| tree | c68e993da7a932945e37aff22f0380607d1b0d3b | |
| parent | 31e0750eac2513ac05a74283fe56ce883991246c (diff) | |
| download | emacs-53374291b7f24cdbd7653c447984c1dbd83fdebc.tar.gz emacs-53374291b7f24cdbd7653c447984c1dbd83fdebc.zip | |
(mkdir): New defalias.
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/subr.el | 1 |
3 files changed, 7 insertions, 0 deletions
| @@ -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 |
| 553 | kill into the password. | 553 | kill 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 @@ | |||
| 1 | 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * subr.el (mkdir): New defalias. | ||
| 4 | |||
| 1 | 2008-12-29 Juri Linkov <juri@jurta.org> | 5 | 2008-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) |