From 7653e58f6d420f62d39bb8a9ef7d98b19b881992 Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Wed, 13 Mar 2024 17:14:04 +0300 Subject: [PATCH] org-table-next-row: Improve docstring * lisp/org-table.el (org-table-next-row): Explain what happens when the next row is outside table or when it is an hline. Link: https://orgmode.org/list/B35D543F-6A6C-4F7D-913F-E8CBB6B9BC1B@gmail.com --- lisp/org-table.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org-table.el b/lisp/org-table.el index f390594d1..bd8d59f45 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -1142,7 +1142,8 @@ With numeric argument N, move N-1 fields forward first." ;;;###autoload (defun org-table-next-row () "Go to the next row (same column) in the current table. -Before doing so, re-align the table if necessary." +When next row is an hline or outside the table, create a new empty +row. Before doing so, re-align the table if necessary." (interactive) (org-table-maybe-eval-formula) (org-table-maybe-recalculate-line)