diff options
| author | Glenn Morris | 2016-03-04 13:36:12 -0500 |
|---|---|---|
| committer | Glenn Morris | 2016-03-04 13:36:12 -0500 |
| commit | ac9a931d595dd83ebac61c6c9cf7388985fee277 (patch) | |
| tree | 811124ea1e3cbc8a208be7a581cfeef230e0b853 | |
| parent | 0cfdf1e83df2e73a80d7a4909b68fb1aa907c509 (diff) | |
| download | emacs-ac9a931d595dd83ebac61c6c9cf7388985fee277.tar.gz emacs-ac9a931d595dd83ebac61c6c9cf7388985fee277.zip | |
* lisp/files.el: Fix recent typo.
| -rw-r--r-- | lisp/files.el | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/files.el b/lisp/files.el index c892ab4e219..9b045a8b6e8 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -7098,44 +7098,44 @@ symbolic link, or nil." | |||
| 7098 | This is either a string or a number. If a string value cannot be | 7098 | This is either a string or a number. If a string value cannot be |
| 7099 | looked up, a numeric value, either an integer or a float, is | 7099 | looked up, a numeric value, either an integer or a float, is |
| 7100 | returned." | 7100 | returned." |
| 7101 | (ntf 2 attributes)) | 7101 | (nth 2 attributes)) |
| 7102 | 7102 | ||
| 7103 | (defsubst file-attribute-group-id (attributes) | 7103 | (defsubst file-attribute-group-id (attributes) |
| 7104 | "The GID field in ATTRIBUTES returned by `file-attribute'. | 7104 | "The GID field in ATTRIBUTES returned by `file-attribute'. |
| 7105 | This is either a string or a number. If a string value cannot be | 7105 | This is either a string or a number. If a string value cannot be |
| 7106 | looked up, a numeric value, either an integer or a float, is | 7106 | looked up, a numeric value, either an integer or a float, is |
| 7107 | returned." | 7107 | returned." |
| 7108 | (ntf 3 attributes)) | 7108 | (nth 3 attributes)) |
| 7109 | 7109 | ||
| 7110 | (defsubst file-attribute-access-time (attributes) | 7110 | (defsubst file-attribute-access-time (attributes) |
| 7111 | "The last access time in ATTRIBUTES returned by `file-attribute'. | 7111 | "The last access time in ATTRIBUTES returned by `file-attribute'. |
| 7112 | This a list of integers (HIGH LOW USEC PSEC) in the same style | 7112 | This a list of integers (HIGH LOW USEC PSEC) in the same style |
| 7113 | as (current-time)." | 7113 | as (current-time)." |
| 7114 | (ntf 4 attributes)) | 7114 | (nth 4 attributes)) |
| 7115 | 7115 | ||
| 7116 | (defsubst file-attribute-modification-time (attributes) | 7116 | (defsubst file-attribute-modification-time (attributes) |
| 7117 | "The modification time in ATTRIBUTES returned by `file-attribute'. | 7117 | "The modification time in ATTRIBUTES returned by `file-attribute'. |
| 7118 | This is the time of the last change to the file's contents, and | 7118 | This is the time of the last change to the file's contents, and |
| 7119 | is a list of integers (HIGH LOW USEC PSEC) in the same style | 7119 | is a list of integers (HIGH LOW USEC PSEC) in the same style |
| 7120 | as (current-time)." | 7120 | as (current-time)." |
| 7121 | (ntf 5 attributes)) | 7121 | (nth 5 attributes)) |
| 7122 | 7122 | ||
| 7123 | (defsubst file-attribute-status-change-time (attributes) | 7123 | (defsubst file-attribute-status-change-time (attributes) |
| 7124 | "The status modification time in ATTRIBUTES returned by `file-attribute'. | 7124 | "The status modification time in ATTRIBUTES returned by `file-attribute'. |
| 7125 | This is the time of last change to the file's attributes: owner | 7125 | This is the time of last change to the file's attributes: owner |
| 7126 | and group, access mode bits, etc, and is a list of integers (HIGH | 7126 | and group, access mode bits, etc, and is a list of integers (HIGH |
| 7127 | LOW USEC PSEC) in the same style as (current-time)." | 7127 | LOW USEC PSEC) in the same style as (current-time)." |
| 7128 | (ntf 6 attributes)) | 7128 | (nth 6 attributes)) |
| 7129 | 7129 | ||
| 7130 | (defsubst file-attribute-size (attributes) | 7130 | (defsubst file-attribute-size (attributes) |
| 7131 | "The size (in bytes) in ATTRIBUTES returned by `file-attribute'. | 7131 | "The size (in bytes) in ATTRIBUTES returned by `file-attribute'. |
| 7132 | This is a floating point number if the size is too large for an integer." | 7132 | This is a floating point number if the size is too large for an integer." |
| 7133 | (ntf 7 attributes)) | 7133 | (nth 7 attributes)) |
| 7134 | 7134 | ||
| 7135 | (defsubst file-attribute-modes (attributes) | 7135 | (defsubst file-attribute-modes (attributes) |
| 7136 | "The file modes in ATTRIBUTES returned by `file-attribute'. | 7136 | "The file modes in ATTRIBUTES returned by `file-attribute'. |
| 7137 | This is a string of ten letters or dashes as in ls -l." | 7137 | This is a string of ten letters or dashes as in ls -l." |
| 7138 | (ntf 8 attributes)) | 7138 | (nth 8 attributes)) |
| 7139 | 7139 | ||
| 7140 | (defsubst file-attribute-inode-number (attributes) | 7140 | (defsubst file-attribute-inode-number (attributes) |
| 7141 | "The inode number in ATTRIBUTES returned by `file-attribute'. | 7141 | "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. | |||
| 7144 | If even HIGH is too large for an Emacs integer, this is instead | 7144 | If even HIGH is too large for an Emacs integer, this is instead |
| 7145 | of the form (HIGH MIDDLE . LOW): first the high bits, then the | 7145 | of the form (HIGH MIDDLE . LOW): first the high bits, then the |
| 7146 | middle 24 bits, and finally the low 16 bits." | 7146 | middle 24 bits, and finally the low 16 bits." |
| 7147 | (ntf 10 attributes)) | 7147 | (nth 10 attributes)) |
| 7148 | 7148 | ||
| 7149 | (defsubst file-attribute-device-number (attributes) | 7149 | (defsubst file-attribute-device-number (attributes) |
| 7150 | "The file system device number in ATTRIBUTES returned by `file-attribute'. | 7150 | "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. | |||
| 7153 | If even HIGH is too large for an Emacs integer, this is instead | 7153 | If even HIGH is too large for an Emacs integer, this is instead |
| 7154 | of the form (HIGH MIDDLE . LOW): first the high bits, then the | 7154 | of the form (HIGH MIDDLE . LOW): first the high bits, then the |
| 7155 | middle 24 bits, and finally the low 16 bits." | 7155 | middle 24 bits, and finally the low 16 bits." |
| 7156 | (ntf 11 attributes)) | 7156 | (nth 11 attributes)) |
| 7157 | 7157 | ||
| 7158 | 7158 | ||
| 7159 | (define-key ctl-x-map "\C-f" 'find-file) | 7159 | (define-key ctl-x-map "\C-f" 'find-file) |