[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/bs.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/bs.el |
Date: |
Fri, 29 Jul 2005 10:06:47 -0400 |
Index: emacs/lisp/bs.el
diff -c emacs/lisp/bs.el:1.20 emacs/lisp/bs.el:1.21
*** emacs/lisp/bs.el:1.20 Mon Jul 4 23:08:52 2005
--- emacs/lisp/bs.el Fri Jul 29 14:06:47 2005
***************
*** 25,31 ****
;;; Commentary:
;; Version: 1.17
! ;; X-URL: http://home.netsurf.de/olaf.sylvester/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':
--- 25,31 ----
;;; Commentary:
;; Version: 1.17
! ;; 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,144 ****
"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")
:group 'convenience)
(defgroup bs-appearance nil
--- 138,144 ----
"Buffer Selection: Maintaining buffers by buffer menu."
:version "21.1"
:link '(emacs-commentary-link "bs")
! :link '(url-link "http://www.geekware.de/software/emacs")
:group 'convenience)
(defgroup bs-appearance nil
***************
*** 160,174 ****
"*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.
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."
--- 160,176 ----
"*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.
!
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."