Skip to content

Commit 87cc95c

Browse files
author
Jason Duncan
committed
Checkdoced.
1 parent 4b384b6 commit 87cc95c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

format-table.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ separators should look like."
151151
:row-count (length body))))
152152

153153
(defun format-table-parse-table (lines col-widths input-mode)
154-
"Parse the list of table LINES into a plist."
154+
"Parse the list of table LINES into a plist.
155+
COL-WIDTHS is the list of column widths for each column, and INPUT-MODE is the
156+
input mode of the source string."
155157
(let* ((header (format-table-split-row (car lines) col-widths input-mode))
156158
(body (--map (format-table-split-row it col-widths input-mode) (-slice lines 2))))
157159
(format-table-assemble-table header body)))

0 commit comments

Comments
 (0)