diff options
| -rw-r--r-- | lisp/bs.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/bs.el b/lisp/bs.el index 1fd31fb3b85..6ddc7774aae 100644 --- a/lisp/bs.el +++ b/lisp/bs.el | |||
| @@ -157,15 +157,15 @@ HEADER : String for header for first line or a function | |||
| 157 | which calculates column title. | 157 | which calculates column title. |
| 158 | MINIMUM-LENGTH : Minimum width of column (number or name of function). | 158 | MINIMUM-LENGTH : Minimum width of column (number or name of function). |
| 159 | The function must return a positive integer. | 159 | The function must return a positive integer. |
| 160 | MAXIMUM-LENGTH : Maximum width of column (number or name of function) | 160 | MAXIMUM-LENGTH : Ignored. |
| 161 | (currently ignored). | ||
| 162 | ALIGNMENT : Alignment of column (`left', `right', `middle'). | 161 | ALIGNMENT : Alignment of column (`left', `right', `middle'). |
| 163 | FUN-OR-STRING : Name of a function for calculating the value or a | 162 | FUN-OR-STRING : Name of a function for calculating the value or a |
| 164 | string for a constant value. | 163 | string for a constant value. |
| 165 | 164 | ||
| 166 | The function gets as parameter the buffer where we have started | 165 | Functions for HEADER and MINIMUM-LENGTH are called with no arguments. |
| 167 | buffer selection and the list of all buffers to show. The function must | 166 | FUN-OR-STRING gets as argument the buffer where we have started |
| 168 | return a string representing the column's value." | 167 | buffer selection and the list of all buffers to show. The function |
| 168 | must return a string representing the column's value." | ||
| 169 | :group 'bs-appearance | 169 | :group 'bs-appearance |
| 170 | :type '(repeat sexp)) | 170 | :type '(repeat sexp)) |
| 171 | 171 | ||