emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs doc/emacs/ChangeLog doc/emacs/files.texi ...


From: Dan Nicolaescu
Subject: [Emacs-diffs] emacs doc/emacs/ChangeLog doc/emacs/files.texi ...
Date: Wed, 24 Dec 2008 18:27:36 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Dan Nicolaescu <dann>   08/12/24 18:27:35

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

Log message:
        * subr.el (chmod): New defalias for set-file-modes.
        
        * files.texi (Misc File Ops): Mention chmod as an alias for
        set-file-modes.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/emacs/ChangeLog?cvsroot=emacs&r1=1.259&r2=1.260
http://cvs.savannah.gnu.org/viewcvs/emacs/doc/emacs/files.texi?cvsroot=emacs&r1=1.51&r2=1.52
http://cvs.savannah.gnu.org/viewcvs/emacs/etc/NEWS?cvsroot=emacs&r1=1.1960&r2=1.1961
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.14985&r2=1.14986
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/subr.el?cvsroot=emacs&r1=1.624&r2=1.625

Patches:
Index: doc/emacs/ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/doc/emacs/ChangeLog,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -b -r1.259 -r1.260
--- doc/emacs/ChangeLog 24 Dec 2008 18:01:06 -0000      1.259
+++ doc/emacs/ChangeLog 24 Dec 2008 18:27:30 -0000      1.260
@@ -1,3 +1,8 @@
+2008-12-24  Dan Nicolaescu  <address@hidden>
+
+       * files.texi (Misc File Ops): Mention chmod as an alias for
+       set-file-modes.
+
 2008-12-24  Martin Rudalics  <address@hidden>
 
        * help.texi (Help): Fix typos and reword.

Index: doc/emacs/files.texi
===================================================================
RCS file: /cvsroot/emacs/emacs/doc/emacs/files.texi,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -b -r1.51 -r1.52
--- doc/emacs/files.texi        26 Nov 2008 15:32:49 -0000      1.51
+++ doc/emacs/files.texi        24 Dec 2008 18:27:30 -0000      1.52
@@ -1588,7 +1588,8 @@
 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: etc/NEWS
===================================================================
RCS file: /cvsroot/emacs/emacs/etc/NEWS,v
retrieving revision 1.1960
retrieving revision 1.1961
diff -u -b -r1.1960 -r1.1961
--- etc/NEWS    22 Dec 2008 19:58:55 -0000      1.1960
+++ etc/NEWS    24 Dec 2008 18:27:31 -0000      1.1961
@@ -542,7 +542,8 @@
 +++
 *** 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: lisp/ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.14985
retrieving revision 1.14986
diff -u -b -r1.14985 -r1.14986
--- lisp/ChangeLog      23 Dec 2008 21:03:09 -0000      1.14985
+++ lisp/ChangeLog      24 Dec 2008 18:27:32 -0000      1.14986
@@ -1,3 +1,7 @@
+2008-12-24  Dan Nicolaescu  <address@hidden>
+
+       * subr.el (chmod): New defalias for set-file-modes.
+
 2008-12-23  Juri Linkov  <address@hidden>
 
        * isearch.el (isearch-filter-predicate, isearch-search): Replace

Index: lisp/subr.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/subr.el,v
retrieving revision 1.624
retrieving revision 1.625
diff -u -b -r1.624 -r1.625
--- lisp/subr.el        13 Dec 2008 04:12:47 -0000      1.624
+++ lisp/subr.el        24 Dec 2008 18:27:35 -0000      1.625
@@ -1076,6 +1076,7 @@
 (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)




reply via email to

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