]> git.eshelyaron.com Git - emacs.git/commitdiff
* subr.el (chmod): New defalias for set-file-modes.
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 24 Dec 2008 18:27:30 +0000 (18:27 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 24 Dec 2008 18:27:30 +0000 (18:27 +0000)
* files.texi (Misc File Ops): Mention chmod as an alias for
set-file-modes.

doc/emacs/ChangeLog
doc/emacs/files.texi
etc/NEWS
lisp/ChangeLog
lisp/subr.el

index 771161c0e013e292c41d037b5766b627ca7693d3..2d3f82ac93df6253e602e3cac4f23b7f4df38b9f 100644 (file)
@@ -1,3 +1,8 @@
+2008-12-24  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * files.texi (Misc File Ops): Mention chmod as an alias for
+       set-file-modes.
+
 2008-12-24  Martin Rudalics  <rudalics@gmx.at>
 
        * help.texi (Help): Fix typos and reword.
index 3c338fcdfe6df016b8d7ed059367b50af32579d9..1632ae5f01e79860a315c92e507a270f1916d38c 100644 (file)
@@ -1588,7 +1588,8 @@ read, written to, or executed, and by whom.  This command reads file
 modes using the same symbolic or octal format accepted by the
 @command{chmod} command; for instance, @samp{u+x} means to add
 execution permission for the user who owns the file.  It has no effect
-on operating systems that do not support file modes.
+on operating systems that do not support file modes.  @code{chmod} is a
+convenience alias for this function.
 
 @node Compressed Files
 @section Accessing Compressed Files
index 333cadecb527f162c326dd7bd60e0aba3f4c3b51..1e1abc2ef339baeb0a37576df499d8a26fb1cdb6 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -542,7 +542,8 @@ matches a regexp.
 +++
 *** The new command `set-file-modes' allows to set file's mode bits.
 The mode bits can be specified in symbolic notation, like with GNU
-Coreutils, in addition to an octal number.
+Coreutils, in addition to an octal number.  `chmod' is a new
+convenience alias for this function.
 
 *** `next-error-recenter' specifies how next-error should recenter the
 visited source file.  Its value can be a number (for example, 0 for
index b98edf23e152c2a49e5986466025ba7419aad0a5..0a6627eaec615d68a271c0dd558b223f9d8a618e 100644 (file)
@@ -1,3 +1,7 @@
+2008-12-24  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * subr.el (chmod): New defalias for set-file-modes.
+
 2008-12-23  Juri Linkov  <juri@jurta.org>
 
        * isearch.el (isearch-filter-predicate, isearch-search): Replace
index 67284c8753b864085b805dcb3c2d6d0e33b578df..a7027b44fdad3d995867dbede63c85b2de49898a 100644 (file)
@@ -1076,6 +1076,7 @@ to reread, so it now uses nil to mean `no event', instead of -1."
 (defalias 'search-backward-regexp (symbol-function 're-search-backward))
 (defalias 'int-to-string 'number-to-string)
 (defalias 'store-match-data 'set-match-data)
+(defalias 'chmod 'set-file-modes)
 ;; These are the XEmacs names:
 (defalias 'point-at-eol 'line-end-position)
 (defalias 'point-at-bol 'line-beginning-position)