aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero2022-12-13 14:45:58 +0100
committerJuanma Barranquero2022-12-13 14:45:58 +0100
commitc45eb138451c10fa8122820d9615c80a2caeede2 (patch)
tree4b0680f3b93a0681e0d35403bd586d62c623760c /lisp
parentd6adaf487d89b0d47f4e7f361a5897081c54d300 (diff)
downloademacs-c45eb138451c10fa8122820d9615c80a2caeede2.tar.gz
emacs-c45eb138451c10fa8122820d9615c80a2caeede2.zip
; * lisp/bs.el (bs-attributes-list): Doc fix
Diffstat (limited to 'lisp')
-rw-r--r--lisp/bs.el10
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.
158MINIMUM-LENGTH : Minimum width of column (number or name of function). 158MINIMUM-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.
160MAXIMUM-LENGTH : Maximum width of column (number or name of function) 160MAXIMUM-LENGTH : Ignored.
161 (currently ignored).
162ALIGNMENT : Alignment of column (`left', `right', `middle'). 161ALIGNMENT : Alignment of column (`left', `right', `middle').
163FUN-OR-STRING : Name of a function for calculating the value or a 162FUN-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
166The function gets as parameter the buffer where we have started 165Functions for HEADER and MINIMUM-LENGTH are called with no arguments.
167buffer selection and the list of all buffers to show. The function must 166FUN-OR-STRING gets as argument the buffer where we have started
168return a string representing the column's value." 167buffer selection and the list of all buffers to show. The function
168must 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