From b718630f6f896c5d8ea26ff27d7bed6375716408 Mon Sep 17 00:00:00 2001 From: Jason Blevins Date: Sun, 22 Oct 2017 20:30:53 -0400 Subject: [PATCH] Use lowercase functional argument --- markdown-mode.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/markdown-mode.el b/markdown-mode.el index a92e4c0..acf2aa5 100644 --- a/markdown-mode.el +++ b/markdown-mode.el @@ -9188,7 +9188,7 @@ a table." val (replace-regexp-in-string "[ \t]+\\'" "" val))) (forward-char 1) "")) -(defun markdown-table-goto-dline (N) +(defun markdown-table-goto-dline (n) "Go to the Nth data line in the table at point. Return t when the line exists, nil otherwise. This function assumes point is on a table." @@ -9196,8 +9196,8 @@ assumes point is on a table." (let ((end (markdown-table-end)) (cnt 0)) (while (and (re-search-forward markdown-table-dline-regexp end t) - (< (setq cnt (1+ cnt)) N))) - (= cnt N))) + (< (setq cnt (1+ cnt)) n))) + (= cnt n))) (defun markdown-table-goto-column (n &optional on-delim) "Go to the Nth column in the table line at point. -- 2.11.4.GIT