aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-29 14:06:47 +0000
committerJuanma Barranquero2005-07-29 14:06:47 +0000
commit91b69101e0fe4e9c932bbb586b6d3dc5b1edc267 (patch)
tree64fee0d7e1944b9544e1392f0a7fe04ea5e325ca
parentb89c5a722e907c5182cd0c87c9a7b3abfd67a077 (diff)
downloademacs-91b69101e0fe4e9c932bbb586b6d3dc5b1edc267.tar.gz
emacs-91b69101e0fe4e9c932bbb586b6d3dc5b1edc267.zip
(bs-attributes-list): Doc fix.
(bs): Update url-link.
-rw-r--r--lisp/bs.el24
1 files changed, 13 insertions, 11 deletions
diff --git a/lisp/bs.el b/lisp/bs.el
index 67db5648893..f8a07337dc1 100644
--- a/lisp/bs.el
+++ b/lisp/bs.el
@@ -25,7 +25,7 @@
25;;; Commentary: 25;;; Commentary:
26 26
27;; Version: 1.17 27;; Version: 1.17
28;; X-URL: http://home.netsurf.de/olaf.sylvester/emacs 28;; X-URL: http://www.geekware.de/software/emacs
29;; 29;;
30;; The bs-package contains a main function bs-show for poping up a 30;; The bs-package contains a main function bs-show for poping up a
31;; buffer in a way similar to `list-buffers' and `electric-buffer-list': 31;; buffer in a way similar to `list-buffers' and `electric-buffer-list':
@@ -138,7 +138,7 @@
138 "Buffer Selection: Maintaining buffers by buffer menu." 138 "Buffer Selection: Maintaining buffers by buffer menu."
139 :version "21.1" 139 :version "21.1"
140 :link '(emacs-commentary-link "bs") 140 :link '(emacs-commentary-link "bs")
141 :link '(url-link "http://home.netsurf.de/olaf.sylvester/emacs") 141 :link '(url-link "http://www.geekware.de/software/emacs")
142 :group 'convenience) 142 :group 'convenience)
143 143
144(defgroup bs-appearance nil 144(defgroup bs-appearance nil
@@ -160,15 +160,17 @@
160 "*List specifying the layout of a Buffer Selection Menu buffer. 160 "*List specifying the layout of a Buffer Selection Menu buffer.
161Each entry specifies a column and is a list of the form of: 161Each entry specifies a column and is a list of the form of:
162\(HEADER MINIMUM-LENGTH MAXIMUM-LENGTH ALIGNMENT FUN-OR-STRING) 162\(HEADER MINIMUM-LENGTH MAXIMUM-LENGTH ALIGNMENT FUN-OR-STRING)
163HEADER : string for header for first line or a function 163
164 which calculates column title. 164HEADER : String for header for first line or a function
165MINIMUM-LENGTH : minimum width of column (number or name of function). 165 which calculates column title.
166 The function must return a positive integer. 166MINIMUM-LENGTH : Minimum width of column (number or name of function).
167MAXIMUM-LENGTH : maximum width of column (number or name of function) 167 The function must return a positive integer.
168 (currently ignored) 168MAXIMUM-LENGTH : Maximum width of column (number or name of function)
169ALIGNMENT : alignment of column: (`left' `right' `middle') 169 (currently ignored).
170FUN-OR-STRING : Name of a function for calculating the value or 170ALIGNMENT : Alignment of column (`left', `right', `middle').
171a string for a constant value. 171FUN-OR-STRING : Name of a function for calculating the value or a
172 string for a constant value.
173
172The function gets as parameter the buffer where we have started 174The function gets as parameter the buffer where we have started
173buffer selection and the list of all buffers to show. The function must 175buffer selection and the list of all buffers to show. The function must
174return a string representing the column's value." 176return a string representing the column's value."