emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master ac9a931 2/2: * lisp/files.el: Fix recent typo.


From: Glenn Morris
Subject: [Emacs-diffs] master ac9a931 2/2: * lisp/files.el: Fix recent typo.
Date: Fri, 04 Mar 2016 18:36:32 +0000

branch: master
commit ac9a931d595dd83ebac61c6c9cf7388985fee277
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    * lisp/files.el: Fix recent typo.
---
 lisp/files.el |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/lisp/files.el b/lisp/files.el
index c892ab4..9b045a8 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -7098,44 +7098,44 @@ symbolic link, or nil."
 This is either a string or a number.  If a string value cannot be
 looked up, a numeric value, either an integer or a float, is
 returned."
-  (ntf 2 attributes))
+  (nth 2 attributes))
 
 (defsubst file-attribute-group-id (attributes)
   "The GID field in ATTRIBUTES returned by `file-attribute'.
 This is either a string or a number.  If a string value cannot be
 looked up, a numeric value, either an integer or a float, is
 returned."
-  (ntf 3 attributes))
+  (nth 3 attributes))
 
 (defsubst file-attribute-access-time (attributes)
   "The last access time in ATTRIBUTES returned by `file-attribute'.
 This a list of integers (HIGH LOW USEC PSEC) in the same style
 as (current-time)."
-  (ntf 4 attributes))
+  (nth 4 attributes))
 
 (defsubst file-attribute-modification-time (attributes)
   "The modification time in ATTRIBUTES returned by `file-attribute'.
 This is the time of the last change to the file's contents, and
 is a list of integers (HIGH LOW USEC PSEC) in the same style
 as (current-time)."
-  (ntf 5 attributes))
+  (nth 5 attributes))
 
 (defsubst file-attribute-status-change-time (attributes)
   "The status modification time in ATTRIBUTES returned by `file-attribute'.
 This is the time of last change to the file's attributes: owner
 and group, access mode bits, etc, and is a list of integers (HIGH
 LOW USEC PSEC) in the same style as (current-time)."
-  (ntf 6 attributes))
+  (nth 6 attributes))
 
 (defsubst file-attribute-size (attributes)
   "The size (in bytes) in ATTRIBUTES returned by `file-attribute'.
 This is a floating point number if the size is too large for an integer."
-  (ntf 7 attributes))
+  (nth 7 attributes))
 
 (defsubst file-attribute-modes (attributes)
   "The file modes in ATTRIBUTES returned by `file-attribute'.
 This is a string of ten letters or dashes as in ls -l."
-  (ntf 8 attributes))
+  (nth 8 attributes))
 
 (defsubst file-attribute-inode-number (attributes)
   "The inode number in ATTRIBUTES returned by `file-attribute'.
@@ -7144,7 +7144,7 @@ the form (HIGH . LOW): first the high bits, then the low 
16 bits.
 If even HIGH is too large for an Emacs integer, this is instead
 of the form (HIGH MIDDLE . LOW): first the high bits, then the
 middle 24 bits, and finally the low 16 bits."
-  (ntf 10 attributes))
+  (nth 10 attributes))
 
 (defsubst file-attribute-device-number (attributes)
   "The file system device number in ATTRIBUTES returned by `file-attribute'.
@@ -7153,7 +7153,7 @@ the form (HIGH . LOW): first the high bits, then the low 
16 bits.
 If even HIGH is too large for an Emacs integer, this is instead
 of the form (HIGH MIDDLE . LOW): first the high bits, then the
 middle 24 bits, and finally the low 16 bits."
-  (ntf 11 attributes))
+  (nth 11 attributes))
 
 
 (define-key ctl-x-map "\C-f" 'find-file)



reply via email to

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