branch: externals-release/org
commit f86e17e3805d7275da0bce7b37477a6f8f704bb3
Author: Sean Whitton <spwhit...@spwhitton.name>
Commit: Sean Whitton <spwhit...@spwhitton.name>

    Fix capitalization ELisp -> Elisp
    
    * Makefile (help helpall):
    * lisp/org-capture.el (org-capture):
    * lisp/org.el (org-category, org-todo):
    * lisp/ox.el (org-export-async-start):
    Fix capitalization ELisp -> Elisp.
---
 Makefile            | 12 ++++++------
 lisp/org-capture.el |  2 +-
 lisp/org.el         |  8 ++++----
 lisp/ox.el          |  2 +-
 4 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/Makefile b/Makefile
index b3a167ecb5..354501c3e3 100644
--- a/Makefile
+++ b/Makefile
@@ -23,17 +23,17 @@ help helpall::
        $(info )
        $(info Build and Check)
        $(info ===============)
-       $(info make                - build Org ELisp and all documentation)
+       $(info make                - build Org Elisp and all documentation)
        $(info make all            - ditto)
-       $(info make compile        - build Org ELisp files)
-       $(info make single         - build Org ELisp files, single Emacs per 
source)
+       $(info make compile        - build Org Elisp files)
+       $(info make single         - build Org Elisp files, single Emacs per 
source)
        $(info make native         - build Org natively compiled Elisp files)
        $(info make autoloads      - create org-loaddefs.el to load Org 
in-place)
-       $(info make test           - build Org ELisp files and run test suite)
+       $(info make test           - build Org Elisp files and run test suite)
        $(info make vanilla        - run Emacs with this Org-mode and no 
personal config)
 helpall::
        $(info make test-dirty     - check without building first)
-       $(info make compile-dirty  - build only stale Org ELisp files)
+       $(info make compile-dirty  - build only stale Org Elisp files)
        $(info )
        $(info Compatibility)
        $(info =============)
@@ -41,7 +41,7 @@ helpall::
        $(info )
        $(info Cleaning)
        $(info ========)
-       $(info make clean          - remove built Org ELisp files and 
documentation)
+       $(info make clean          - remove built Org Elisp files and 
documentation)
        $(info make cleanall       - remove everything that can be built and 
all remnants)
        $(info make clean-install  - remove previous Org installation)
        $(info )
diff --git a/lisp/org-capture.el b/lisp/org-capture.el
index 9c4a4619bb..b5ec4a0128 100644
--- a/lisp/org-capture.el
+++ b/lisp/org-capture.el
@@ -658,7 +658,7 @@ When called with a `C-0' (zero) prefix, insert a template 
at point.
 When called with a `C-1' (one) prefix, force prompting for a date when
 a datetree entry is made.
 
-ELisp programs can set KEYS to a string associated with a template
+Elisp programs can set KEYS to a string associated with a template
 in `org-capture-templates'.  In this case, interactive selection
 will be bypassed.
 
diff --git a/lisp/org.el b/lisp/org.el
index ca089eae41..1da5aef230 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -3160,16 +3160,16 @@ There are multiple ways to set the category.  One way 
is to set
 it in the document property drawer.  For example:
 
 :PROPERTIES:
-:CATEGORY: ELisp
+:CATEGORY: Elisp
 :END:
 
 Other ways to define it is as an Emacs file variable, for example
 
-#   -*- mode: org; org-category: \"ELisp\"
+#   -*- mode: org; org-category: \"Elisp\"
 
 or for the file to contain a special line:
 
-#+CATEGORY: ELisp
+#+CATEGORY: Elisp
 
 If the file does not specify a category, then file's base name
 is used instead.")
@@ -9443,7 +9443,7 @@ With numeric prefix arg, switch to the Nth state.
 With a numeric prefix arg of 0, inhibit note taking for the change.
 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
 
-When called through ELisp, arg is also interpreted in the following way:
+When called through Elisp, arg is also interpreted in the following way:
 `none'        -> empty state
 \"\"            -> switch to empty state
 `done'        -> switch to DONE
diff --git a/lisp/ox.el b/lisp/ox.el
index 9eb04bfe08..4cd6466fe8 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -6664,7 +6664,7 @@ to `:default' encoding.  If it fails, return S."
   "Call function FUN on the results returned by BODY evaluation.
 
 FUN is an anonymous function of one argument.  BODY should be a valid
-ELisp source expression.  BODY evaluation happens in an asynchronous process,
+Elisp source expression.  BODY evaluation happens in an asynchronous process,
 from a buffer which is an exact copy of the current one.
 
 Use `org-export-add-to-stack' in FUN in order to register results

Reply via email to