Skip to content

Commit

Permalink
Use lowercase functional argument
Browse files Browse the repository at this point in the history
  • Loading branch information
jrblevin committed Oct 23, 2017
1 parent ef6b4d9 commit b718630
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions markdown-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -9188,16 +9188,16 @@ 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."
(goto-char (markdown-table-begin))
(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.
Expand Down

0 comments on commit b718630

Please sign in to comment.