diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-10-04 02:11:57 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-10-04 02:11:57 +0000 |
commit | b4dc7d98882432c9c14c0edb91021bb4868f185e (patch) | |
tree | dbf2524c7a53feb3b68673621be1550307f94087 /lisp/textmodes/table.el | |
parent | a30e71aee84b52e1de298a29a96888150711e4a5 (diff) | |
download | emacs-b4dc7d98882432c9c14c0edb91021bb4868f185e.tar.gz |
Fix typos in comments.
Diffstat (limited to 'lisp/textmodes/table.el')
-rw-r--r-- | lisp/textmodes/table.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index f0c8645a974..a8a3d13b66d 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el @@ -4968,7 +4968,7 @@ only and must not be specified." (px (or internal-px (car (if (eq pivot 'left) lu-coordinate rb-coordinate)))) (ty (- (cdr lu-coordinate) 2)) (by (+ (cdr rb-coordinate) 2))) - ;; in case of finding the the first cell, get the last adding item on the list + ;; in case of finding the first cell, get the last adding item on the list (if (and (null internal-dir) first-only) (setq top-to-bottom (null top-to-bottom))) ;; travel up and process as recursion traces back (reverse order) (and cell @@ -5008,7 +5008,7 @@ only and must not be specified." (py (or internal-py (if (eq pivot 'top) (cdr lu-coordinate) (1+ (cdr rb-coordinate))))) (lx (1- (car lu-coordinate))) (rx (1+ (car rb-coordinate)))) - ;; in case of finding the the first cell, get the last adding item on the list + ;; in case of finding the first cell, get the last adding item on the list (if (and (null internal-dir) first-only) (setq left-to-right (null left-to-right))) ;; travel left and process as recursion traces back (reverse order) (and cell |