* [PATCH 0/1] Fix various typos
@ 2020-05-13 20:29 Jonas Bernoulli
2020-05-13 20:29 ` [PATCH 1/1] Fix typos Jonas Bernoulli
2020-05-14 3:34 ` [PATCH 0/1] Fix various typos Kyle Meyer
0 siblings, 2 replies; 3+ messages in thread
From: Jonas Bernoulli @ 2020-05-13 20:29 UTC (permalink / raw)
To: emacs-orgmode
There isn't much to be said about the typo fixes in the attached patch.
However, I noticed a few more typos, which I did not fix:
* In CONTRIBUTE several occurances of "maintainance" should be
replaced with "maintenance". One of them occurs in a URL to
a Worg page, which has to be renamed at the same time.
* One of the suggested values for `org-s5-control-visibility'
is `visibile'. The correct spelling is "visible". The value
is ultimately used like so:
(format "<meta name='controlVis' content='%s' />"
(plist-get info :s5-control-visibility))
I don't know whether this has to be misspelled to function as
expected, so I did't fix the typo.
Jonas Bernoulli (1):
Fix typos
contrib/lisp/org-depend.el | 4 ++--
doc/org-manual.org | 2 +-
lisp/org-clock.el | 2 +-
lisp/org.el | 2 +-
mk/server.mk | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
--
2.26.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] Fix typos
2020-05-13 20:29 [PATCH 0/1] Fix various typos Jonas Bernoulli
@ 2020-05-13 20:29 ` Jonas Bernoulli
2020-05-14 3:34 ` [PATCH 0/1] Fix various typos Kyle Meyer
1 sibling, 0 replies; 3+ messages in thread
From: Jonas Bernoulli @ 2020-05-13 20:29 UTC (permalink / raw)
To: emacs-orgmode
---
contrib/lisp/org-depend.el | 4 ++--
doc/org-manual.org | 2 +-
lisp/org-clock.el | 2 +-
lisp/org.el | 2 +-
mk/server.mk | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/contrib/lisp/org-depend.el b/contrib/lisp/org-depend.el
index b727acece..263cd7175 100644
--- a/contrib/lisp/org-depend.el
+++ b/contrib/lisp/org-depend.el
@@ -210,7 +210,7 @@ (defun org-depend-trigger-todo (change-plist)
(pos (plist-get change-plist :position))
(from (plist-get change-plist :from))
(to (plist-get change-plist :to))
- (org-log-done nil) ; IMPROTANT!: no logging during automatic trigger!
+ (org-log-done nil) ; IMPORTANT!: no logging during automatic trigger!
trigger triggers tr p1 p2 kwd id)
(catch 'return
(unless (eq type 'todo-state-change)
@@ -367,7 +367,7 @@ (defun org-depend-block-todo (change-plist)
(pos (plist-get change-plist :position))
(from (plist-get change-plist :from))
(to (plist-get change-plist :to))
- (org-log-done nil) ; IMPROTANT!: no logging during automatic trigger
+ (org-log-done nil) ; IMPORTANT!: no logging during automatic trigger
blocker blockers bl p1 p2
(proceed-p
(catch 'return
diff --git a/doc/org-manual.org b/doc/org-manual.org
index 3905da112..f57a97593 100644
--- a/doc/org-manual.org
+++ b/doc/org-manual.org
@@ -21752,7 +21752,7 @@ In-Buffer Settings]]).
[fn:142] For shell source blocks, the default is to return the output.
If you want to enforce returning the exit status, add =:results value=
-explicitely.
+explicitly.
[fn:143] C++ language is handled in =ob-C.el=. Even though the
identifier for such source blocks is =C++=, you activate it by loading
diff --git a/lisp/org-clock.el b/lisp/org-clock.el
index 34179096d..0dca790c0 100644
--- a/lisp/org-clock.el
+++ b/lisp/org-clock.el
@@ -1425,7 +1425,7 @@ (defun org-clock-auto-clockout ()
"Clock out the currently clocked in task if Emacs is idle.
See `org-clock-auto-clockout-timer' to set the idle time span.
-Thie is only effective when `org-clock-auto-clockout-insinuate'
+This is only effective when `org-clock-auto-clockout-insinuate'
is present in the user configuration."
(when (and (numberp org-clock-auto-clockout-timer)
org-clock-current-task)
diff --git a/lisp/org.el b/lisp/org.el
index ef2e61916..be1d1c701 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -16236,7 +16236,7 @@ (defcustom org-display-remote-inline-images 'skip
skip Don't display remote images.
download Always download and display remote images.
cache Display remote images, and open them in separate buffers
- for cacheing. Silently update the image buffer when a file
+ for caching. Silently update the image buffer when a file
change is detected."
:group 'org-appearance
:package-version '(Org . "9.4")
diff --git a/mk/server.mk b/mk/server.mk
index 2c5294507..30bc3b858 100644
--- a/mk/server.mk
+++ b/mk/server.mk
@@ -15,7 +15,7 @@ help helpall helpserver::
$(info release - clean up, create the distribution archives)
$(info elpa - clean up, create the org-*.tar ELPA archive)
$(info elpaplus - clean up, create the org-plus-contrib-*.tar ELPA archive)
- $(info upload-release - clean up, populate the server with arhives)
+ $(info upload-release - clean up, populate the server with archives)
$(info upload-elpa - clean up, populate the server with org-*.tar)
$(info upload-elpaplus - clean up, populate the server with org-plus-contrib-*.tar)
$(info upload-doc - clean up, populate the server with docs)
--
2.26.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 0/1] Fix various typos
2020-05-13 20:29 [PATCH 0/1] Fix various typos Jonas Bernoulli
2020-05-13 20:29 ` [PATCH 1/1] Fix typos Jonas Bernoulli
@ 2020-05-14 3:34 ` Kyle Meyer
1 sibling, 0 replies; 3+ messages in thread
From: Kyle Meyer @ 2020-05-14 3:34 UTC (permalink / raw)
To: Jonas Bernoulli, emacs-orgmode
Jonas Bernoulli writes:
> There isn't much to be said about the typo fixes in the attached patch.
>
> However, I noticed a few more typos, which I did not fix:
>
> * In CONTRIBUTE several occurances of "maintainance" should be
> replaced with "maintenance". One of them occurs in a URL to
> a Worg page, which has to be renamed at the same time.
I'll try to fix those in step, perhaps seeing if I can add the old name
as a link pointing to the corrected name for posterity, though I don't
think it matters much for these particular pages.
> * One of the suggested values for `org-s5-control-visibility'
> is `visibile'. The correct spelling is "visible". The value
> is ultimately used like so:
>
> (format "<meta name='controlVis' content='%s' />"
> (plist-get info :s5-control-visibility))
>
> I don't know whether this has to be misspelled to function as
> expected, so I did't fix the typo.
I don't know either. I recall this one from your last typo series. At
the time, I cc'd the author, but I guess nothing came of that:
https://yhetil.org/orgmode/875zjj30uc.fsf@kyleam.com
I suspect the typo means things are broken. Can some kind org-s5 user
out there check?
> contrib/lisp/org-depend.el | 4 ++--
> doc/org-manual.org | 2 +-
> lisp/org-clock.el | 2 +-
> lisp/org.el | 2 +-
> mk/server.mk | 2 +-
> 5 files changed, 6 insertions(+), 6 deletions(-)
Applied (71604cbc2). Thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-05-14 3:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-13 20:29 [PATCH 0/1] Fix various typos Jonas Bernoulli
2020-05-13 20:29 ` [PATCH 1/1] Fix typos Jonas Bernoulli
2020-05-14 3:34 ` [PATCH 0/1] Fix various typos Kyle Meyer
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).