diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-07-29 14:06:47 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-07-29 14:06:47 +0000 |
commit | 91b69101e0fe4e9c932bbb586b6d3dc5b1edc267 (patch) | |
tree | 64fee0d7e1944b9544e1392f0a7fe04ea5e325ca /lisp/bs.el | |
parent | b89c5a722e907c5182cd0c87c9a7b3abfd67a077 (diff) | |
download | emacs-91b69101e0fe4e9c932bbb586b6d3dc5b1edc267.tar.gz emacs-91b69101e0fe4e9c932bbb586b6d3dc5b1edc267.tar.bz2 emacs-91b69101e0fe4e9c932bbb586b6d3dc5b1edc267.zip |
(bs-attributes-list): Doc fix.
(bs): Update url-link.
Diffstat (limited to 'lisp/bs.el')
-rw-r--r-- | lisp/bs.el | 24 |
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 @@ ;;; Commentary: ;; Version: 1.17 -;; X-URL: http://home.netsurf.de/olaf.sylvester/emacs +;; X-URL: http://www.geekware.de/software/emacs ;; ;; The bs-package contains a main function bs-show for poping up a ;; buffer in a way similar to `list-buffers' and `electric-buffer-list': @@ -138,7 +138,7 @@ "Buffer Selection: Maintaining buffers by buffer menu." :version "21.1" :link '(emacs-commentary-link "bs") - :link '(url-link "http://home.netsurf.de/olaf.sylvester/emacs") + :link '(url-link "http://www.geekware.de/software/emacs") :group 'convenience) (defgroup bs-appearance nil @@ -160,15 +160,17 @@ "*List specifying the layout of a Buffer Selection Menu buffer. Each entry specifies a column and is a list of the form of: \(HEADER MINIMUM-LENGTH MAXIMUM-LENGTH ALIGNMENT FUN-OR-STRING) -HEADER : string for header for first line or a function - which calculates column title. -MINIMUM-LENGTH : minimum width of column (number or name of function). - The function must return a positive integer. -MAXIMUM-LENGTH : maximum width of column (number or name of function) - (currently ignored) -ALIGNMENT : alignment of column: (`left' `right' `middle') -FUN-OR-STRING : Name of a function for calculating the value or -a string for a constant value. + +HEADER : String for header for first line or a function + which calculates column title. +MINIMUM-LENGTH : Minimum width of column (number or name of function). + The function must return a positive integer. +MAXIMUM-LENGTH : Maximum width of column (number or name of function) + (currently ignored). +ALIGNMENT : Alignment of column (`left', `right', `middle'). +FUN-OR-STRING : Name of a function for calculating the value or a + string for a constant value. + The function gets as parameter the buffer where we have started buffer selection and the list of all buffers to show. The function must return a string representing the column's value." |