aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJohn Paul Wallington2003-08-24 18:11:20 +0000
committerJohn Paul Wallington2003-08-24 18:11:20 +0000
commitac3c72934644a99aa7515710deed22965bcefd38 (patch)
treefb71dac9616365c2a3f20e8bb8a98483a649d0b5 /lisp
parent6c5acd7fbb603fd242162ad2326ebafb7c37d2ab (diff)
downloademacs-ac3c72934644a99aa7515710deed22965bcefd38.tar.gz
emacs-ac3c72934644a99aa7515710deed22965bcefd38.zip
(ibuffer-formats): Make name and size columns wider.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/ibuffer.el4
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 469372f6878..89df045f726 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12003-08-24 John Paul Wallington <jpw@gnu.org>
2
3 * ibuffer.el (ibuffer-formats): Make name and size columns wider.
4
5 * man.el (Man-default-man-entry): Strip text properties when
6 snarfing parts of entry because `format' preserves properties.
7
12003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk> 82003-08-24 Glenn Morris <gmorris@ast.cam.ac.uk>
2 9
3 * files.el (file-newest-backup): Use `expand-file-name'. 10 * files.el (file-newest-backup): Use `expand-file-name'.
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el
index 23bf4e55d68..8d7e0970698 100644
--- a/lisp/ibuffer.el
+++ b/lisp/ibuffer.el
@@ -47,8 +47,8 @@ Operations include sorting, marking by regular expression, and
47the ability to filter the displayed buffers by various criteria." 47the ability to filter the displayed buffers by various criteria."
48 :group 'convenience) 48 :group 'convenience)
49 49
50(defcustom ibuffer-formats '((mark modified read-only " " (name 16 16 :left :elide) 50(defcustom ibuffer-formats '((mark modified read-only " " (name 18 18 :left :elide)
51 " " (size 7 -1 :right) 51 " " (size 9 -1 :right)
52 " " (mode 16 16 :right :elide) " " filename-and-process) 52 " " (mode 16 16 :right :elide) " " filename-and-process)
53 (mark " " (name 16 -1) " " filename)) 53 (mark " " (name 16 -1) " " filename))
54 "A list of ways to display buffer lines. 54 "A list of ways to display buffer lines.