From: Stefan Kangas <stefankangas@gmail.com>
Date: Sat, 2 Sep 2023 16:57:11 +0000 (+0200)
Subject: ; Fix typos
X-Git-Tag: emacs-29.1.90~147
X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3550f44c17c31f829d7d51b2928a83ae381a8558;p=emacs.git

; Fix typos
---

diff --git a/lisp/ChangeLog.12 b/lisp/ChangeLog.12
index 6c11bdeaa49..9bc440626dc 100644
--- a/lisp/ChangeLog.12
+++ b/lisp/ChangeLog.12
@@ -32867,7 +32867,7 @@
 	(reftex-index-switch-index-tag): Add `redo' to arguments of
 	`reftex-display-index'.
 	(reftex-index-make-phrase-regexp): Fix bug with case-sensitive
-	indexing.  Fix bug with matching is there is a quote before or
+	indexing.  Fix bug with matching if there is a quote before or
 	after the word.
 
 	* textmodes/reftex-cite.el (reftex-all-used-citation-keys):
diff --git a/lisp/align.el b/lisp/align.el
index 79a75dcec79..e243859a9be 100644
--- a/lisp/align.el
+++ b/lisp/align.el
@@ -1585,7 +1585,7 @@ aligner would have dealt with are."
                         (if (= (point) search-start)
                             (forward-char)))))
 
-                  ;; when they are no more matches for this rule,
+                  ;; when there are no more matches for this rule,
                   ;; align whatever was left over
                   (if regions
                       (align-regions regions align-props rule func))))))))
diff --git a/lisp/org/ChangeLog.1 b/lisp/org/ChangeLog.1
index a4eae350d98..82b1c832c40 100644
--- a/lisp/org/ChangeLog.1
+++ b/lisp/org/ChangeLog.1
@@ -25932,7 +25932,7 @@
 
 	* org-latex.el (org-export-as-latex): Do nit require the buffer to
 	be visiting a file when only exporting to a buffer or string.
-	(org-export-latex-fix-inputenc): Only save the buffer is there is
+	(org-export-latex-fix-inputenc): Only save the buffer if there is
 	a file name attached to it.
 
 2010-04-10  Dan Davison  <davison@stats.ox.ac.uk>
diff --git a/src/data.c b/src/data.c
index 930d476bc3f..6ce4813c920 100644
--- a/src/data.c
+++ b/src/data.c
@@ -877,7 +877,7 @@ add_to_function_history (Lisp_Object symbol, Lisp_Object olddef)
   Lisp_Object past = Fget (symbol, Qfunction_history);
   Lisp_Object file = Qnil;
   /* FIXME: Sadly, `Vload_file_name` gives less precise information
-     (it's sometimes non-nil when it shoujld be nil).  */
+     (it's sometimes non-nil when it should be nil).  */
   Lisp_Object tail = Vcurrent_load_list;
   FOR_EACH_TAIL_SAFE (tail)
     if (NILP (XCDR (tail)) && STRINGP (XCAR (tail)))