Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2022-07-26 Mats Lidell <matsl@gnu.org>

* kotl/kotl-orgtbl.el: Shorten docs strings to be within 80 char limit.

2022-07-25 Mats Lidell <matsl@gnu.org>

* kotl/kimport.el:
Expand Down
4 changes: 2 additions & 2 deletions kotl/kotl-orgtbl.el
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

;; Redefine this Org Table function to handle Koutlines as well.
(defun orgtbl-tab (arg)
"Justification and field motion for `orgtbl-mode' with Hyperbole Koutline support."
"Justification and field motion for `orgtbl-mode' with Koutline support."
(interactive "P")
(cond ((and (derived-mode-p #'kotl-mode) arg)
(kotl-mode:tab-command (if (= (prefix-numeric-value arg) 1) nil arg)))
Expand All @@ -83,7 +83,7 @@ If no previous line, exchange current with next line."
)

(defun orgtbl-meta-return (arg)
"Let Action Key handle tables in kotl-mode, otherwise, use standard Org table command."
"Let Action Key handle tables in kotl-mode, otherwise, use Org table command."
(interactive "P")
(if (derived-mode-p #'kotl-mode)
(hkey-either arg)
Expand Down