emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs etc/NEWS lisp/ChangeLog lisp/subr.el


From: Dan Nicolaescu
Subject: [Emacs-diffs] emacs etc/NEWS lisp/ChangeLog lisp/subr.el
Date: Mon, 29 Dec 2008 05:11:21 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   08/12/29 05:11:20

Modified files:
        etc            : NEWS 
        lisp           : ChangeLog subr.el 

Log message:
        (mkdir): New defalias.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/etc/NEWS?cvsroot=emacs&r1=1.1964&r2=1.1965
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.15004&r2=1.15005
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/subr.el?cvsroot=emacs&r1=1.626&r2=1.627

Patches:
Index: etc/NEWS
===================================================================
RCS file: /cvsroot/emacs/emacs/etc/NEWS,v
retrieving revision 1.1964
retrieving revision 1.1965
diff -u -b -r1.1964 -r1.1965
--- etc/NEWS    28 Dec 2008 23:52:15 -0000      1.1964
+++ etc/NEWS    29 Dec 2008 05:11:15 -0000      1.1965
@@ -552,6 +552,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
 
 ** FIXME add details of new packages imported from lisp/gnus.

Index: lisp/ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.15004
retrieving revision 1.15005
diff -u -b -r1.15004 -r1.15005
--- lisp/ChangeLog      29 Dec 2008 00:12:12 -0000      1.15004
+++ lisp/ChangeLog      29 Dec 2008 05:11:16 -0000      1.15005
@@ -1,3 +1,7 @@
+2008-12-29  Dan Nicolaescu  <address@hidden>
+
+       * subr.el (mkdir): New defalias.
+
 2008-12-29  Juri Linkov  <address@hidden>
 
        * proced.el (proced-mode-map): Bind " " to next-line instead of the

Index: lisp/subr.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/subr.el,v
retrieving revision 1.626
retrieving revision 1.627
diff -u -b -r1.626 -r1.627
--- lisp/subr.el        26 Dec 2008 16:49:33 -0000      1.626
+++ lisp/subr.el        29 Dec 2008 05:11:19 -0000      1.627
@@ -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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]