comparison lisp/ls-lisp.el @ 80929:1c4465e1aac0

(ls-lisp-verbosity): Doc fix.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 16 May 2007 13:15:23 +0000
parents 7b38b48667a7
children ed97a96f45fc 31beec9ee600
comparison
equal deleted inserted replaced
80928:93f01594df6f 80929:1c4465e1aac0
111 '(links))) ; distinguish NT/2K from 9x 111 '(links))) ; distinguish NT/2K from 9x
112 ((eq ls-lisp-emulation 'UNIX) '(links uid)) ; UNIX ls 112 ((eq ls-lisp-emulation 'UNIX) '(links uid)) ; UNIX ls
113 (t '(links uid gid))) ; GNU ls 113 (t '(links uid gid))) ; GNU ls
114 "*A list of optional file attributes that ls-lisp should display. 114 "*A list of optional file attributes that ls-lisp should display.
115 It should contain none or more of the symbols: links, uid, gid. 115 It should contain none or more of the symbols: links, uid, gid.
116 nil (or an empty list) means display none of them. 116 A value of nil (or an empty list) means display none of them.
117 117
118 Concepts come from UNIX: `links' means count of names associated with 118 Concepts come from UNIX: `links' means count of names associated with
119 the file\; `uid' means user (owner) identifier\; `gid' means group 119 the file\; `uid' means user (owner) identifier\; `gid' means group
120 identifier. 120 identifier.
121 121