diff options
| author | Juanma Barranquero | 2022-12-13 14:45:58 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2022-12-13 14:45:58 +0100 |
| commit | c45eb138451c10fa8122820d9615c80a2caeede2 (patch) | |
| tree | 4b0680f3b93a0681e0d35403bd586d62c623760c /lisp | |
| parent | d6adaf487d89b0d47f4e7f361a5897081c54d300 (diff) | |
| download | emacs-c45eb138451c10fa8122820d9615c80a2caeede2.tar.gz emacs-c45eb138451c10fa8122820d9615c80a2caeede2.zip | |
; * lisp/bs.el (bs-attributes-list): Doc fix
Diffstat (limited to 'lisp')
| -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 | ||