diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-11-09 20:36:35 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-11-09 20:50:33 -0500 |
commit | cd56c427a385e85d76e663234f9bcada16ac7107 (patch) | |
tree | 59df696a91c0a39eb83b9df5ad5bc90ea6b35e23 | |
parent | dfd4cc5c6b27969922c15a812b29a9a45d0a5711 (diff) | |
download | orgmode-backport-notes-cd56c427a385e85d76e663234f9bcada16ac7107.tar.gz |
org-maint: Revise docstrings
-rw-r--r-- | org-maint.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org-maint.el b/org-maint.el index 5343f22..524ce8e 100644 --- a/org-maint.el +++ b/org-maint.el @@ -25,7 +25,7 @@ If APPLY is non-nil, use 'git apply' instead of 'git am'." "-p3" "--directory=lisp/")))) (defun org-maint-insert-emacs-commit-info (commit) - "Insert information about COMMIT in `org-maint-emacs-dir'." + "Insert information about COMMIT from `org-maint-emacs-dir'." (interactive "sCommit: ") (let ((default-directory org-maint-emacs-dir)) (call-process "git" nil t nil @@ -42,7 +42,7 @@ If APPLY is non-nil, use 'git apply' instead of 'git am'." (defun org-maint-check-for-new () "Check for new commits to backport. The last commit found is assumed to be the return value of -`org-maint-rev-from-next-item`, and Emacs ref name that should be +`org-maint-rev-from-next-item', and Emacs ref name that should be checked is taken from the Org \"ref\" property." (interactive) (let ((ref (or (org-entry-get (point) "ref") |