comparison lispref/files.texi @ 52978:1a5c50faf357

Replace @sc{foo} with @acronym{FOO}.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 02 Nov 2003 06:29:59 +0000
parents 695cf19ef79e
children 420dc7ac8867
comparison
equal deleted inserted replaced
52977:8af8c70252c1 52978:1a5c50faf357
991 access control in the usual Unix fashion. If the low-order bit is 1, 991 access control in the usual Unix fashion. If the low-order bit is 1,
992 then the file is executable by all users, if the second-lowest-order bit 992 then the file is executable by all users, if the second-lowest-order bit
993 is 1, then the file is writable by all users, etc. 993 is 1, then the file is writable by all users, etc.
994 994
995 The highest value returnable is 4095 (7777 octal), meaning that 995 The highest value returnable is 4095 (7777 octal), meaning that
996 everyone has read, write, and execute permission, that the @sc{suid} bit 996 everyone has read, write, and execute permission, that the @acronym{SUID} bit
997 is set for both others and group, and that the sticky bit is set. 997 is set for both others and group, and that the sticky bit is set.
998 998
999 @example 999 @example
1000 @group 1000 @group
1001 (file-modes "~/junk/diffs") 1001 (file-modes "~/junk/diffs")
1064 The number of names the file has. Alternate names, also known as hard 1064 The number of names the file has. Alternate names, also known as hard
1065 links, can be created by using the @code{add-name-to-file} function 1065 links, can be created by using the @code{add-name-to-file} function
1066 (@pxref{Changing Files}). 1066 (@pxref{Changing Files}).
1067 1067
1068 @item 1068 @item
1069 The file's @sc{uid}. 1069 The file's @acronym{UID}.
1070 1070
1071 @item 1071 @item
1072 The file's @sc{gid}. 1072 The file's @acronym{GID}.
1073 1073
1074 @item 1074 @item
1075 The time of last access, as a list of two integers. 1075 The time of last access, as a list of two integers.
1076 The first integer has the high-order 16 bits of time, 1076 The first integer has the high-order 16 bits of time,
1077 the second has the low 16 bits. (This is similar to the 1077 the second has the low 16 bits. (This is similar to the
1090 @item 1090 @item
1091 The file's modes, as a string of ten letters or dashes, 1091 The file's modes, as a string of ten letters or dashes,
1092 as in @samp{ls -l}. 1092 as in @samp{ls -l}.
1093 1093
1094 @item 1094 @item
1095 @code{t} if the file's @sc{gid} would change if file were 1095 @code{t} if the file's @acronym{GID} would change if file were
1096 deleted and recreated; @code{nil} otherwise. 1096 deleted and recreated; @code{nil} otherwise.
1097 1097
1098 @item 1098 @item
1099 The file's inode number. If possible, this is an integer. If the inode 1099 The file's inode number. If possible, this is an integer. If the inode
1100 number is too large to be represented as an integer in Emacs Lisp, then 1100 number is too large to be represented as an integer in Emacs Lisp, then
1134 @item 1 1134 @item 1
1135 has only one name (the name @file{files.texi} in the current default 1135 has only one name (the name @file{files.texi} in the current default
1136 directory). 1136 directory).
1137 1137
1138 @item 2235 1138 @item 2235
1139 is owned by the user with @sc{uid} 2235. 1139 is owned by the user with @acronym{UID} 2235.
1140 1140
1141 @item 75 1141 @item 75
1142 is in the group with @sc{gid} 75. 1142 is in the group with @acronym{GID} 75.
1143 1143
1144 @item (8489 20284) 1144 @item (8489 20284)
1145 was last accessed on Aug 19 00:09. 1145 was last accessed on Aug 19 00:09.
1146 1146
1147 @item (8489 20284) 1147 @item (8489 20284)
1156 1156
1157 @item "-rw-rw-rw-" 1157 @item "-rw-rw-rw-"
1158 has a mode of read and write access for the owner, group, and world. 1158 has a mode of read and write access for the owner, group, and world.
1159 1159
1160 @item nil 1160 @item nil
1161 would retain the same @sc{gid} if it were recreated. 1161 would retain the same @acronym{GID} if it were recreated.
1162 1162
1163 @item 129500 1163 @item 129500
1164 has an inode number of 129500. 1164 has an inode number of 129500.
1165 @item -32252 1165 @item -32252
1166 is on file system number -32252. 1166 is on file system number -32252.