]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typos; change "Emacs-Lisp" to "Emacs Lisp"
authorStefan Kangas <stefankangas@gmail.com>
Tue, 1 Sep 2020 21:59:11 +0000 (23:59 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Tue, 1 Sep 2020 22:01:37 +0000 (00:01 +0200)
doc/lispref/debugging.texi
doc/lispref/streams.texi
lisp/calendar/holidays.el
lisp/gnus/gnus-start.el
lisp/play/handwrite.el
lisp/ses.el
test/file-organization.org

index 29a0ab71ea41c629e7c6d74d3bf9e566a98a2187..3fea604184c4f43514781a47f767a0d95b1cd3c9 100644 (file)
@@ -147,7 +147,7 @@ set @code{debug-ignored-errors} to @code{nil}.
 If this variable has a non-@code{nil} value (the default), running the
 command @code{eval-expression} causes @code{debug-on-error} to be
 temporarily bound to @code{t}.  @xref{Lisp Eval,, Evaluating
-Emacs-Lisp Expressions, emacs, The GNU Emacs Manual}.
+Emacs Lisp Expressions, emacs, The GNU Emacs Manual}.
 
 If @code{eval-expression-debug-on-error} is @code{nil}, then the value
 of @code{debug-on-error} is not changed during @code{eval-expression}.
index d40ec8db105e27a05d740a9a9b7025680458567c..2cd61ad04fc07f8a14ebbd07987598b3e77c1c27 100644 (file)
@@ -859,7 +859,7 @@ exceeding this limit is abbreviated with an ellipsis.  A value of
 These are the values for @code{print-length} and @code{print-level}
 used by @code{eval-expression}, and thus, indirectly, by many
 interactive evaluation commands (@pxref{Lisp Eval,, Evaluating
-Emacs-Lisp Expressions, emacs, The GNU Emacs Manual}).
+Emacs Lisp Expressions, emacs, The GNU Emacs Manual}).
 @end defopt
 
   These variables are used for detecting and reporting circular
index 182e99a611f50b5989be746fa7e3f5741d52dcc2..444a0e53b95dd756d937281cc5e7c656faa14712 100644 (file)
@@ -310,7 +310,7 @@ to the list.  To include the phases of the moon, add
 
      (lunar-phases)
 
-to the holiday list, where `lunar-phases' is an Emacs-Lisp function that
+to the holiday list, where `lunar-phases' is an Emacs Lisp function that
 you've written to return a (possibly empty) list of the relevant VISIBLE dates
 with descriptive strings such as
 
index 61319266ced5c9392bd44185bf9c454a6e21ffc0..dbe92a164d0a2fc88a40a1809b07700508f3eef3 100644 (file)
@@ -71,7 +71,7 @@ uses considerably less memory."
                  (const :tag "Write directly to file" nil)))
 
 (defcustom gnus-init-file (nnheader-concat gnus-home-directory ".gnus")
-  "Your Gnus Emacs-Lisp startup file name.
+  "Your Gnus Emacs Lisp startup file name.
 If a file with the `.el' or `.elc' suffixes exists, it will be read instead."
   :group 'gnus-start
   :type 'file)
@@ -82,7 +82,7 @@ If a file with the `.el' or `.elc' suffixes exists, it will be read instead."
               (directory-file-name installation-directory))
              "site-lisp/gnus-init")
     (error nil))
-  "The site-wide Gnus Emacs-Lisp startup file name, or nil if none.
+  "The site-wide Gnus Emacs Lisp startup file name, or nil if none.
 If a file with the `.el' or `.elc' suffixes exists, it will be read instead."
   :group 'gnus-start
   :type '(choice file (const nil)))
index f69e0622c9a78d379dd80f0c6ea692427056f0c4..7b4a59b6fcd682174c9da8395b00e40571fedd48 100644 (file)
@@ -45,7 +45,7 @@
 ;;  Installation
 ;;
 ;; type at your prompt "emacs -l handwrite.el" or put this file on your
-;; Emacs-Lisp load path, add the following into your init file:
+;; Emacs Lisp load path, add the following into your init file:
 ;;
 ;;                (require 'handwrite)
 ;;
index 96b219fc6014ed4248568920506010a195455b1d..218043f2192411c5c602c659f055b02ca2b9e97f 100644 (file)
@@ -378,7 +378,7 @@ area of a spreadsheet.")
 ;;  "Side-effect variables".  They are set in one function, altered in
 ;;  another as a side effect, then read back by the first, as a way of
 ;;  passing back more than one value.  These declarations are just to make
-;;  the compiler happy, and to conform to standard Emacs-Lisp practice (I
+;;  the compiler happy, and to conform to standard Emacs Lisp practice (I
 ;;  think the make-local-variable trick above is cleaner).
 ;;
 
index 34bd0b90e0386f97ae286a7fa18ccfa5e9012ff5..64c0755b3bc01364fc6645b87512316a823ee2e9 100644 (file)
@@ -1,10 +1,10 @@
-#+TITLE: The Location of Emacs-Lisp Tests
+#+TITLE: The Location of Emacs Lisp Tests
 
 
 
 * The Main Emacs Repository
 
-The Emacs repository contains a very large number of Emacs-Lisp files, many of
+The Emacs repository contains a very large number of Emacs Lisp files, many of
 which pre-date both formal package support for Emacs and automated unit
 testing.