emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/ftable 939cc1b 13/14: Fix typo


From: Stefan Monnier
Subject: [elpa] externals/ftable 939cc1b 13/14: Fix typo
Date: Mon, 2 Aug 2021 18:27:33 -0400 (EDT)

branch: externals/ftable
commit 939cc1bc0a272e9b3bca4e1f6bd077e4754fb8ea
Author: Yuan Fu <casouri@gmail.com>
Commit: Yuan Fu <casouri@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 ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]