branch: externals/ftable commit 939cc1bc0a272e9b3bca4e1f6bd077e4754fb8ea Author: Yuan Fu <caso...@gmail.com> Commit: Yuan Fu <caso...@gmail.com>
Fix typo * ftable.el (ftable--at-table-p, ftable--beginning-of-table): Change valign to ftable. --- ftable.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ftable.el b/ftable.el index 4def264..c587e84 100644 --- a/ftable.el +++ b/ftable.el @@ -584,10 +584,10 @@ STYLE can be ’ascii or ’unicode." (append (cl-loop for elt in ftable-box-charset-alist for charset = (cdr elt) - collect (valign-box-char 1 charset) - collect (valign-box-char 4 charset) - collect (valign-box-char 7 charset) - collect (valign-box-char 'v charset)))))) + collect (ftable-box-char 1 charset) + collect (ftable-box-char 4 charset) + collect (ftable-box-char 7 charset) + collect (ftable-box-char 'v charset)))))) (defun ftable--beginning-of-table () "Go backward to the beginning of the table at point. @@ -600,7 +600,7 @@ Assumes point is on a table." (while (and (< (point-min) (point)) (ftable--at-table-p)) (forward-line -1)) - (unless (valign--at-table-p) + (unless (ftable--at-table-p) (forward-line 1))) (defun ftable--end-of-table ()