comparison lisp/ibuffer.el @ 42873:e4be1ae52e5c

(toplevel, ibuffer-default-directory): Doc fixes.
author Colin Walters <walters@gnu.org>
date Mon, 21 Jan 2002 03:17:02 +0000
parents 34e26a9a9ad7
children 5abd84afe99c
comparison
equal deleted inserted replaced
42872:f6d90ceb0815 42873:e4be1ae52e5c
81 control the appearance of an Ibuffer buffer. See also 81 control the appearance of an Ibuffer buffer. See also
82 `define-ibuffer-column', which allows you to define your own columns 82 `define-ibuffer-column', which allows you to define your own columns
83 for display. 83 for display.
84 84
85 This variable has the form 85 This variable has the form
86 ((COLUMN COLUMN ...) (COLUMN COLUMN ...) ...) 86 ((COLUMN COLUMN ...) (COLUMN COLUMN ...) ...)
87 Each element in `ibuffer-formats' should be a list containing COLUMN 87 Each element in `ibuffer-formats' should be a list containing COLUMN
88 specifiers. A COLUMN can be any of the following: 88 specifiers. A COLUMN can be any of the following:
89 89
90 SYMBOL - A symbol naming the column. Predefined columns are: 90 SYMBOL - A symbol naming the column. Predefined columns are:
91 mark modified read-only name size mode process filename 91 mark modified read-only name size mode process filename
274 :type 'boolean 274 :type 'boolean
275 :group 'ibuffer) 275 :group 'ibuffer)
276 276
277 (defcustom ibuffer-default-directory nil 277 (defcustom ibuffer-default-directory nil
278 "The default directory to use for a new ibuffer buffer. 278 "The default directory to use for a new ibuffer buffer.
279 Nil means inherit the directory of the buffer in which `ibuffer' was 279 If nil, inherit the directory of the buffer in which `ibuffer' was
280 called. Otherwise, this variable should be a string naming a 280 called. Otherwise, this variable should be a string naming a
281 directory, like `default-directory'." 281 directory, like `default-directory'."
282 :type '(choice (const :tag "Inherit" :value nil) 282 :type '(choice (const :tag "Inherit" :value nil)
283 string) 283 string)
284 :group 'ibuffer) 284 :group 'ibuffer)