summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-05-15 11:15:06 +0200
committerStefan Kangas <stefan@marxist.se>2022-05-15 11:15:06 +0200
commit09674074b57bee74ff1039f8ef08c2dea321c0da (patch)
treec8b866aca602a22a867a77eaab6eab1c8146db1c /lisp
parentaaa2d0db18509b7d2f1e35cbc9dc2b4443f1cce4 (diff)
downloademacs-09674074b57bee74ff1039f8ef08c2dea321c0da.tar.gz
emacs-09674074b57bee74ff1039f8ef08c2dea321c0da.tar.bz2
emacs-09674074b57bee74ff1039f8ef08c2dea321c0da.zip
; Fix typos
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/shortdoc.el2
-rw-r--r--lisp/eshell/esh-opt.el2
-rw-r--r--lisp/image/image-converter.el2
-rw-r--r--lisp/international/mule.el2
-rw-r--r--lisp/net/eww.el2
-rw-r--r--lisp/progmodes/cc-engine.el2
-rw-r--r--lisp/progmodes/erts-mode.el6
-rw-r--r--lisp/progmodes/sql.el2
-rw-r--r--lisp/replace.el2
-rw-r--r--lisp/x-dnd.el2
-rw-r--r--lisp/xwidget.el2
11 files changed, 13 insertions, 13 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index 340fe766c1e..4c8ca967f12 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -83,7 +83,7 @@ together:
If EVAL is a string, it will be inserted as is, and then that
string will be `read' and evaluated.
-2. Document a form or string, but manually document its evalation
+2. Document a form or string, but manually document its evaluation
result. The provided form will not be evaluated.
(FUNC
diff --git a/lisp/eshell/esh-opt.el b/lisp/eshell/esh-opt.el
index 0961e214f4f..f52b70fe7a6 100644
--- a/lisp/eshell/esh-opt.el
+++ b/lisp/eshell/esh-opt.el
@@ -205,7 +205,7 @@ a long option."
VALUE is the potential value of the OPT, coming from args like
\"-fVALUE\" or \"--foo=VALUE\", or nil if no value was supplied. If
OPT doesn't consume a value, return VALUE unchanged so that it can be
-processed later; otherwsie, return nil.
+processed later; otherwise, return nil.
If the OPT consumes an argument for its value and VALUE is nil, the
argument list will be modified."
diff --git a/lisp/image/image-converter.el b/lisp/image/image-converter.el
index 7914d28c293..9440c623f90 100644
--- a/lisp/image/image-converter.el
+++ b/lisp/image/image-converter.el
@@ -49,7 +49,7 @@ formats that are to be supported: Only the suffixes that map to
(defcustom image-convert-to-format "png"
"The image format to convert to.
This should be a string like \"png\" or \"ppm\" or some
-other (preferrably lossless) format that Emacs understands
+other (preferably lossless) format that Emacs understands
natively. The converter chosen has to support the format, and if
not, conversion will fail."
:group 'image
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 1596cdb4817..ab74c2cffd9 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -310,7 +310,7 @@ Print messages at start and end of loading unless optional fourth
arg NOMESSAGE is non-nil.
If EVAL-FUNCTION, call that instead of calling `eval-buffer'
-directly. It is called with two paramameters: The buffer object
+directly. It is called with two parameters: The buffer object
and the file name.
Return t if file exists."
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 57cb566c95d..21f6e33b0d2 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -1855,7 +1855,7 @@ The browser to used is specified by the
(replace-regexp-in-string ".utm_.*" "" url))
(defun eww--transform-url (url)
- "Appy `eww-url-transformers'."
+ "Apply `eww-url-transformers'."
(when url
(dolist (func eww-url-transformers)
(setq url (funcall func url)))
diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el
index ae68bf989a7..2a9a7a8bf5e 100644
--- a/lisp/progmodes/cc-engine.el
+++ b/lisp/progmodes/cc-engine.el
@@ -6848,7 +6848,7 @@ comment at the start of cc-engine.el for more info."
;; checking `c-new-id-start' and `c-new-id-end'. That's done to avoid
;; adding all prefixes of a type as it's being entered and font locked.
;; This is a bit rough and ready, but now covers adding characters into the
- ;; middle of an identifer.
+ ;; middle of an identifier.
;;
;; This function might do hidden buffer changes.
(if (and c-new-id-start c-new-id-end
diff --git a/lisp/progmodes/erts-mode.el b/lisp/progmodes/erts-mode.el
index 31a8bded8ad..1b88540ff38 100644
--- a/lisp/progmodes/erts-mode.el
+++ b/lisp/progmodes/erts-mode.el
@@ -51,17 +51,17 @@
:foreground "blue")
(t
:bold t))
- "Face used for displaying specificaton values."
+ "Face used for displaying specification values."
:group 'erts-mode)
(defface erts-mode-start-test
'((t :inherit font-lock-keyword-face))
- "Face used for displaying specificaton test start markers."
+ "Face used for displaying specification test start markers."
:group 'erts-mode)
(defface erts-mode-end-test
'((t :inherit font-lock-comment-face))
- "Face used for displaying specificaton test start markers."
+ "Face used for displaying specification test start markers."
:group 'erts-mode)
(defvar erts-mode-map
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index 979b743a65d..7bb4fef0c09 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -4179,7 +4179,7 @@ must tell Emacs. Here's how to do that in your init file:
;; start a comment.
(string-to-syntax ".")
;; Inside a comment, ignore it to avoid -*/ not
- ;; being intepreted as a comment end.
+ ;; being interpreted as a comment end.
(forward-char -1)
nil)))))
;; Set syntax and font-face highlighting
diff --git a/lisp/replace.el b/lisp/replace.el
index 81282deb140..3d0877a9a64 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -2684,7 +2684,7 @@ It is called with three arguments, as if it were
"Function to convert the FROM string of query-replace commands to a regexp.
This is used by `query-replace', `query-replace-regexp', etc. as
the value of `isearch-regexp-function' when they search for the
-occurences of the string/regexp to be replaced. This is intended
+occurrences of the string/regexp to be replaced. This is intended
to be used when the string to be replaced, as typed by the user,
is not to be interpreted literally, but instead should be converted
to a regexp that is actually used for the search.")
diff --git a/lisp/x-dnd.el b/lisp/x-dnd.el
index 13a73aa7fb3..f3abb9d5e6d 100644
--- a/lisp/x-dnd.el
+++ b/lisp/x-dnd.el
@@ -784,7 +784,7 @@ FORMAT is 32 (not used). MESSAGE is the data part of an XClientMessageEvent."
;;; Handling drops.
(defun x-dnd-handle-unsupported-drop (targets _x _y action _window-id _frame _time)
- "Return non-nil if the drop described by TARGETS and ACTION should not proceeed."
+ "Return non-nil if the drop described by TARGETS and ACTION should not proceed."
(not (and (or (eq action 'XdndActionCopy)
(eq action 'XdndActionMove))
(or (member "STRING" targets)
diff --git a/lisp/xwidget.el b/lisp/xwidget.el
index 62da16d486a..88bc8ff6c5e 100644
--- a/lisp/xwidget.el
+++ b/lisp/xwidget.el
@@ -451,7 +451,7 @@ XWIDGET instance, XWIDGET-EVENT-TYPE depends on the originating xwidget."
xwidget-webkit--progress-update-timer
(run-at-time 0.5 0.5 #'xwidget-webkit--update-progress-timer-function
xwidget)))))
- ;; This funciton will be called multi times, so only
+ ;; This function will be called multi times, so only
;; change buffer name when the load actually completes
;; this can limit buffer-name flicker in mode-line.
(when (or (string-equal (nth 3 last-input-event)